/* ============================
   Global Styles
   ============================ */
@font-face {
  font-family: 'PolySans Trial';
  src: url('fonts/PolySans-Trial-Regular.woff2') format('woff2'),
    url('fonts/PolySans-Trial-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}




:root {
  --ag-blue: #0E58D1;
  --ag-blue-soft: #0E58D1;
  --ag-blue-dark: #0E58D1;
  --ag-bg-dark: #050816;
  --ag-text-main: #0b1020;
  --ag-text-muted: #7b8499;
  --ag-radius-lg: 20px;
  --ag-radius-md: 16px;
  --ag-transition-fast: 200ms ease-out;
  --ag-transition-med: 320ms ease;



  --dark-bg: #0E58D1;
  --light-orange: #fff;
  --text-white: #ffffff;
  --text-gray: #d1d1d1;
  --accent-yellow: #0E58D1f;
}

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

h2,
h3 {
  font-family: 'Aleo', serif;

}



/* .hero-section {
  overflow-x: hidden !important;
} */
body {
  font-family: "Poppins", "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--ag-text-main);
  background-color: #040714;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  font-family: 'Poppins', sans-serif;
}
body.privacy-policy main#primary {
    background: #fff;
}
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
}

.extra-small {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tracking-wide {
  letter-spacing: 0.16em;
}

/* ============================
   Header & Navbar
   ============================ */

.main-header {
  position: sticky;
  top: 0.75rem;
  z-index: 1030;
  padding-inline: 1rem;
  transition: .4s ease;
}

.main-navbar {
  border-radius: 999px;
  padding-block: 0.4rem;
  padding-inline: 1.25rem;
  backdrop-filter: blur(18px);
  background-color: rgba(255, 255, 255, 0.94) !important;
  transition: transform var(--ag-transition-med), box-shadow var(--ag-transition-med),
    border-radius var(--ag-transition-med), background-color var(--ag-transition-med);
  padding: 11px 0px;
  margin: 30px 110px 0px 110px;
}

.main-header.header-scrolled .main-navbar {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  transform: translateY(-4px);
  border-radius: 18px;
  background-color: rgba(255, 255, 255, 0.98) !important;
}

.brand-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--ag-blue), #00b4ff);
  color: #fff;
  font-size: 1.1rem;
}

.brand-text span:first-child {
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.main-nav-links .nav-link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  padding-inline: 0.4rem;
  transition: color var(--ag-transition-fast), transform var(--ag-transition-fast);
  font-family: 'Aleo', serif;
}

.main-nav-links .nav-link::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: 18px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ag-blue), #00b4ff);
  transition: width var(--ag-transition-med);
}

.main-nav-links .nav-link:hover,
.main-nav-links .nav-link:focus {
  color: var(--ag-blue);
  transform: translateY(-1px);
}

.main-nav-links .nav-link.active {
  color: var(--ag-blue);
  font-family: 'Aleo', serif;

}

.main-nav-links .nav-link.active::after {
  width: 100%;
}

.fw-semibold {
  font-weight: 600 !important;
  font-family: 'Aleo', serif;
}

.btn-cta,
.btn-cta-sm {
  background: linear-gradient(135deg, var(--ag-blue), #00b4ff);
  border: none;
  color: #fff;
  box-shadow: none !important;
  transform: translateY(0);
  transition: transform var(--ag-transition-fast), box-shadow var(--ag-transition-fast),
    filter var(--ag-transition-fast);
  background: #0e58d1;
  padding: 11px 25px !important;
  font-size: 14px;
}

.btn-cta:hover,
.btn-cta:focus,
.btn-cta-sm:hover,
.btn-cta-sm:focus {
  filter: brightness(1.05);
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 18px 40px rgba(37, 99, 255, 0.6);
  background-color: #000;
  transition: all 0.8s ease;
}

.btn-cta-icon {
  width: 26px;
  height: 26px;
  background-color: #fff;
  font-size: 0.85rem;
  margin-left: 9px;
}

.btn-cta-icon i {
  color: #000;
}

/* Hamburger */

.navbar-toggler {
  outline: none !important;
  box-shadow: none !important;
}

.hamburger {
  position: relative;
  width: 22px;
  height: 18px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 999px;
  background-color: #111827;
  transition: transform var(--ag-transition-med), opacity var(--ag-transition-med),
    top var(--ag-transition-med), bottom var(--ag-transition-med);
  position: relative;
}

.mobile-menu-open .hamburger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-open .hamburger span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-open .hamburger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============================
   Mobile full screen menu
   ============================ */

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(3, 7, 18, 0.86);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--ag-transition-med), visibility var(--ag-transition-med),
    transform var(--ag-transition-med);
  z-index: 1029;
}

.mobile-menu-inner {
  text-align: center;
}

.mobile-menu .nav-link {
  font-size: 1.1rem;
  color: #e5e7eb;
  font-weight: 500;
}

.mobile-menu .nav-link:hover {
  color: #ffffff;
}

.mobile-menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ============================
   Hero Section
   ============================ */

.hero-section {
  position: relative;
  min-height: 100vh;
  color: #f9fafb;
}

.hero-video-wrapper {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1);
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgb(59 66 83 / 2%), transparent 50%), linear-gradient(to bottom right, rgb(3 7 18 / 59%), rgb(25 25 25 / 50%));
  z-index: 1;
  opacity: 0.92;
  transition: opacity 800ms ease-out;
}

body.page-loaded .hero-overlay {
  opacity: 0.9;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  padding-top: 7.5rem;
  padding-bottom: 4rem;
}

.main-navbar {
  margin: 19px 115px 0px 115px;
  transition: all 0.9s ease;
}

.main-navbar.sticky {
  /* margin: 0; */
  background-color: #fff !important;
}


.main-header .sticky {
  position: sticky !important;
  top: 0px;
  z-index: 1030;
  /* padding-inline: 1rem; */
  background: #e1e1e1 !important;
  padding-bottom: 15px !important;
  color: #000 !important;
}

/* .main-header {
    position: sticky;
    top: 0px;
    z-index: 1030;
    padding-inline: 1rem;
    background: #fff;
} */

.main-header.is-sticky {
  background: #fff !important;
  padding-bottom: 15px;
  color: #000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);

  top: 0.0rem !important;
}

.hero-copy {
  color: #e5e7eb;
  animation: hero-fade-up 750ms ease-out both;
  animation-delay: 120ms;
  opacity: 0;
  transform: translateY(8px);
}

body.page-loaded .hero-copy {
  opacity: 1;
  transform: translateY(0);
}

.hero-eyebrow {
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: capitalize !important;
  color: #ffffff;
  font-family: 'Aleo', serif;

}

