:root {
  --is-primary: #004D96;
  --is-primary-dark: #1E40AF;
  --is-btn-gradient: linear-gradient(90deg, #246BCE 0%, #123668 100%);
  --is-bg-gradient: linear-gradient(180deg, rgba(19, 81, 216, 0.07) 0%, rgba(245, 245, 248, 0.32) 100%);
  --is-dark: #0F172A;
  --is-dark-2: #1E293B;
  --is-text: #1E293B;
  --is-textsecondary: #1E293B;
  --is-muted: #64748B;
  --is-border: #E2E8F0;
  --is-light-blue: #F4F7FB;
  --is-light-bg: #F8FAFC;
  --is-white: #FFFFFF;
  --is-radius-lg: 24px;
  --is-radius: 12px;
  --is-radius-sm: 8px;
  --is-shadow: 0px 0px 24px 0px #0000001A;
  --is-shadow-hover: 0 8px 32px rgba(37, 99, 235, 0.18);
  --section-py: 96px;
  --section-py-sm: 56px;
  --gold: #cca42f;
  --gold-2: #b88a1d;
  --ink: #1c2233;
  --muted: #6b7280;
  --bullet: #5b6475;
  --card-border: #e7eaf0;
  --blue-accent: #2f6bff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--is-text);
  background: var(--is-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- Bootstrap Button Overrides -------------------------- */
.btn-primary {
  background: var(--is-btn-gradient);
  font-weight: 600;
  padding: 0.625rem 2rem;
  border-radius: 50px;
  transition: none;
  border: none;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--is-primary);
  border-color: var(--is-primary-dark);
  box-shadow: var(--is-shadow-hover);
  transform: translateY(-1px);
}

.btn-outline-primary {
  color: var(--is-primary);
  border-color: var(--is-primary);
  font-weight: 600;
  padding: 0.625rem 1.5rem;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s;
}

.btn-outline-primary:hover {
  background: var(--is-primary);
  color: var(--is-white);
}

/* ---- Layout Utilities ------------------------------------- */
.section-padding {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

.section-padding-sm {
  padding-top: var(--section-py-sm);
  padding-bottom: var(--section-py-sm);
}

.bg-light-section {
  background: var(--is-light-blue);
}

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

/* ---- Shared Typography ------------------------------------ */
.section-badge {
  display: inline-block;
  background: #E6EDFD;
  color: var(--is-primary);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.375rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-heading {
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--is-dark);
  margin-bottom: 1rem;
}

.section-body {
  color: var(--is-muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 680px;
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.site-header {
  background: var(--is-white);
  box-shadow: 0 1px 0 var(--is-border);
  z-index: 1030;
}

.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.navbar-brand {
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.brand-primary {
  width: 160px;
}

.navbar-nav .nav-link {
  color: #676767;
  font-weight: 400;
  font-size: 0.9375rem;
  padding: 0.5rem 0.875rem;
  transition: color 0.15s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--is-primary);
  font-weight: 700;
}

.navbar-cta {
  margin-left: 1rem;
}

/*----------------CUSTOM MEGA MENU---------------*/
/* ---------- Main panel ---------- */
.panel {
  max-width: 1440px;
  margin: 0 auto;
  background: #fff;
  border-radius: 26px;
  padding: 34px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.mega-menu {
  width: 94vw;
  left: 50% !important;
  transform: translateX(-50%) !important;
  border: none;
  background: transparent;
  padding: 40px 0;
}

.panel {
  max-width: 1440px;
  margin: auto;
  overflow: auto;
  height: 92vh;
}

/* ---------- Section header ---------- */
.services-head {
  position: relative;
  border: 1.5px solid #cfdcf3;
  border-radius: 14px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  margin-bottom: 22px;
}

.services-head h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
}

/* ---------- Service card ---------- */
.service-card {
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 24px 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s ease, transform .25s ease;
}

.service-card:hover {
  box-shadow: 0 16px 34px rgba(20, 30, 60, 0.08);
  transform: translateY(-3px);
}

.service-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.service-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: #eef3ff;
  color: #3768d6;
  font-size: 19px;
}

.service-card__title {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
}

.service-card__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 16px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  flex-grow: 1;
}

.service-list li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--bullet);
  margin-bottom: 9px;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #9aa3b2;
}

.explore-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  margin-top: auto;
}

.explore-link .arrow {
  width: 24px;
  height: 24px;
  border: 1.5px solid #c9d2e3;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  transition: all .2s ease;
}

.explore-link:hover .arrow {
  background: var(--is-btn-gradient);
  border-color: var(--blue-accent);
  color: #fff;
}

