:root {
  --primary: #0f6fff;
  --primary-2: #1d4ed8;
  --primary-3: #60a5fa;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg-soft: #f8fafc;
  --surface: #ffffff;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.06);
  --shadow-mid: 0 18px 40px rgba(15, 23, 42, 0.1);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  line-height: 1.7;
  letter-spacing: .1px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 1200px;
  max-width: calc(100% - 30px);
  margin: 0 auto;
}

.container-fluid {
  width: 100%;
  padding: 0;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}

[class*="col-"] {
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
}

.col-lg-2 { width: 16.666667%; }
.col-lg-3, .col-md-3 { width: 25%; }
.col-lg-4, .col-md-4 { width: 33.333333%; }
.col-lg-5 { width: 41.666667%; }
.col-lg-6, .col-md-6, .col-6 { width: 50%; }
.col-lg-8 { width: 66.666667%; }
.col-lg-12, .col-md-12 { width: 100%; }

.text-center { text-align: center; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.m-auto, .margin-auto { margin-inline: auto; }
.p-0, .m-0 { padding: 0; margin: 0; }

.pt-20 { padding-top: 20px; }
.pt-45 { padding-top: 45px; }
.pt-50 { padding-top: 50px; }
.pt-80 { padding-top: 80px; }
.pt-100 { padding-top: 100px; }
.pb-70 { padding-bottom: 70px; }
.ptb-30 { padding-top: 30px; padding-bottom: 30px; }
.ptb-70 { padding-top: 70px; padding-bottom: 70px; }
.ptb-100 { padding-top: 100px; padding-bottom: 100px; }

.navbar-area {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: var(--shadow-soft);
  overflow: visible;
}

.navbar-area.is-scrolled {
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
  border-bottom-color: rgba(203, 213, 225, 0.95);
}

.mobile-nav {
  display: none;
}

.navbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand img, .mobile-nav img {
  height: 48px;
  width: auto;
}

.collapse.navbar-collapse {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
  align-items: center;
}

.navbar-nav > .nav-item {
  position: relative;
  padding-bottom: 0;
  margin-bottom: 0;
}

.navbar-nav > .nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  color: #111827;
  font-weight: 500;
  padding: 9px 12px;
  border-radius: 8px;
  transition: color .2s, background-color .2s, transform .2s ease;
  line-height: 1.2;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: #eff6ff;
  transform: translateY(-1px);
}

.dropdown-menu {
  display: block;
  list-style: none;
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  min-width: 210px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 0;
  box-shadow: var(--shadow-mid);
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.dropdown-menu .nav-item {
  padding: 0 14px;
  margin: 0;
}

.dropdown-menu .nav-link {
  display: block;
  padding: 9px 8px;
  font-weight: 500;
  border-radius: 6px;
}

.dropdown-menu .nav-link:hover {
  background: #f8fafc;
  color: var(--primary);
}

.navbar-nav > .nav-item:hover > .dropdown-menu,
.navbar-nav > .nav-item:focus-within > .dropdown-menu,
.navbar-nav > .nav-item.open-desktop > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.default-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(100deg, var(--primary), var(--primary-2));
  color: #fff;
  font-weight: 600;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: transform .24s ease, box-shadow .24s ease, filter .24s ease;
}

.nav-side .default-btn {
  padding: 8px 16px;
  font-size: 14px;
}
.menu-toggle {
  padding: 8px 14px;
  font-size: 14px;
}

.inner-banner, .banner-slider-area {
  background: linear-gradient(180deg, #f9fbff 0, #fff 100%);
}

.banner-slider-area {
  position: relative;
  padding: 92px 0 72px;
  min-height: 560px;
  overflow: hidden;
}

.video1box {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.video1box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video1boxbg {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at 25% 20%, rgba(31, 106, 227, 0.22), transparent 44%), linear-gradient(180deg, rgba(4, 12, 26, 0.38), rgba(4, 12, 26, 0.56));
}

.d-table {
  width: 100%;
  display: table;
}

.d-table-cell {
  display: table-cell;
  vertical-align: middle;
}

.banner-item {
  padding: 12px 0;
}

.banner-item-content {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 3;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 10px 8px;
  backdrop-filter: none;
  text-shadow: 0 2px 14px rgba(2, 6, 23, 0.35);
}

.banner-item-content > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .4px;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.banner-item-content > span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #60a5fa;
}