.hero-heading {
  font-weight: 800;
  line-height: 1.05;
  font-size: clamp(2.3rem, 4vw + 1rem, 3.8rem);
}

.hero-heading .text-highlight {
  color: #e5edff;
}

.hero-heading .text-highlight::selection,
.hero-heading .text-contrast::selection {
  background-color: rgba(37, 99, 255, 0.4);
}

.hero-heading .text-highlight {
  color: #e5edff;
}

.hero-heading .text-highlight span {
  color: var(--ag-blue);
}

.hero-heading .text-highlight {
  line-height: 33px;
  color: var(--ag-blue);
  font-size: 74px;
  font-weight: 700;
  /* font-family: 'PolySans Trial', 'PolySans', sans-serif; */
  color: #3280FF;
  line-height: 78px;
}

.hero-heading .text-contrast {
  color: #f9fafb;
  font-size: 74px;
  font-weight: 400;
  /* margin-top: 31px; */
  line-height: 78px;
  font-family: 'PolySans Trial', 'PolySans', sans-serif;
}

.hero-subtitle {
  font-size: 19px;
  color: #ffffff;
  max-width: 34rem;
  margin-inline: auto;
  font-family: 'Poppins', sans-serif;
  line-height: 31px;
  font-weight: 500;
  margin-top: 39px;
}

.hero-cta-group .hero-btn {
  font-size: 17px;
  letter-spacing: 0.02em;
  padding: 12px 21px !important;
  font-family: 'Aleo', serif;
  font-weight: 700;
}

.hero-cta-group .hero-btn:hover {

  background-color: #fff !important;
  color: #000000 !important;
}

.hero-btn:hover .hero-btn-icon img {
  filter: invert(1);

}

.hero-btn-icon img:hover {
  filter: invert(1);
}

.hero-btn-primary {
  background: linear-gradient(135deg, var(--ag-blue), #00b4ff);
  border: none;
  /* box-shadow: 0 18px 40px rgba(15, 118, 255, 0.7); */
  transform: translateY(0);
  transition: transform 180ms ease-out, box-shadow 180ms ease-out,
    filter 180ms ease-out;
  background: #0E58D1 !important;
}

.hero-btn-primary:hover {
  background-color: #fff;
  transition: all 0.8s ease;

}

.hero-btn-primary .hero-btn-icon {
  width: 30px;
  height: 30px;
  background-color: transparent;
  font-size: 0.95rem;
}

/* .hero-btn-primary:hover,
.hero-btn-primary:focus-visible {
  filter: brightness(1.07);
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 24px 55px rgba(15, 118, 255, 0.9);
} */

.hero-btn-secondary {
  background-color: #fff;
  border-width: 1.5px;
  border-color: rgba(129, 140, 248, 0.9);
  color: #000;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: transform 180ms ease-out, box-shadow 180ms ease-out,
    background-color 180ms ease-out, color 180ms ease-out, border-color 180ms ease-out;
}

.hero-btn-secondary:hover,
.hero-btn-secondary:focus-visible {
  background-color: #004adf !important;
  color: var(--ag-blue);
  border-color: transparent;
  transform: translateY(-1px);
  /* box-shadow: 0 18px 40px rgba(15, 23, 42, 0.55); */

}

.hero-btn-sec {
  background-color: #004adf !important;
  color: #fff;
}

/* Trusted by strip */

.hero-trusted-row {
  margin-top: 4.5rem;
  padding: 1.4rem 1.6rem;
  border-radius: var(--ag-radius-lg);
  background: rgba(15, 23, 42, 0.82);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.3);
  backdrop-filter: blur(26px);
}

.trusted-title {
  font-size: 0.9rem;
  color: #d1d5db;
}

.trusted-title span {
  color: #ffffff;
}

.trusted-logos {
  column-gap: 2.5rem;
}

.trusted-logo {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #e5e7eb;
  opacity: 0.8;
  position: relative;
  padding-inline: 0.4rem;
}

.trusted-logo::before {
  content: "";
  position: absolute;
  left: -0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  opacity: 0.7;
}

/* ============================
   Offer Section ("What We Offer")
   ============================ */

.offer-section {
  position: relative;
  z-index: 2;
  padding: 5rem 0 4.5rem;
  background-color: #f8fafc;
  color: #0f172a;
  margin-top: 155px;
}

.offer-section .container-xxl {
  max-width: 1180px;
}

.offer-heading-wrap {
  max-width: 32rem;
}

.offer-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: #9ca3af;
}

.offer-title {
  text-align: start;
  /* font-size: clamp(2.2rem, 3vw + 1rem, 3.1rem); */
  font-weight: 900;
  line-height: 50px;
  font-size: 40px;
  font-family: 'Aleo', serif;
}

.offer-title .text-accent {
  color: var(--ag-blue);
  font-size: 40px;
  font-weight: 900;
  line-height: 50px;
}

.kpi-pills .btn {
  border: 2px solid #565656;
}

.offer-copy {
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 175%;
  text-align: start;
  font-family: 'Poppins', sans-serif;
  margin-top: 29px;
}

.offer-grid {
  margin-top: 3.5rem;
}

.offer-card-row {
  margin-top: 0;
}

.offer-card {
  /* background-color: #ffffff00; */
  border-radius: 15px;
  border: 2px solid #004adf;
  box-shadow: 0 18px 50px rgb(15 23 42 / 7%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 220ms ease-out, box-shadow 220ms ease-out;
}

.offer-card-accent {
  border-color: transparent;
  /* box-shadow: 0 24px 60px rgba(37, 99, 255, 0.35); */
}



.offer-card-image {
  width: 100%;
  height: auto;
  display: block;
}

.offer-card-body {
  padding: 2.4rem 2.4rem 2.6rem;
}

.offer-card-title {
  font-size: 35px;
  font-weight: 700;
  color: #0f172a;
  line-height: 38px;
  font-family: 'Aleo', serif;
}

.offer-card-accent .offer-card-title {
  color: #ffffff;
}

.offer-card-accent .offer-card-body {
  background: #0E58D1;
  color: #e5edff;
}

.offer-card-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
}

.offer-card-accent .offer-card-text {
  color: #e5edff;
  font-size: 14px;
  font-weight: 400;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0);
}

/* ============================
   KPI / Revenue Section
   ============================ */

.kpi-section {
  padding: 60px 0px 23px 0px;
  background-color: #ffffff;
  color: #0f172a;
}

.kpi-section .container-xxl {
  max-width: 1180px;
}

.kpi-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: #9ca3af;
}

.kpi-title {
  font-size: clamp(2.2rem, 2.8vw + 1rem, 3.1rem);
  font-weight: 800;
  line-height: 1.1;
}

.kpi-title .highlight {
  color: var(--ag-blue);
}