/* ---------- Partner panel ---------- */
.partner {
  position: relative;
  overflow: hidden;
  height: 100%;
  border-radius: 20px;
  padding: 28px 14px;
  background-image: url('./images/bg-abstract.png');
  background-repeat: no-repeat;
  background-size: cover;
}

.partner>* {
  position: relative;
  z-index: 1;
}

.partner__logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.logo-informatik {
  display: flex;
  align-items: center;
  gap: 9px;
}

.partner__logos .brand-primary {
  width: 144px;
}

.partner__logos .odoo-partner {
  width: 76px;
}

.partner__title {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 500;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 12px;
}

.partner__title .gold {
  font-weight: 700;
  color: var(--gold);
}

.partner__sub {
  font-size: 15px;
  color: #4f5667;
  line-height: 1.5;
  margin-bottom: 22px;
}

.partner__label {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.nav-contact-box {
  background: #fff;
  border: 1px solid #ece4d3;
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  height: 100%;
}

.nav-contact-box .ico {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--gold);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 15px;
}

.nav-contact-box small {
  display: block;
  font-size: 11px;
  color: #9098a6;
  line-height: 1.2;
}

.nav-contact-box b {
  font-size: 13px;
  color: var(--ink);
  font-weight: 600;
  word-break: break-word;
}

.navbar-nav .dropdown {
  position: static;
}

.hire-card {
  margin-top: 18px;
  background: #fff;
  border: 1px solid #ece4d3;
  border-radius: 14px;
  padding: 20px;
}

.hire-card h4 {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.hire-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-2) 100%);
  color: var(--is-white);
  font-weight: 700;
  font-size: 14px;
  border: none;
  border-radius: 9px;
  padding: 10px 18px;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(180, 140, 30, .28);
}

.btn-gold .arrow {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .16);
  display: grid;
  place-items: center;
  font-size: 11px;
}

.btn-gold:hover {
  filter: brightness(1.04);
  color: var(--is-white);
}

@media (max-width: 575.98px) {
  .panel {
    padding: 20px;
    border-radius: 18px;
  }
}

/* ============================================================
   OFF-CANVAS MOBILE NAVIGATION
   ============================================================ */

/* ---- Hamburger button ------------------------------------ */
.mob-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--is-border);
  border-radius: var(--is-radius-sm);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s;
}

.mob-toggle:hover {
  background: var(--is-light-bg);
  border-color: var(--is-primary);
}

.mob-toggle:focus-visible {
  outline: 2px solid var(--is-primary);
  outline-offset: 3px;
}

.mob-toggle__bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  pointer-events: none;
}

.mob-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--is-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}

/* Animate bars to X when drawer is open */
.mob-toggle[aria-expanded="true"] .mob-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mob-toggle[aria-expanded="true"] .mob-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mob-toggle[aria-expanded="true"] .mob-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Full-screen overlay --------------------------------- */
.mob-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 1049;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mob-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/* ---- Off-canvas drawer ----------------------------------- */
.mob-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  /* Use dvh where supported for correct mobile browser chrome handling */
  height: 100dvh;
  background: var(--is-white);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  /* Slide off-screen to the left */
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  /* Prevent content overflow from creating horizontal scroll */
  max-width: min(320px, 85vw);
}

.mob-drawer.is-open {
  transform: translateX(0);
  box-shadow: 8px 0 48px rgba(15, 23, 42, 0.2);
}

/* ---- Drawer header --------------------------------------- */
.mob-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--is-border);
  flex-shrink: 0;
}

/* ---- Close button ---------------------------------------- */
.mob-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--is-light-bg);
  border: 1px solid var(--is-border);
  border-radius: 50%;
  font-size: 1rem;
  color: var(--is-text);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.mob-drawer__close:hover {
  background: var(--is-primary);
  color: #fff;
  border-color: var(--is-primary);
}

.mob-drawer__close:focus-visible {
  outline: 2px solid var(--is-primary);
  outline-offset: 3px;
}

/* ---- Drawer body ----------------------------------------- */
.mob-drawer__body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  /* Smooth momentum scrolling on iOS */
  -webkit-overflow-scrolling: touch;
}

/* ---- Mobile nav list ------------------------------------- */
.mob-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Shared link / button base */
.mob-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.9375rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--is-text);
  text-decoration: none;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--is-border);
  text-align: left;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
  line-height: 1.4;
}

.mob-nav__link:hover {
  color: var(--is-primary);
  background: rgba(37, 99, 235, 0.04);
}

.mob-nav__link.active {
  color: var(--is-primary);
}