.banner-item-content h1 {
  margin: 10px 0 16px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.12;
  color: #fff;
  font-weight: 800;
  letter-spacing: .4px;
  background: linear-gradient(92deg, #f8fbff 10%, #b7dcff 48%, #ffffff 88%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner-item-content p {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.95);
}

.banner-item-content p em {
  margin: 0;
  display: inline-flex;
  align-items: center;
  font-style: normal;
  font-size: 13px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.banner-btn {
  margin-top: 18px;
}

.banner-btn .default-btn {
  min-height: 46px;
  padding: 10px 22px;
  box-shadow: 0 10px 24px rgba(15, 111, 255, 0.38);
}

.banner-btn .default-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 16px 30px rgba(15, 111, 255, 0.48);
}

.banner-btn .default-btn i {
  transition: transform .2s ease;
}

.banner-btn .default-btn:hover i {
  transform: translateX(2px);
}

.inner-banner {
  padding: 50px 0 36px;
}

.inner-title h3 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 38px);
}

.inner-title ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
  justify-content: center;
  color: var(--muted);
}

.section-title {
  margin-bottom: 32px;
}

.section-title h1, .section-title h2, .section-title h3 {
  margin: 0 0 12px;
}

.section-title h2 {
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: .2px;
}

.section-title p {
  margin: 0;
  color: var(--muted);
  max-width: 760px;
  margin-inline: auto;
}

.services-area,
.blog-area,
.blog-areaindex,
.case-study-area {
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.72), rgba(255, 255, 255, 0));
}

.about-content-card, .blog-card, .single-content, .choose-content, .case-study-item, .services-card, .side-bar-area, .contact-form, .contact-info {
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 20px;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.blog-card:hover,
.case-study-item:hover,
.services-card:hover {
  transform: translateY(-4px);
  border-color: #dbeafe;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.11);
}

.case-study-item img, .blog-card img, .brand-item img, .about-img img {
  border-radius: 10px;
}

.blog-card .content, .case-study-item .content {
  padding-top: 14px;
}

.services-card h3,
.case-study-item h3,
.blog-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.services-card p,
.case-study-item p,
.blog-card p,
.single-content p {
  color: #475569;
}

.form-control, .ms-input, textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 11px 13px;
  outline: none;
  background: #f8fbff;
  transition: all .2s ease;
}

.form-control:focus, .ms-input:focus, textarea:focus {
  border-color: #60a5fa;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.13);
}

.contact-form .default-btn,
.message-body .default-btn {
  min-height: 44px;
  padding-inline: 20px;
  box-shadow: 0 10px 26px rgba(15, 111, 255, 0.26);
}