.kpi-copy {
  font-size: 0.95rem;
  color: #4b5563;
}

.kpi-pills {
  margin-top: 2rem;
}

.kpi-pill {
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background-color: #ffffff;
  color: #565656;
  padding-inline: 1.4rem;
  padding-block: 0.55rem;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: background-color 160ms ease-out, color 160ms ease-out,
    transform 160ms ease-out, box-shadow 160ms ease-out;
}

.kpi-pill:hover {
  background-color: #f9fafb;
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.kpi-pill-active {
  background-color: #0E58D1;
  color: #ffffff;
  border-color: #0E58D1;
  border: none !important;
}

.kpi-card {
  margin-top: 2.6rem;
  border-radius: 15px;
  overflow: hidden;
  background-color: #020617;
  color: #f9fafb;
  /* box-shadow: 0 30px 70px rgba(15, 23, 42, 0.55); */
  transition: opacity 220ms ease-out, transform 220ms ease-out;
}

.kpi-card.is-transitioning {
  opacity: 0;
  transform: translateY(10px);
}

.kpi-card-body {
  padding: 2.8rem 2.8rem 2.6rem;
}

.kpi-card-title {
  font-size: 35px;
  font-weight: 700;
  line-height: 40px;
  font-family: 'Aleo', serif;
}

.kpi-card-text {
  font-size: 0.98rem;
  color: #e5e7eb;
  max-width: 24rem;
}

.kpi-card-link {
  font-weight: 700;
  color: #3280FF;

  font-size: 22px;
  line-height: 38px;
  font-family: 'Aleo', serif;
}


.kpi-card-media {
  position: relative;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.kpi-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;

  margin-right: 300px;
}

.kpi-side-actions {
  position: absolute;
  right: -7px;
  top: 69%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.kpi-side-btn {
  background-color: #2563ff;
  color: #ffffff;
  border: none;
  border-radius: 16px;
  padding: 0.8rem 1.2rem;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.65);
  max-width: 225px;
}

.kpi-side-btn:hover {
  background-color: #0E58D1;
}

@media (max-width: 991.98px) {
  .kpi-card-body {
    padding: 2.4rem 2.4rem 2.2rem;
  }

  .kpi-side-actions {
    position: static;
    transform: none;
    margin-top: 1.4rem;
    align-items: stretch;
  }
}

@media (max-width: 767.98px) {
  .kpi-section {
    padding: 3.2rem 0 3.6rem;
  }

  .kpi-card {
    border-radius: 22px;
  }

  .kpi-card-body {
    padding: 2.1rem 1.7rem 2rem;
  }
}

/* ============================
   Technologies Section
   ============================ */

.tech-section {
  padding: 4.5rem 0 4rem;
  background-color: #ffffff;
  color: #0f172a;
}

.tech-section .container-xxl {
  max-width: 1180px;
}

.tech-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: #9ca3af;
}

.tech-title {
  font-weight: 900;
  line-height: 50px;
  font-size: 40px;
  font-family: 'Aleo', serif;
}

.tech-title .highlight {
  color: var(--ag-blue);
}

.tech-subtitle {
  color: #000000;
  font-size: 14px;
  font-weight: 400;
}

.tech-grid {
  margin-top: 1.5rem;
}

.tech-card {
  text-align: center;
}

.tech-logo-wrap {
  background-color: #f9fafb;
  border-radius: 32px;
  /* box-shadow: 0 22px 55px rgba(15, 23, 42, 0.12); */
  padding: 1.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  /* transition: transform 200ms ease-out, box-shadow 200ms ease-out; */
}

.tech-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.tech-name {
  font-weight: 600;
  font-size: 0.98rem;
  color: #111827;
}

.tech-card:hover .tech-logo-wrap {
  /* transform: translateY(-4px); */
  box-shadow: none;
}

/* ============================
   News / Blog Section
   ============================ */

.news-section {
  padding: 4.5rem 0 4.5rem;
  background-color: #ffffff;
  color: #0f172a;
}

.news-section .container-xxl {
  max-width: 1180px;
}

.news-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: #9ca3af;
}

.news-title {
  font-size: clamp(2.2rem, 2.6vw + 1rem, 3rem);
  font-weight: 600;
  line-height: 1.1;
  font-size: 42px;
}

.news-subtitle {
  font-size: 0.95rem;
  color: #4b5563;
}

.news-viewall-btn {
  background-color: #0E58D1;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;

}

.news-viewall-icon {
  width: 24px;
  height: 24px;
  background-color: rgba(15, 23, 42, 0.15);
  font-size: 0.85rem;
}

.news-viewall-btn:hover,
.news-viewall-btn:focus-visible {
  background-color: #1e40af;
}

.news-feature-image-wrap {
  border-radius: 15px;
  overflow: hidden;

}

.news-feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-feature-article {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 2.2rem 2.4rem;
  /* box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1); */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news-meta {
  letter-spacing: 0;
  color: #000000;
  font-size: 12px;
}

.news-feature-title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  font-size: 32px;
  color: #000;
}

.news-feature-text {
  font-size: 0.92rem;
  color: #000000;
  font-size: 13px;
}

.news-author-group {
  margin-top: auto;
}

.news-author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid #ffffff;
}

.news-author-avatar-offset {
  margin-left: -10px;
}

.news-grid-row {
  margin-top: 0.75rem;
}

.news-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 200ms ease-out, box-shadow 200ms ease-out;
}

/* .news-card-image-wrap {
  overflow: hidden;
} */

.news-card-image {
  width: 100%;
}

.news-card-body {
  padding: 1.6rem 1.7rem 1.7rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card-title {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.3;
  margin-top: 7px;
  color: #000;
  line-height: 27px;
}


.offer-kicker2::before {
  content: "";
  position: absolute;
  left: 311px !important;
  top: 106%;
  transform: translateY(-50%);
  width: 26px;
  height: 42px;
  background: url(/img/arrow.png) no-repeat center;
  background-size: contain;
}

.news-card-text {
  font-size: 0.9rem;
  color: #4b5563;
  flex-grow: 1;
}

.news-card-footer img.news-author-avatar {
  width: 26px;
  height: 26px;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
}

@media (max-width: 991.98px) {
  .news-feature-article {
    padding: 1.8rem 1.9rem;
    margin-top: 0.75rem;
  }
}

@media (max-width: 767.98px) {
  .news-section {
    padding: 3.2rem 0 3.6rem;
  }

  .news-card-image {
    height: 190px;
  }
}

/* ============================
   FAQ Section
   ============================ */

.faq-section {
  padding: 4.5rem 0 4.5rem;
  background-color: #fff;
  color: #0f172a;
}

.faq-section .container-xxl {
  max-width: 1180px;
}

.faq-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: #9ca3af;
}