.mob-nav__link:focus-visible {
  outline: 2px solid var(--is-primary);
  outline-offset: -2px;
}

/* Chevron icon on expandable items */
.mob-nav__chevron {
  font-size: 0.6875rem;
  color: var(--is-muted);
  flex-shrink: 0;
  margin-left: 0.5rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mob-nav__toggle[aria-expanded="true"] .mob-nav__chevron {
  transform: rotate(180deg);
  color: var(--is-primary);
}

/* ---- Submenu accordion ----------------------------------- */
.mob-nav__sub {
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--is-light-bg);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.mob-nav__group.is-expanded>.mob-nav__sub {
  max-height: 280px;
}

.mob-nav__sublink {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 0.75rem 1.25rem 0.75rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--is-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--is-border);
  transition: color 0.15s, background 0.15s;
}

.mob-nav__sublink .service-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: #e1e8f8;
  color: #3768d6;
  font-size: 19px;
}

.mob-nav__sublink img {
  width: 26px;
  height: 26px;
}

.mob-nav__sublink:hover {
  color: var(--is-primary);
  background: rgba(37, 99, 235, 0.04);
}

.mob-nav__sublink:focus-visible {
  outline: 2px solid var(--is-primary);
  outline-offset: -2px;
}

/* ---- CTA block ------------------------------------------- */
.mob-drawer__cta {
  padding: 1.5rem 1.25rem 2rem;
  margin-top: auto;
  border-top: 1px solid var(--is-border);
}

/* ---- Body scroll lock ------------------------------------ */
body.mob-nav-open {
  overflow: hidden;
  /* iOS Safari requires position:fixed to prevent rubber-band scroll */
  position: fixed;
  width: 100%;
  /* Scrollbar gutter prevents layout shift on desktop */
  scrollbar-gutter: stable;
}

/* ---- Ensure drawer is never visible on desktop ----------- */
@media (min-width: 992px) {

  .mob-drawer,
  .mob-overlay,
  .mob-toggle {
    display: none !important;
  }
}

/* ---- Reduced motion ---------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .mob-drawer {
    transition: none !important;
  }

  .mob-overlay {
    transition: none !important;
  }

  .mob-toggle__bar {
    transition: none !important;
  }

  .mob-nav__sub {
    transition: none !important;
  }

  .mob-nav__chevron {
    transition: none !important;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  position: relative;
  padding: 96px 0 50px 0;
  background-image: url('../images/BG.png');
  overflow: hidden;
}

.hero-img {
  border-radius: var(--is-radius-lg);
}

.badge-pill {
  display: inline-block;
  background: var(--is-white);
  border: 1px solid var(--is-primary-dark);
  color: var(--is-primary);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--is-dark);
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: var(--is-primary);
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 1.0625rem;
  color: var(--is-text);
  line-height: 1.75;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.hero-cta {
  font-size: 1.0625rem;
  padding: 0.875rem 2rem;
}

.hero-btn-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.oop-logo {
  background-color: var(--is-white);
  border: 1px solid var(--is-primary);
  border-radius: 40px;
  padding: 0px 16px;
}

.oop-logo img {
  width: 92px;
}

/* ============================================================
   ABOUT US
   ============================================================ */
.about-section-wrapper {
  background: var(--is-bg-gradient);
  border-radius: var(--is-radius-lg);
  padding: 42px;
}

.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.about-img-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-img-stack img {
  display: block;
  width: 100%;
  height: auto;
}

.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--is-light-bg);
  border: 1px solid var(--is-border);
  color: var(--is-text);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  border-radius: 50px;
  white-space: nowrap;
}

.about-tag .bi {
  color: var(--is-primary);
  font-size: 0.875rem;
}

.about-section .bg-white {
  padding: 24px;
  border-radius: var(--is-radius-lg);
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.feature-card {
  background: var(--is-white);
  box-shadow: var(--is-shadow);
  border-radius: var(--is-radius);
  padding: 1.5rem;
  height: 270px;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-card:hover {
  box-shadow: var(--is-shadow-hover);
  transform: translateY(-4px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.feature-icon img {
  width: 50px;
  height: 50px;
}

.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--is-dark);
  margin-bottom: 0.5rem;
}

.feature-body {
  font-size: 0.875rem;
  color: var(--is-muted);
  margin-bottom: 1rem;
}

.feature-link {
  font-size: 1.5rem;
  color: var(--is-primary);
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s;
}

.feature-link:hover {
  transform: translateX(4px);
  color: var(--is-primary-dark);
}

/* ============================================================
   CALLOUT BANNER
   ============================================================ */
.callout-banner {
  background: var(--is-dark);
}

.callout-heading {
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 800;
  color: var(--is-white);
  line-height: 1.25;
  margin: 0;
}

.callout-body {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
}

/* ============================================================
   TABBED SERVICES
   ============================================================ */
.services-tabs .nav-link {
  color: var(--is-text);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 1rem 1.5rem;
  border-radius: 0;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: none;
  transition: color 0.15s, background 0.15s;
}

#servicesTabs {
  position: relative;
}

#servicesTabs::after {
  content: '';
  height: 100%;
  width: 2px;
  background-color: var(--is-border);
  position: absolute;
  right: -22px;
}