.pagination-area {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.pagination-area li a {
  display: inline-block;
  padding: 7px 11px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #fff;
  transition: all .2s ease;
}

.pagination-area li a:hover {
  border-color: #93c5fd;
  color: var(--primary);
  background: #eff6ff;
}

.thisclass a {
  color: #fff !important;
  background: var(--primary) !important;
  border-color: var(--primary) !important;
}

.owl-carousel {
  display: grid;
  gap: 18px;
}

.banner-slider.owl-carousel {
  display: block;
  position: relative;
  z-index: 3;
}

.banner-slider.owl-carousel > * {
  display: none;
}

.banner-slider.owl-carousel > :first-child {
  display: block;
}

.case-study-slider.owl-carousel {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brand-slider.owl-carousel {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 14px;
}

.clients-slider.owl-carousel {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.technology-area .brand-area {
  padding-top: 22px;
}

.brand-item {
  min-height: 88px;
  border: 1px solid #edf2f7;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.brand-item img {
  max-height: 54px;
  width: auto;
}

.counter-shape {
  display: none !important;
}

.footer-area {
  background: linear-gradient(160deg, #0b1224, #0f1b36 54%, #132140);
  color: #dbeafe;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.footer-area a {
  color: #bfdbfe;
}

.friendlinks {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 0 22px;
}

.friendlinks a {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 14px;
  background: rgba(191, 219, 254, 0.18);
  color: #dbeafe;
  border: 1px solid rgba(191, 219, 254, 0.34);
}

.copy-right-text p {
  margin: 7px 0;
  word-break: break-word;
}

.go-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--primary), var(--primary-2));
  color: #fff;
  display: none;
  box-shadow: 0 10px 24px rgba(15, 111, 255, 0.35);
}

.go-top.show {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.preloader, .spinner, .inner-shape, .service-shape {
  display: none !important;
}

.side-nav-responsive {
  display: none !important;
}

.bx, [class*="flaticon-"] {
  font-style: normal;
}

.bx-chevron-right::before, .bx-right-arrow-alt::before { content: "→"; }
.bx-chevrons-right::before, .bx-caret-down::before { content: "›"; }
.bxs-check-circle::before { content: "✓"; color: #16a34a; }

@media (max-width: 991px) {
  .container {
    max-width: calc(100% - 24px);
  }

  .row {
    margin-left: -8px;
    margin-right: -8px;
  }

  [class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
  }

  .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-8, .col-md-3, .col-md-4, .col-md-6 {
    width: 100%;
  }

  .mobile-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    padding: 0 12px;
    background: #fff;
  }

  .main-nav {
    display: none;
    padding: 0 12px 12px;
    background: #fff;
    border-top: 1px solid #f1f5f9;
    box-shadow: 0 18px 28px rgba(15, 23, 42, 0.08);
  }

  .navbar-area.open .main-nav {
    display: block;
  }

  .navbar {
    min-height: auto;
  }

  .collapse.navbar-collapse {
    display: block;
  }

  .navbar-brand {
    display: none;
  }

  .navbar-nav {
    display: block;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .navbar-nav > .nav-item::after {
    display: none;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 12px 0;
    border-radius: 0;
  }

  .dropdown-menu {
    position: static;
    display: none;
    border: 0;
    box-shadow: none;
    margin: 0 0 8px;
    padding: 0 0 0 12px;
  }

  .nav-item.open > .dropdown-menu {
    display: block;
  }

  .banner-slider-area {
    min-height: 360px;
    padding: 42px 0 18px;
  }

  .inner-banner {
    padding-top: 32px;
    padding-bottom: 24px;
  }

  .pt-100, .ptb-100 {
    padding-top: 60px;
  }

  .pb-70, .ptb-70 {
    padding-bottom: 40px;
  }

  .owl-carousel > * {
    min-width: 100%;
  }

  .case-study-slider.owl-carousel,
  .clients-slider.owl-carousel {
    grid-template-columns: 1fr;
  }

  .brand-slider.owl-carousel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .brand-item {
    min-height: 72px;
    padding: 10px;
  }

  .brand-item img {
    max-height: 42px;
  }


  .banner-item-content {
    padding: 4px 2px;
  }

  .banner-item-content h1 {
    font-size: clamp(24px, 7.2vw, 34px);
    margin: 8px 0 10px;
    letter-spacing: .2px;
  }

  .banner-item-content p {
    line-height: 1.55;
    gap: 6px;
  }

  .banner-item-content p em {
    margin: 0;
    font-size: 12px;
    padding: 5px 10px;
  }

  .banner-item-content > span {
    font-size: 12px;
    padding: 5px 10px;
  }

  .banner-btn .default-btn {
    min-height: 40px;
    padding: 8px 14px;
    font-size: 13px;
  }

  .contact-form,
  .contact-info {
    padding: 16px;
    border-radius: 12px;
  }
}