.faq-title {
  font-size: clamp(2.1rem, 2.6vw + 1rem, 3rem);
  font-weight: 800;
  line-height: 1.1;
}

.faq-tabs {
  max-width: 100%;
}

.faq-tab {
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  /* background-color: #ffffff; */
  color: #6d6e6f;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.55rem 1.3rem;
  /* box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08); */
  transition: background-color 160ms ease-out, color 160ms ease-out, box-shadow 160ms ease-out, transform 160ms ease-out;
  border: 1px solid #0000008f !important;
  font-family: 'Aleo', serif;
}

.faq-tab:hover {
  background-color: #f9fafb;
  transform: translateY(-1px);
}

.faq-tab-active {
  background-color: #0E58D1;
  color: #ffffff;
  border-color: #0E58D1;
}

.faq-list {
  margin-top: 1.5rem;
}

.faq-item {
  border-radius: 10px;
  border: 1px solid #0e58d1;
  background-color: #ffffff;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow 180ms ease-out, transform 180ms ease-out, border-color 180ms ease-out;
}

.faq-item-open {
  border-color: #2563ff;
  /* box-shadow: 0 20px 50px rgba(37, 99, 255, 0.28); */
  transform: translateY(-1px);
  background: #E4EEFF;
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.4rem;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  color: #111827;
}


.faq-item-open .faq-toggle-icon {
  color: #fff !important;
  background-color: #2563ff !important;
}

.faq-item .faq-toggle-icon {
  color: #979797;
  background-color: #EAEAEA;
}

.faq-toggle-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background-color: #2563ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  color: #ffffff;
  font-weight: bold !important;
  font-size: 12px;
  text-shadow: 0.3px 0 currentColor, -0.3px 0 currentColor;
  line-height: 5px;
  margin-top: 13px;
}

.faq-answer {
  padding: 0 1.4rem 0.9rem;
  font-size: 14px;
  color: #000;
  line-height: 1.6;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 220ms ease-out, opacity 220ms ease-out;
}

.faq-item-open .faq-answer {
  max-height: 200px;
  opacity: 1;
}

@media (max-width: 767.98px) {
  .faq-section {
    padding: 90px 0 3.6rem;
  }

  .faq-question {
    padding-inline: 1.1rem;
  }

  .faq-answer {
    padding-inline: 1.1rem;
  }
}

.service-card {
  border-radius: 32px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.16);
  position: relative;
}

.service-card-primary {
  background: #0e58d1;
  color: #eff6ff;
}

.service-card-outline {
  border-radius: 15px;
  border: 2px solid #e5e7eb;
  background-color: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.service-card-compact {
  border-radius: 15px;
  padding: 20px 0px;
}

.service-card-body {
  padding: 2.6rem 2.8rem;
  padding: 30px 30px 30px 30px;
}

.service-title {
  font-size: 35px;
  font-weight: 700;
  line-height: 38px;
  font-family: 'Aleo', serif;
}

.service-card-primary .service-title {
  color: #ffffff;
}

.service-card-outline .service-title {
  color: #0f172a;
}

.service-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(15, 23, 42, 0.92);
}

.service-card-primary .service-text {
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.service-media-wrap {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: end;
  padding: 0px 0px;

}

.service-media-center {
  align-items: center;
  padding-block: 1.8rem;
}

.service-media-right {
  justify-content: flex-end;
  /* padding-inline-end: 2.6rem; */
}

.service-image {
  max-width: 100%;
  height: auto;
  border-radius: 22px;
  /* box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3); */
  object-fit: cover;
  margin-bottom: -29px !important;
}



.service-card:hover {
  transform: translateY(-2px);
  /* box-shadow: 0 26px 60px rgba(15, 23, 42, 0.18); */
}

.service-card {
  transition: transform 220ms ease-out, box-shadow 220ms ease-out;
}

/* ============================
   Placeholder Sections
   ============================ */

.section-placeholder {
  position: relative;
  z-index: 2;
}

.section-placeholder .container-xxl {
  max-width: 1140px;
}

.section-placeholder {
  background: rgba(15, 23, 42, 0.98);
  color: #cbd5f5;
}

.section-placeholder.bg-light {
  background: rgba(15, 23, 42, 0.98);
}

.section-placeholder:nth-of-type(odd) {
  background: rgba(12, 18, 36, 0.96);
}

/* ============================
   Lead / Contact Section
   ============================ */

.lead-section {
  position: relative;
  z-index: 2;
  padding: 5rem 0 5.5rem;
  color: #f9fafb;
  background-color: #020617;
  background-image: linear-gradient(to right,
      rgba(0, 0, 0, 0.98) 0%,
      rgba(0, 0, 0, 0.98) 52%,
      rgba(0, 0, 0, 0.75) 70%,
      rgba(0, 0, 0, 0.4) 85%,
      rgba(0, 0, 0, 0.1) 100%),
    url("https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: right center;
}

.lead-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top left, rgba(37, 99, 255, 0.28), transparent 55%);
}

.lead-inner {
  position: relative;
  z-index: 2;
}

.lead-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: #9ca3af;
}

.lead-title {
  font-size: clamp(2.1rem, 3vw + 1rem, 3.1rem);
  font-weight: 800;
  line-height: 1.1;
}

.lead-title .highlight {
  color: var(--ag-blue);
}

.lead-text {
  font-size: 0.98rem;
  max-width: 32rem;
  color: #e5e7eb;
}

.lead-form {
  max-width: 40rem;
}

.lead-input {
  border-radius: 999px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  padding-inline: 1.1rem;
  padding-block: 0.7rem;
  font-size: 0.92rem;
  background-color: #ffffff;
  color: #111827;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.35);
}

.lead-input:focus {
  outline: none;
  border-color: var(--ag-blue);
  box-shadow: 0 0 0 1px rgba(37, 99, 255, 0.65), 0 20px 45px rgba(15, 23, 42, 0.55);
}

.lead-input-textarea {
  border-radius: 22px;
  resize: vertical;
}

.lead-checkbox {
  background-color: transparent;
  border-radius: 4px;
  border-color: rgba(148, 163, 184, 0.8);
}

.lead-checkbox:checked {
  background-color: var(--ag-blue);
  border-color: var(--ag-blue);
}

.lead-consent span {
  color: #9ca3af;
}