.services-tabs .nav-link:hover {
  color: var(--is-primary);
  background: rgba(37, 99, 235, 0.04);
}

.services-tabs .nav-link.active {
  background: var(--is-btn-gradient);
  color: var(--is-white);
  font-weight: 600;
  border-radius: 999px;
}

.services-tabs .nav-link svg {
  width: 24px;
  height: 24px;
}

.services-tabs .nav-link.active svg rect {
  fill: #fff;
}

.services-tab-content {
  padding: 0 2rem 2rem 2rem;
}

.services-pane-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--is-dark);
  margin-bottom: 1rem;
}

.service-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--is-text);
  padding: 0.35rem 0;
}

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  padding: var(--section-py-sm);
  background: var(--is-btn-gradient);
}

.stats-section h2 {
  color: var(--is-white);
}

.stat-item {
  padding: 1.5rem 1rem;
  text-align: center;
}

.stat-divider {
  border-left: 1px solid #ffffff4f;
}

.stat-icon {
  margin-bottom: 1.5rem;
}

.stat-icon img {
  width: 45px;
  height: 45px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--is-white);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--is-white);
  font-weight: 400;
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries {
  background-color: #00112A;
}

.dark-badge {
  display: inline-block;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #d6deee;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.industry-card {
  transition: transform 0.45s ease;
  transform: translateY(28px);
  padding: 0 6px;
}

.industries .section-heading {
  color: var(--is-white);
  margin-top: 1rem;
}

.industries .section-body {
  color: rgba(255, 255, 255, 0.65);
}

.industry-card__image {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3.05;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.35);
}

.industry-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.industry-card__label {
  margin-top: 16px;
  padding: 16px 14px;
  border-radius: 16px;
  background-color: #0F2648;
}

.industry-card__perf {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 4px;
}

.industry-card__name {
  margin: 0;
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 700;
  color: #fff;
}

/* Centered (active) slide is raised + larger */
.owl-item.center .industry-card {
  transform: translateY(-14px);
}

.owl-item.center .industry-card__image {
  aspect-ratio: 4 / 3.4;
  box-shadow: 0 30px 55px rgba(0, 0, 0, 0.45);
}

/* Dim the side slides slightly */
.owl-item:not(.center) .industry-card {
  opacity: 0.92;
}

/* ---------- Owl tweaks ---------- */
.owl-carousel .owl-stage-outer {
  padding: 30px 0 18px;
}


@media (max-width: 575.98px) {
  .industry-card {
    transform: translateY(0);
  }

  .owl-item.center .industry-card {
    transform: translateY(0);
  }
}

/* ============================================================
   MID-PAGE CTA
   ============================================================ */
.cta-mid {
  margin: 3rem 0;
}

.dark-bg-wrapper {
  background: #00112A;
  padding: 3rem;
  border-radius: var(--is-radius-lg);
}

.cta-mid .container {
  position: relative;
}

.cta-mid-heading {
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 800;
  color: var(--is-white);
  line-height: 1.2;
}

.cta-mid-body {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.75;
}

.cta-mid .img-fluid {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 470px;
  height: auto;
}

/* ============================================================
   OFFER CARDS
   ============================================================ */
.offer-section {
  background-color: var(--is-light-blue);
}

.offer-section .section-body {
  max-width: 500px;
  margin-left: auto;
}

.offer-card {
  background: var(--is-white);
  border-radius: var(--is-radius);
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  height: 300px;
}

.offer-card:hover {
  box-shadow: var(--is-shadow-hover);
  transform: translateY(-3px);
}

.offer-img-wrap {
  overflow: hidden;
}

.offer-img-wrap img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.35s ease;
  position: absolute;
  bottom: 0;
  right: 0;
}

.offer-card:hover .offer-img-wrap img {
  transform: scale(1.04);
}

.offer-img-wrap--tall {
  height: 100%;
}

.offer-img-wrap--tall img {
  height: auto;
  object-fit: cover;
}