.btn-lead {
  background: linear-gradient(135deg, var(--ag-blue), #00b4ff);
  border: none;
  box-shadow: 0 24px 60px rgba(15, 118, 255, 0.8);
}

.btn-lead-icon {
  width: 30px;
  height: 30px;
  background-color: rgba(15, 23, 42, 0.2);
  font-size: 0.95rem;
}

.btn-lead:hover,
.btn-lead:focus-visible {
  filter: brightness(1.05);
  box-shadow: 0 28px 70px rgba(15, 118, 255, 0.95);
}

/* ============================
   Conversation CTA Section
   ============================ */

.conversation-section {
  padding: 2rem 0 4.5rem;
  background-color: #ffffff;
}

.conversation-section .container-xxl {
  max-width: 1180px;
}

.conversation-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background-image: url("https://images.unsplash.com/photo-1525134479668-1bee5c7c6845?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.45);
}

.conversation-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(37, 99, 255, 0.28), transparent 55%),
    linear-gradient(to right, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.85));
}

.conversation-content {
  position: relative;
  z-index: 1;
  padding: 3rem 1.5rem;
  max-width: 852px;
  margin-inline: auto;
  color: #f9fafb;
}

.conversation-title {
  font-size: clamp(2.1rem, 2.8vw + 1rem, 3rem);
  font-weight: 900;
  line-height: 1.1;
  font-size: 51px;
}

.conversation-title .highlight {
  color: var(--ag-blue);
}

.conversation-text {
  margin-top: 19px;
  font-size: 18px;
  color: #ffffff;
  font-weight: 400;
}

.conversation-btn {
  background: #ffffff;
  border: none;
  color: #004adf;
  padding: 12px 20px !important;
  /* box-shadow: 0 20px 45px rgba(15, 23, 42, 0.6); */
  font-family: 'Aleo', serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
}

.conversation-btn2 {
  background: #000;
  border: none;
  color: #fff;
}

.conversation-btn2:hover {
  background: #004adf !important;
  border: none;
  color: #fff;

  transition: all 0.8s ease;

}

.grt-a-costom {
  background-color: #fff;
  color: #000;
  border: 2px solid #0e58d1;
}

.grt-a-costom.btn-outline-primary:hover {
  background: #0E58D1 !important;
  color: #fff !important;
  transition: all 0.8s ease !important;



}

.conversation-btn:hover,
.conversation-btn:focus-visible {
  color: #fff;
  /* box-shadow: 0 26px 60px rgba(15, 23, 42, 0.85); */
  background-color: #000;

  transition: all 0.8s ease;

}

.conversation-btn-icon {
  width: 30px;
  height: 30px;
  background-color: var(--ag-blue);
  color: #ffffff;
  font-size: 0.95rem;
  margin-left: 9px;
}

@media (max-width: 767.98px) {
  .conversation-section {
    padding: 0px;
  }

  .conversation-content {
    padding-inline: 1.25rem;
  }
}

/* ============================
   Footer
   ============================ */

/* Old footer styles replaced by site-footer block */

.site-footer {
  margin-top: auto;
  position: relative;
  z-index: 2;
  background-color: #000;
  color: #e5e7eb;
  padding: 3.5rem 0 2rem;
  border-top: 1px solid rgba(15, 23, 42, 0.9);
}

.site-footer .container-xxl {
  max-width: 1180px;
}

.footer-inner {
  /* border-top: 1px solid rgba(148, 163, 184, 0.25); */
  /* border-bottom: 1px solid rgba(148, 163, 184, 0.18); */
  padding-top: 2.5rem;
  padding-bottom: 0.8rem;
}

.footer-intro {
  font-size: 16px;
  color: #ffffff;
  font-family: 'Aleo', serif;
  font-weight: 400;
}

.footer-cta-link {
  color: #0e58d1;
  font-weight: 400;
  font-size: 16px;
}

.footer-cta-link:hover {
  color: #bfdbfe;
}

.footer-heading {
  font-size: 16px;
  text-transform: capitalize;
  /* letter-spacing: 0.18em; */
  color: #ffffff;
  margin-bottom: 14px !important;
  font-family: 'Aleo', serif;
}
.footerlastBottom {}

.footerlastBottom {
    border-top: 1px solid #ffffffa6;
    padding-top: 26px;
}

.footerlastBottom .footer-bottom {
    padding: 0 !important;
    margin: 0 !important;
}

.footer-text {
  font-size: 12px;
  color: #ffffff;
  font-weight: 400;
}

.footer-text a {
  color: inherit;
}

.footer-text a:hover {
  color: #60a5fa;
}

.footer-links li+li {
  margin-top: 0.3rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: #e5e7eb;
}

.footer-links a:hover {
  color: #bfdbfe;
}

.footer-social-icons a {

  color: #e5e7eb;
  margin-right: 10px;
  font-size: 22px;
}

.footer-social-icons a:hover {
  color: #60a5fa;
}

.footer-bottom {
  color: #9ca3af;
}

.offer-kicker {
  position: relative;
  padding-left: 3px;
  font-size: 14px;
  letter-spacing: 0px;
  font-weight: 500;
  color: #111;
  text-align: start;
  font-family: 'Aleo', serif;
  line-height: 13px;
}

.offer-kicker::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 174%;
  transform: translateY(-50%);
  width: 26px;
  height: 42px;
  background: url(./img/arrow.png) no-repeat center;
  background-size: contain;
}

.seo-hero-section {
  /* background: #000; */
  padding: 80px 0;
  color: #fff;
  background: url(./img/bgqq.png) no-repeat right;
  background-repeat: no-repeat;
  background-size: cover;
}

.seo-hero-container {
  /* max-width: 1200px; */
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
  /* padding: 0 20px; */
}

.seo-hero-content {
  width: 55%;
}

.seo-form-tag {
  font-size: 14px;
  letter-spacing: 2px;
  color: #474343;
}

.seo-hero-title {
  font-size: 37px;
  font-weight: 900;
  margin: 20px 0;
  font-family: 'Aleo', serif;
}

.seo-hero-title span {
  color: #1e6eff;
}

.seo-hero-text {
  font-size: 14px;
  color: #ffffff;
  max-width: 500px;
  margin-bottom: 30px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
}

.seo-lead-form {
  width: 100%;
}

.seo-form-row p {
    display: flex;
    gap: 8px;
    margin-bottom: 9px;
    flex: 1;
}
.seo-form-row {
    display: flex;
    gap: 14px;
}
.wpcf7-form-control-wrap {
    width: 100%;
}
.seo-form-check .wpcf7-form-control-wrap{
  width: auto;
}
.seo-form-check p {
    display: flex;
    align-items: end;
    gap: 3px;
}
.button-row br{
  display: none;
}
.seo-input,
.seo-textarea {
  width: 100%;
  padding: 8px 14px;
  border-radius: 3px;
  border: none;
  font-size: 11px;
}

.seo-textarea {
  height: 120px;
  resize: none;
  margin-bottom: 15px;
}

.seo-form-check {
  font-size: 12px;
  color: #ffffff;
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.seo-submit-btn {
  background: #1e6eff;
  color: #fff;
  padding: 14px 35px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  transition: 0.3s;
  font-family: 'Aleo', serif;
  margin-top: 17px;
}

.seo-submit-btn:hover {
  background: #fff;
  color: #000000;
  transition: all 0.8s ease;
}

.seo-hero-image {
  width: 45%;
  text-align: right;
}

.seo-hero-image img {
  max-width: 100%;
  opacity: 0.85;
}

.conversation-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 70px rgb(15 23 42 / 0%);
}

/* Video Full Cover */
.conversation-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* Dark Overlay */
.conversation-overlay {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 59%);
  z-index: 2;
}

/* Content Above Video */
.conversation-content {
  position: relative;
  z-index: 3;
  color: #fff;
  text-align: center;
}


.services-section {
  padding: 60px 0px;
  max-width: 100%;
  margin: 0 auto;
  background: #fff;
}

.header-content {
  text-align: center;
  color: #000;
  margin-bottom: 50px;
}

.header-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

/* Card Styling */
.service-card {
  display: flex;
  align-items: center;
  border-radius: 15px;
  margin-bottom: 0;
  overflow: hidden;
  padding: 0px 0px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 110px;
}

.dark-bg {
  background-color: var(--dark-bg);
}

.light-bg {
  background-color: var(--light-orange);
  color: #000;
}

.service-card.reverse {
  flex-direction: row-reverse;
}

/* Image & Text Boxes */
.image-box,
.text-box {
  flex: 1;
  padding: 20px;
}

.image-box img {
  width: 100%;
  border-radius: 15px;
  display: block;
}

.text-box h2 {
  font-size: 35px;
  margin-bottom: 15px;
  font-weight: 700;
}

.text-box p {
  line-height: 1.6;
  margin-bottom: 25px;
  opacity: 0.9;
  font-size: 14px !important;
  font-weight: 400 !important;
}

/* Buttons */
.btn {
  padding: 6px 17px;
  border: none;
  border-radius: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s;


}

.primary-btn {
  background-color: var(--light-orange);
  color: #000;
}

.secondary-btn {
  background-color: #fff;
  color: #000;
  border: 1px solid #ddd;
}

/* .btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
} */

/* Responsive Design */




.mobile-menu {
  position: fixed;
  width: 340px;
  inset: 0;
  background: #161616;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  transform: translateY(30px);
  transition: transform 0.35s ease;
  background-color: #000;
}

.mobile-menu.active .mobile-menu-inner {
  transform: translateY(0);
}

body.menu-open {
  overflow: hidden;
}

.mobile-menu-close {
  position: absolute;
  top: -97px;
  right: -88px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  z-index: 2;
}

.mobile-menu-close:hover {
  opacity: 0.7;
}

/* Default desktop visible */
.offer-desktop {
  display: block;
}

.offer-mobile {
  display: none;
}

.digilat-heading {
  color: #fff;
}

.elevate-your-para {
  color: #fff;
}





.main-header {
  position: sticky;
  top: 0.75rem;
}

.main-header {
  position: fixed;
  width: 100%;
  transition: .4s ease;
}



.zero-bug-heading {
  color: #0f172aeb;
}


.more-lead-gen {
  color: #4b5563;
}










/* Mobile view */
@media (max-width: 991px) {
  .offer-desktop {
    display: none;
  }

  .offer-mobile {
    display: block;
  }
}



@media (max-width: 768px) {

  .service-card,
  .service-card.reverse {
    flex-direction: column;
    padding: 20px;
  }
}




@media (max-width: 768px) {
  .conversation-bg-video {
    display: block;
  }

  .conversation-card {
    background: url("fallback.jpg") center/cover no-repeat;
  }
}



@media (max-width: 767.98px) {
  .footer-inner {
    padding-top: 2rem;
    padding-bottom: 1.4rem;
  }
}

.navbar-logo img {
  max-width: 150px;
  margin-left: 20px;
  height: 50px;
}



@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
    margin-right: 45px;
  }
}

/* ============================
   Animations
   ============================ */

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

/* ============================
   Responsive
   ============================ */

@media (max-width: 991px) {
  html {
    overflow-x: hidden !important;
  }

  body {
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;
  }
}

@media (max-width: 991.98px) {
  .main-header {
    top: 0px;
    background: #ffff;
  }

  .main-navbar {
    border-radius: 18px;
  }

  .hero-content-wrapper {
    padding-top: 6rem;
  }

  .hero-trusted-row {
    margin-top: 3.2rem;
  }

  .trusted-logos {
    justify-content: flex-start;
  }
}

@media (max-width: 767.98px) {
  .main-header {
    padding-inline: 0.75rem;
  }

  .hero-heading {
    font-size: clamp(2.1rem, 2.4rem, 2.6rem);
  }

  .hero-subtitle {
    font-size: 13px !important;
    color: #ffffff;
    max-width: 34rem;
    margin-inline: auto;
    font-family: 'Poppins', sans-serif;
    line-height: 26px;
    font-weight: 500;
  }

  .hero-trusted-row {
    padding: 1.1rem 1.2rem;
  }

  .trusted-title {
    margin-bottom: 0.75rem;
  }

  .trusted-logo::before {
    display: none;
  }

  .navbar-logo img {
    max-width: 150px;
  }

  .services-section {
    padding: 60px 18px;
    max-width: 100%;
    margin: 0 auto;
    background: #fff;
  }
}