.offer-card--tall {
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.offer-card--tall .offer-img-wrap {
  height: 400px;
}

.offer-card-body {
  padding: 1.25rem;
}

.offer-card-body--overlay {
  position: absolute;
  top: 0;
  left: 0;
  padding: 1.5rem;
}

.offer-category {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--is-primary);
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

.offer-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--is-dark);
  margin: 10px 0 0 0;
}

.offer-link {
  font-size: 1.3rem;
  color: var(--is-white);
  background: var(--is-btn-gradient);
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.2s, color 0.15s;
  border-radius: 50%;
  height: 35px;
  width: 35px;
  display: flex;
  rotate: 313deg;
  margin-top: 2rem;
  align-items: center;
  justify-content: center;
}

.offer-link:hover {
  transform: translateX(4px) scale(1.1);
  color: var(--is-primary);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.bg-light-purple {
  background-color: #F0E9F3;
}

.bg-light-purple .row {
  padding: 16px;
}

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid var(--is-white);
  border-radius: var(--is-radius);
  padding: 1.75rem;
  height: 100%;
  transition: background 0.2s, border-color 0.2s;
  text-align: center;
}

.why-icon {
  width: 52px;
  height: 52px;
  background: var(--is-white);
  border-radius: var(--is-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  color: var(--is-primary);
  margin: 0rem auto 1rem auto;
}

.why-icon img {
  width: 24px;
  height: 24px;
}

.why-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--is-dark);
  margin-bottom: 0.5rem;
}

.why-body {
  font-size: 0.875rem;
  color: var(--is-muted);
  line-height: 1.65;
  margin: 0;
}

.why-card--cta {
  background-color: var(--is-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.why-cta-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--is-dark);
  margin-bottom: 1rem;
}

.why-avatars {
  display: flex;
}

.why-avatar {
  width: 40px;
  height: 40px;
  object-fit: cover;
  margin-left: -10px;
}

.why-avatar:first-child {
  margin-left: 0;
}

.btn-hire-dev {
  color: var(--is-text);
}

/* ============================================================
   INSIGHTS TABS
   ============================================================ */
.insights-section .tabs-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  width: max-content;
  background: var(--is-btn-gradient);
  margin: 0 auto 2rem auto;
  border-radius: var(--is-radius-lg);
  padding: 4px;
}

.insights-tabs .nav-link {
  color: var(--is-white);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  transition: color 0.15s, background 0.15s;
}

.insights-tabs .nav-link:hover {
  color: var(--is-primary);
  background: var(--is-white);
}

.insights-tabs .nav-link.active {
  color: var(--is-primary);
  background: var(--is-white);
}

.card-flex {
  display: flex;
}

.insights-card {
  border: 1px solid var(--is-border);
  padding: 16px;
  border-radius: var(--is-radius);
  height: 100%;
}

.insights-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  display: block;
  border-radius: var(--is-radius-sm);
}

.insights-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.insight-tag {
  background: var(--is-btn-gradient);
  border-radius: var(--is-radius-sm);
  color: var(--is-white);
  width: fit-content;
  padding: 4px 16px;
  margin-top: 20px;
  font-size: 14px;
}

.insights-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--is-dark);
    margin: 16px 0;
    line-height: 1.2;
    overflow: hidden;
    text-decoration: none;
}

.insights-info img {
  width: 16px;
  height: 16px;
}

.insights-info p {
  font-size: 12px;
  color: #808080;
  margin-left: 5px;
}

/* ============================================================
   TECH STACK TABS
   ============================================================ */
.technology-section {
  background: var(--is-light-blue);
}

.section-heading {
  max-width: 1050px;
  margin: auto;
}

/* =======================
   Tabs
======================= */
.tech-tabs {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 70px;
  border-bottom: 1px solid #d9d9d9;
  flex-wrap: nowrap;
}

.tech-tabs .nav-item {
  flex: 1;
}

.tech-tabs .nav-link {
  background: transparent !important;
  border: 0;
  color: var(--is-text);
  text-align: center;
  width: 100%;
  padding: 0 15px 28px;
  position: relative;
}

.tech-tabs .nav-link.active {
  font-weight: 700;
}

.tab-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.tech-tabs .nav-link.active .tab-icon {
  background: var(--is-btn-gradient);
}

.tech-tabs .nav-link.active rect {
  fill: var(--is-white);
}

.tech-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--is-btn-gradient);
}

.tech-tabs .nav-link.active::before {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid var(--is-primary);
}