@media (max-width: 575.98px) {
  .main-header {
    top: 0px;
    background: #ffff;
  }

  .navbar-toggler {
    outline: none !important;
    box-shadow: none !important;
    margin-bottom: 11px;
  }

  .hero-cta-group {
    align-items: stretch !important;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
  }

  .navbar-logo img {
    max-width: 150px;
  }

  .footerLOgo img {
    max-width: 120px;
  }

  .main-navbar {
    margin: 0px !important;
    padding: 20px 0px !important;
    transition: all 0.5s ease;
  }

  .seo-hero-container {
    max-width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 0px;
    padding: 0 20px;
  }

  .seo-hero-content {
    width: 100%;
  }

  .hero-video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    filter: saturate(1.1);
    transform: scale(1.04);

  }

  .hero-heading .text-highlight {
    font-size: 42px;
    font-weight: 700;
    font-family: 'PolySans Trial', 'PolySans', sans-serif;
    line-height: 40px;
  }

  .hero-heading .text-contrast {
    font-size: 23px;
    font-weight: 600;
    line-height: 44px;
    font-family: 'PolySans Trial', 'PolySans', sans-serif;
  }

  .navbar-logo img {
    max-width: 120px;
  }

  .offer-section {
    padding: 62px 22px;
  }

  .offer-title .text-accent {

    font-size: 30px;

  }

  .offer-title {

    font-size: 30px;

  }

  .offer-copy {
    padding: 0px 33px;
    margin-top: -13px;
  }

  .service-card,
  .service-card.reverse {
    flex-direction: column;
    padding: 20px 0px;
  }

  .seo-hero-title {
    font-size: 26px;

  }

  .tech-section {

    padding: 56px 20px;
  }

  .tech-title {

    font-size: 30px;

  }

  .conversation-title {

    font-size: 37px;
  }

  .kpi-section {

    padding: 50px 20px;
  }

  .news-section {
    padding: 61px 20px 0px 20px;
    border-bottom: 1px solid #fff;
  }

  .news-title {

    line-height: 40px;
    font-size: 32px;
  }

  .news-feature-title {

    font-size: 22px;
    margin: 14px 0px;
  }

  .offer-kicker2::before {

    left: 17px !important;
  }

  .offer-kicker2 {
    padding-left: 42px !important;
  }

  .footerLOgo img {
    max-width: 373px;
  }

  .services-section {
    padding: 60px 18px;
    max-width: 100%;
    margin: 0 auto;
    background: #fff;
  }

  .offer-title .text-accent {
    font-size: 27px !important;
    font-weight: 900;
    line-height: 39px;
  }

  .offer-title {
    font-size: 26px;
    line-height: 30px;
    font-weight: 900;
  }

  .footerLOgo img {
    max-width: 338px;
    margin-top: 23px;
  }

  .hero-video-wrapper {

    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
  }

  .kpi-card-title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.1;
  }

  .faq-item .faq-toggle-icon {
    line-height: 15px;
    color: #fff;
    background-color: #A9A9A9;
    width: 42px !important;
    height: 26px !important;
  }
}

.check-box-btn {
  margin-bottom: 36px;
}


.kpi-pill-active {
  border: none !important;
}

.leti-cont-nav {
  background: #0e58d1 !important;
}

.leti-cont-nav :hover {
  background-color: #000 !important;
}

/* Ultra Wide */
@media (max-width: 1900px) {
  .main-navbar {
    margin: 19px 163px 0px 163px !important;
    transition: all 0.9s ease;
  }

  .hero-content-wrapper {
    position: relative;
    z-index: 2;
    padding-top: 235px;
    padding-bottom: 4rem;
  }

  .desktop-service-grid {
    display: block !important;
  }

  .mobile-service-slider {
    display: none !important;
  }

  .service-section-wrapper {
    padding: 0 !important;
    margin: 0;
  }
}

/* Mobile View */
@media (max-width: 991.98px) {

  .desktop-service-grid {
    display: none !important;
  }

  .mobile-service-slider {
    display: block !important;
  }


}

/* Big Screen */
@media (max-width: 1600px) {
  .main-navbar {
    margin: 19px 115px 0px 115px !important;
    transition: all 0.9s ease;
  }
}

/* Tablet */
@media (max-width: 991px) {

  .btn-cta,
  .btn-cta-sm {
    display: none;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .main-navbar {
    margin: 0px !important;
    transition: all 0.9s ease;
  }

  .btn-cta,
  .btn-cta-sm {
    display: none;
  }

  .hero-heading .text-highlight {
    line-height: 46px;
  }

  .hero-subtitle {
    font-size: 16px !important;
    color: #ffffff;
    max-width: 34rem;
    margin-inline: auto;
    font-family: 'Poppins', sans-serif;
    line-height: 23px;
    font-weight: 400;

    margin-top: 22px;
  }

  .hero-cta-group {
    align-items: center !important;
    margin-top: 51px;
  }

  .offer-section {

    margin-top: 26px;
  }

  .hero-content-wrapper {
    padding-top: 140px;
  }

  .hero-btn {
    width: 74%;
    justify-content: center;
  }

  .offer-section {
    background-color: #fff;
  }

  .offer-section {
    padding: 63px 0px;
  }

  .offer-heading-wrap {
    max-width: 32rem;
    padding: 0px 33px;
  }

  .check-box-btn {
    margin-bottom: 86px;
  }

  .service-card {
    border-radius: 0px;
    margin-top: 40px;
  }

  .service-image {
    max-width: 65%;
  }

  .service-card-outline {
    border-radius: 0px;
    border: 2px solid #e5e7eb;
    background-color: #ffffff;
    box-shadow: none;
    margin-top: 40px;
  }

  .services-section {
    padding: 76px 0px 0px 0px;

  }

  .conversation-section {

    border: 1px solid #ffffff;
  }

  .seo-form-check {
    font-size: 10px;
    color: #ffffff;
    display: flex;
    gap: 10px;
    margin-bottom: -62px;
  }

  .kpi-section {
    padding: 50px 0px 0px 0px;
  }

  .service-title {
    font-size: 22px;
  }

  .owl-theme .owl-dots .owl-dot.active span,
  .owl-theme .owl-dots .owl-dot:hover span {
    background: #0E58D1 !important;
    padding: 0px 30px !important;
    height: 6px !important;
  }

  .owl-theme .owl-dots .owl-dot span {
    width: 7px !important;
    height: 7px !important;
    margin: 17px 3px !important;
    background: #D6D6D6 !important;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
    border: 1PX solid #0E58D1;
  }

  .seo-submit-btn {
    margin-top: 70px;
  }

  .tech-heading .owl-theme .owl-dots,
  .owl-theme .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    display: none !important;
  }

  .kpi-card-media {
    position: relative;
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    min-height: 389px;
  }

  .kpi-card-image {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    margin-right: -81px;
    margin-top: 78px !important;
  }

  .kpi-side-actions {
    position: absolute !important;
    right: 189px !important;
    top: -25% !important;
    transform: translateY(-50%) !important;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 219px !important;
  }

  .kpi-side-btn {
    background-color: #2563ff;
    color: #ffffff;
    border: none;
    border-radius: 16px;
    padding: 0.8rem 1.2rem;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.65);
    max-width: 194px;
  }

  .kpi-card-link {

    font-size: 15px;
  }

  .kpi-card {
    border-radius: 0px !important;
  }

  .main-box-footer-sec {
    display: flex;
  }

  .shadow-sm {
    box-shadow: none !important;
  }

  .btn-cta,
  .btn-cta-sm {
    max-width: 207px;
  }

  .news-section .btn-cta,
  .btn-cta-sm {
    max-width: 207px;
    display: none !important;
  }

  .news-section .btn-2,
  .btn-cta-sm {
    max-width: 207px;
    display: block !important;
  }

  .navbar .btn-2,
  .btn-cta-sm {

    display: none !important;
  }

  .main-header.is-sticky {
    padding-bottom: 0px;
  }

  .news-feature-article {
    padding: 0px;
  }

  .zero-bug-heading {
    color: #fff;
  }
}


/* asfdcv */


.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-item-open .faq-answer {
  max-height: 500px;
}


/* ================ */

/* .main-header.hide {
  transform: translate(-50%, -140%);
  opacity: 0;
} */

/* .main-header.show {
  transform: translate(-50%, 0);
  opacity: 1;
} */

.main-header.show {
  transform: translate(-0%, 0);
  opacity: 1;
}

/* Smooth transition */
.main-header {
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

/* Jab scroll ruk jaye / upar aaye */
.main-header.sticky-active {
  /*background: rgb(255 255 255);*/
  /* box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12); */
  /* backdrop-filter: blur(10px); */
  top: 0px;
  padding-bottom: 10px;
}


/* Base position */
.main-header {
  left: 50%;
  transform: translateX(-50%) translateY(0);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

/* Hide – sirf upar jayega */
.main-header.hide {
  transform: translateX(-50%) translateY(-120%);
  opacity: 0;
}

/* Show */
.main-header.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ================= MOBILE FULLSCREEN MENU ================= */

/* ================= MOBILE FULLSCREEN MENU ================= */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  /* BLACK BACKGROUND */
  backdrop-filter: blur(6px);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-menu-inner {
  background: #000;
  /* BLACK */
  width: 100%;
  height: 100%;
  padding: 0px 0px;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.4s ease;
  color: #fff;
  /* CONTENT WHITE */
}

/* Active state */
.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu.active .mobile-menu-inner {
  transform: translateY(0);
}

/* Close button */
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 26px;
  color: #fff;
  /* WHITE */
  cursor: pointer;
}

/* Links white */
.mobile-menu .nav-link {
  color: #fff !important;
  font-size: 18px;
  font-weight: 500;
}

.mobile-menu .nav-link:hover {
  opacity: 0.7;
}

/* Button tweak */
.mobile-menu .btn {
  background: #fff;
  color: #000;
  border: none;
}





.error-banner {
  padding: 60px 0;
  width: 100%;
  position: relative;
  background: #fff;
}

.error-banner h1 {
  color: #0E58D1;
  font-size: 74px;
  font-weight: 700;
  font-family: 'Aleo';
}

.error-banner h2 {
  font-size: 50px;
  font-weight: 400;
  font-family: 'Aleo';
  margin: 0px 0 20px;
}

.error-banner .custom-btn {
  margin: 30px 0 0 0;
}

.error-banner .custom-btn a {
  background: #fff;
  padding: .5rem 1rem;
  font-weight: 500 !important;
  font-family: "Aleo", serif;
  color: #0E58D1;
  border-radius: 30px;
  display: inline-flex;
}

.error-banner .custom-btn a span {
  width: 24px;
  height: 24px;
  border-radius: 100%;
  background: #0E58D1;
  display: flex;
  margin: 0 0 0 10px;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.error-banner .custom-btn a:hover {
  background: #0E58D1;
  color: #fff;
}

.error-banner .custom-btn a:hover span {
  background: #fff;
  color: #0E58D1;
}




/* Desktop hide */
@media (min-width: 992px) {
  .mobile-menu {
    display: none;
  }

  .mobile-menu-inner {
    background: #000 !important;
    width: 100%;
    height: 100%;
    padding: 40px 24px;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    color: #fff;
  }
}

@media (max-width: 992px) {

  /* .mobile-menu-inner {
          padding-top: 1012px !important;
    background: #000 !important;
    width: 100%;
    height: 100%;
    padding: 40px 24px;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    color: #fff;
} */
  /* .mobile-menu.active .mobile-menu-inner {
    transform: translateY(0);
    background: chocolate;
    height: 300vh;
} */
}


/* ===== Side Floating Form ===== */
.vs-side-form {
  position: fixed;
  right: 0px;
  bottom : 0px;
  width: 356px;
  max-height: 455px;
  background: #0E58D1;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  padding: 45px 30px;
  z-index: 9999;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.vs-submit-btn1 {
  color: #000;
}

/* Title */
.vs-form-title {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 38px;
  font-family: 'Aleo', serif !important;
}

.vs-form-title span {
  font-size: 35px;
}

/* Close button */
.vs-form-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
}

/* Inputs */
.vs-requirement-form input,
.vs-requirement-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: none;
  outline: none;
  margin-bottom: 12px;
  font-size: 14px;
}

.vs-requirement-form textarea {
  min-height: 90px;
	height: 90px;
  resize: none;
}

/* Button */
.vs-submit-btn {
  width: 100%;
  background: #fff;
  color: #0d5bd7;
  border: none;
  border-radius: 30px;
  padding: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Trigger Button */
.vs-form-trigger {
  position: fixed;
  right: 20px;
  bottom: 30px;
  background: #0d5bd7;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 30px;
  cursor: pointer;
  z-index: 9998;
  display: none;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
  .vs-side-form {
    right: 0;
    left: 0;
    bottom: 0;
    top: auto;
    transform: none;
    width: 100%;
    border-radius: 18px 18px 0 0;
    display: none;
  }

  .vs-form-trigger {
    display: none;
  }

  .error-banner {

    padding-top: 131px !important;
  }

  .faq-item .faq-toggle-icon {
    line-height: 15px;
    color: #fff;
    background-color: #A9A9A9;
    width: 55px !important;
    height: 26px !important;
  }

  .service-image {

    margin-bottom: 12px !important;
  }
}



.footer-links li+li {
  margin-top: 15px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 99999;
}

.mobile-menu-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.mobile-menu-close {
  position: fixed !important;
  top: 30px !important;
  right: 20px !important;
  color: #fff !important;
  background: #000 !important;
  /* DEBUG ke liye */
  border: none !important;
  font-size: 20px !important;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  z-index: 100000 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}


.mobile-menu-inner .navbar-nav {
  background: #000;
  height: 110vh;

  padding-top: 67px;
}




.mobile-service-slider .row {
  margin-left: 0;
  margin-right: 0;
}

.mobile-service-slider [class*="col-"] {
  padding-left: 0;
  padding-right: 0;
}


.mobile-service-slider .owl-stage {
  display: flex;
}

.mobile-service-slider .owl-item {
  display: flex;
}


.mobile-offer-card {

  height: 100%;
}

.service-card {

  height: 100%;
}

.service-card-body {
  flex: 1;
}

.service-media-wrap {
  margin-top: auto;
}

.mobile-service-slider {
  width: 100%;
  max-width: 100%;
}





.mobile-service-slider,
.mobile-service-slider .owl-stage-outer {
  overflow: hidden !important;
}

.news-card-image-wrap img{
  height: 250px;
  object-fit: cover;
}
.news-feature-image-wrap img{
  height: 400px;
  object-fit: cover;
}
.footerLOgo img {
    height: 60px;
    width: auto;
}