.tabs-scroll {
  width: 100%;
  overflow-x: auto;
  /* overflow-y: hidden; */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.tabs-scroll::-webkit-scrollbar {
  display: none;
}

.tech-tabs {
  flex-wrap: nowrap !important;
  width: max-content;
  min-width: 100%;
}

.tech-tabs .nav-item {
  flex: 0 0 220px;
  /* adjust width as needed */
}

/* =======================
   Content
======================= */

.tech-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.tech-image {
  height: 100%;
}

.tech-image img {
  width: 100%;
  border-radius: 24px;
  display: block;
  height: 100%;
  object-fit: cover;
}

.tech-info h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--is-dark);
}

.solution-list {
  padding: 0;
  margin: 0 0 35px;
  list-style: none;
  flex-wrap: wrap;
  display: flex;
  row-gap: 5px;
  column-gap: 10px;
}

.solution-list li {
  background: var(--is-white);
  color: var(--is-muted);
  border-radius: 40px;
  padding: 10px 20px;
  margin-bottom: 12px;
  width: fit-content;
}

.btn-call {
  background: var(--is-btn-gradient);
  color: var(--is-white);
  text-decoration: none;
  padding: 12px 32px;
  border-radius: 60px;
  display: inline-flex;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-accordion .accordion-item {
  border: none;
  border: 1px solid var(--is-border);
  background: transparent;
  border-radius: var(--is-radius);
  padding: 1rem;
  margin-bottom: 1rem;
}

.faq-accordion .accordion-button {
  font-size: 1rem;
  font-weight: 600;
  color: var(--is-dark);
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--is-primary);
  background: transparent;
}

.faq-accordion .accordion-button::after {
  background-size: 1rem;
}

.faq-accordion .accordion-body {
  font-size: 0.9375rem;
  color: var(--is-muted);
  padding: 1rem 0;
  line-height: 1.75;
}

.faq-cta-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--is-dark);
  margin-bottom: 0.75rem;
}

.faq-cta-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-cta-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--is-text);
  padding: 0.3rem 0;
}

.faq-cta-block {
  background-color: var(--is-light-blue);
  display: flex;
  align-items: center;
  border-radius: var(--is-radius);
  padding: 1rem;
  justify-content: space-between;
}

.faq-cta-block .btn-primary {
  padding: 14px;
  font-size: 12px;
}

.faq-cta-block img {
  width: 220px;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */

.contact-wrapper {
  background: #00112A;
  border-radius: 40px;
  padding: 36px;
  color: var(--is-white);
}

.contact-section h2 {
  color: var(--is-white);
  font-weight: 600;
}

.form-card {
  background: #051B3B;
  border: 1px solid #132C52;
  border-radius: 24px;
  padding: 28px;
  height: 100%;
}

.custom-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, .75);
  color: #fff;
  padding: 10px 0;
  font-size: 17px;
}

.custom-input::placeholder {
  color: #fff;
  opacity: 1;
}

.custom-input:focus {
  outline: none;
}


.upload-box {
  border: 1px dashed rgba(255, 255, 255, .7);
  border-radius: 50px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  margin-top: 20px;
  font-size: 16px;
  padding: 0 24px;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
  user-select: none;
}

.upload-box:hover {
  border-color: #fff;
}

.upload-box.is-dragover {
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
}

.upload-box.has-file {
  justify-content: space-between;
  padding-inline: 22px;
}

.upload-box .file-name {
  flex: 1;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.upload-box .remove-file {
  background: none;
  border: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  opacity: .8;
}

.upload-box .remove-file:hover {
  opacity: 1;
}

.upload-error {
  color: #ff8a8a;
  font-size: 13px;
  margin-top: 8px;
  min-height: 18px;
}

/* visually hide the real input but keep it accessible */
.visually-hidden-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.send-btn {
  width: 100%;
}

.info-content {
  padding-left: 14px;
}

.info-content h2 {
  font-size: 24px;
  max-width: 700px;
}

.contact-box {
  background: #051B3B;
  border: 1px solid #132C52;
  border-radius: 22px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.icon-box {
  width: 56px;
  height: 56px;
  background: #001537;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.contact-box small {
  color: rgba(255, 255, 255, .55);
  display: block;
}

.contact-box span {
  font-size: 16px;
  font-weight: 600;
}

.contact-box a {
  color: white;
  text-decoration: none;
}

.idea-box {
  background: #051B3B;
  border: 1px solid #132C52;
  border-radius: 24px;
  padding: 24px;
  margin-top: 30px;
}

.idea-box h4 {
  font-size: 24px;
  font-weight: 600;
}

.idea-box p {
  color: rgba(255, 255, 255, .55);
  font-size: 16px;
  margin: 0;
}

.social-section {
  margin-top: 55px;
}

.social-title {
  font-size: 16px;
}

.social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social-icon {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  text-decoration: none;
  transition: .3s;
}

.social-icon:hover {
  background: #0a2d67;
  color: #fff;
}

.social-icon i {
  font-size: 20px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--is-dark);
  color: rgba(255, 255, 255, 0.65);
  margin-top: 7rem;
}

.footer-top {
  padding: 72px 0 48px;
}

.footer-brand {
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
}

.footer-text {
  font-size: 14px;
  color: var(--is-white);
}

.footer-col-heading {
  font-size: 1.2rem;
  font-weight: 600;
  color: #d4af37;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.625rem;
}

.footer-links a {
  color: var(--is-white);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s;
}

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

.footer-address {
  font-style: normal;
}

.footer-address img {
  width: 22px;
  height: 22px;
  margin-right: 8px;
}

.footer-address p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--is-white);
  margin-bottom: 0.75rem;
}

.footer-address a {
  color: var(--is-white);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-address a:hover {
  color: #fff;
}

.footer-address .bi {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--is-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--is-white);
}

.footer-follow {
  font-size: 0.875rem;
  color: var(--is-white);
}

.footer-social a {
  color: var(--is-white);
  font-size: 1.125rem;
  text-decoration: none;
  transition: color 0.15s;
  border: 1px solid #3A3A3A;
  height: 34px;
  width: 34px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social a:hover {
  color: var(--is-primary);
}

.footer-brand .brand-primary {
  width: 260px;
}

.custom-center {
  text-align: center;
}

/* ============ MISSION VISION BOTTOM CARDS ============ */
.why-choose-card {
  border-radius: 18px;
  padding: 30px 28px;
  height: 100%;
}

.why-choose-card h3 {
  font-size: 24px;
  font-weight: 600;
}

.why-choose-card p {
  font-size: 0.875rem;
  color: var(--is-muted);
  margin-bottom: 1rem;
}

.feature-card--mission {
  background: #fdf3e1;
}

.feature-card--vision {
  background: #edeefb;
}

.why-choose-card .feature-icon {
  width: 92px;
  height: 92px;
  margin-bottom: 26px;
}

.mini-badge {
  display: inline-block;
  border: 1.5px solid var(--is-primary);
  color: var(--is-primary);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.why-choose-card .feature-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #111;
  margin-bottom: 14px;
}

.why-choose-card .feature-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #6f7585;
  margin: 0;
}

.promo-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
}

.promo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 25, 45, .15) 0%, rgba(20, 25, 45, .72) 100%);
}

.promo-card .promo-text {
  position: relative;
  z-index: 1;
  padding: 36px;
  color: #fff;
  font-size: clamp(24px, 2.7vw, 38px);
  font-weight: 700;
  line-height: 1.4;
}

/* ============================================================
   DIGITAL MARKETING SOLUTIONS
   ============================================================ */
.svc-card {
  background: var(--is-white);
  box-shadow: var(--is-shadow);
  border-radius: var(--is-radius);
  border: 1px solid #eceff4;
  padding: 34px 36px;
  height: 100%;
  transition: box-shadow .25s ease, transform .25s ease;
}

.svc-card:hover {
  box-shadow: 0 18px 38px rgba(28, 40, 75, 0.09);
  transform: translateY(-3px);
}

.svc-icon {
  font-size: 40px;
  color: var(--icon-blue);
  line-height: 1;
  margin-bottom: 26px;
}

.svc-icon img {
  width: 50px;
  height: 50px;
}

.svc-card h3 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--is-dark);
  margin: 10px 0 0 0;
}

.svc-card p {
  font-size: 14px;
  line-height: 1.62;
  color: var(--muted);
  margin: 12px 0 0 0;
}

/* ---------- CTA card ---------- */
.cta-card {
  border-radius: 16px;
  padding: 40px 40px 44px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(120deg, #2f6fd6 0%, #234fae 45%, #16306e 100%);
  box-shadow: 0 18px 40px rgba(25, 55, 130, 0.28);
}

.cta-card h3 {
  color: #fff;
  font-weight: 700;
  font-size: clamp(30px, 2vw, 42px);
  line-height: 1.12;
  margin-bottom: 34px;
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  color: #1c2233;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  border-radius: 10px;
  padding: 18px 26px;
}

.cta-btn:hover {
  color: #1c2233;
  filter: brightness(.97);
}

.hire-cta .bg-dark-section {
  border-radius: var(--is-radius-lg);
  padding: 2rem;
}

@media (max-width: 575.98px) {
  body {
    padding: 36px 12px 48px;
  }

  .svc-card {
    padding: 26px;
  }

  .svc-card h3 {
    font-size: 22px;
  }
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (min-width: 992px) and (max-width: 1200px) {
  .feature-card {
    height: 312px;
  }

  .cta-mid .img-fluid {
    width: 380px;
  }
}

@media(max-width:1200px) {

  .info-content {
    padding-left: 0;
    margin-top: 40px;
  }

  .contact-box span {
    font-size: 14px;
  }
}

@media (max-width: 991.98px) {
  :root {
    --section-py: 64px;
    --section-py-sm: 40px;
  }

  .hero-section {
    padding-top: 64px;
  }

  /* Services tabs go horizontal on tablet */
  .services-tabs {
    flex-direction: row !important;
    border-right: none;
    border-bottom: none;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .services-tabs .nav-link {
    border-right: 1px solid var(--is-border);
    border-bottom: none;
    border-top: none;
    font-size: 0.8125rem;
    padding: 0.75rem 1rem;
    flex-shrink: 0;
  }

  .services-tabs .nav-link.active {
    border-right: 1px solid var(--is-border);
    border-bottom: none;
    border-right: none;
  }

  .services-tab-content {
    padding: 1.75rem 0;
  }

  #servicesTabs::after {
    display: none;
  }

  .navbar-cta {
    display: none;
  }

  .offer-card-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .offer-card-resp {
    width: 48%;
  }

  .offer-section .section-body {
    max-width: 100%;
  }

  .stats-section .col-align {
    text-align: center;
  }

  .insights-section .tabs-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100%;
  }

  .tabs-scroll::-webkit-scrollbar {
    display: none;
  }

  .insights-tabs {
    flex-wrap: nowrap !important;
    width: max-content;
    min-width: max-content;
  }

  .insights-tabs .nav-item {
    flex-shrink: 0;
  }

  .insights-tabs .nav-link {
    white-space: nowrap;
  }

  .insights-section .tabs-scroll {
    width: 100%;
  }

  .offer-img-wrap img {
    height: 227px;
    object-fit: cover;
    object-position: top;
  }

  .custom-center {
    text-align: left;
  }

  .section-heading h2 {
    font-size: 40px;
  }

  .tech-content {
    grid-template-columns: 1fr;
  }

  .tech-tabs {
    gap: 20px;
  }

  .tech-tabs .nav-item {
    flex: 0 0 220px;
  }

  .btn-primary {
    font-size: 14px;
  }

  .hire-badges-wrap {
    margin-top: 2rem;
  }
}

@media(max-width:768px) {

  .contact-wrapper {
    padding: 25px;
    border-radius: 25px;
  }

  .form-card {
    padding: 25px;
  }

  .social-section {
    flex-direction: column;
    gap: 20px;
  }

  .social-icons {
    flex-wrap: wrap;
  }

  .social-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

@media (max-width: 767.98px) {
  :root {
    --section-py: 48px;
  }

  .hero-title {
    font-size: 1.875rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .stat-item {
    padding: 1rem 0.5rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .offer-card--tall {
    min-height: 400px;
  }

  .footer-top {
    padding: 48px 0 32px;
  }

  .stats-row>div:nth-child(3) .stat-divider {
    border-left: none;
  }

  .section-heading h2 {
    font-size: 30px;
  }

  .section-heading p {
    font-size: 16px;
  }

  .tech-tabs {
    padding-bottom: 15px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .tech-tabs::-webkit-scrollbar {
    display: none;
  }

  .tech-tabs .nav-item {
    flex: 0 0 180px;
  }

  .tech-info h3 {
    font-size: 30px;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    padding-top: 48px;
  }

  .hero-title {
    font-size: 1.625rem;
  }

  .hero-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
    font-size: 14px;
  }

  .ticker-item {
    padding: 0 1.25rem;
    font-size: 0.8125rem;
  }

  .tech-tabs .nav-link {
    font-size: 0.8125rem;
    padding: 0.5rem 1rem;
  }

  .why-card--cta {
    padding: 1.25rem;
  }

  .offer-card-wrapper {
    display: block;
  }

  .offer-card-resp {
    width: 100%;
  }

  .faq-cta-block {
    display: block;
  }
}

/* ============================================================
   ACCESSIBILITY & MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {

  .ticker-track,
  .brand-track {
    animation: none !important;
  }

  .feature-card,
  .blog-card,
  .offer-card,
  .why-card,
  .hero-img-frame img,
  .blog-img-wrap img,
  .offer-img-wrap img {
    transition: none !important;
  }
}

:focus-visible {
  /* outline: 2px solid var(--is-primary); */
  outline-offset: 3px;
  border-radius: 4px;
}