:root {
  --bg: #02060f;
  --bg-2: #071225;
  --bg-3: #0b1730;
  --panel: #121f37;
  --panel-2: #1a2945;
  --panel-3: #223452;
  --border: rgba(129, 196, 255, 0.15);
  --border-strong: rgba(129, 196, 255, 0.28);
  --text: #f7fbff;
  --muted: #d6e8f9;
  --sky: #63c8ff;
  --sky-2: #8be1ff;
  --sky-3: #4da6ff;
  --blue: #597dff;
  --blue-2: #7aa1ff;
  --green: #8ed77b;
  --lime: #a8d45e;
  --orange: #ff9057;
  --pink: #d878b8;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  --hero-bg:
    radial-gradient(
      circle at 50% 0%,
      rgba(90, 184, 255, 0.2),
      rgba(0, 0, 0, 0) 42%
    ),
    linear-gradient(180deg, #0a1630 0%, #02060f 40%, #02060f 100%);
  --soft-grad: linear-gradient(90deg, #67cfff 0%, #6ab1ff 35%, #9ddcff 100%);
  --logo-main: linear-gradient(90deg, #ffffff 0%, #d8efff 100%);
  --logo-accent: linear-gradient(90deg, #48a7ff 0%, #7fdbff 45%, #ffffff 100%);
  --hero-title: linear-gradient(
    90deg,
    #67a8ff 0%,
    #72b6ff 20%,
    #8ec8ff 45%,
    #77d7ff 70%,
    #a0ebff 100%
  );
  --tab-grad: linear-gradient(135deg, #58c7ff 0%, #5e8dff 100%);
  --call-grad: linear-gradient(90deg, #7aaeff 0%, #d6e8ff 100%);
  --chat-grad: linear-gradient(90deg, #78df8b 0%, #59cc73 100%);
  --showcase-grad: linear-gradient(
    90deg,
    rgba(17, 28, 50, 0.98) 0%,
    rgba(17, 28, 50, 0.98) 45%,
    rgba(12, 23, 42, 0.98) 100%
  );
  --card-grad: linear-gradient(
    180deg,
    rgba(31, 46, 72, 0.96) 0%,
    rgba(23, 35, 56, 0.98) 100%
  );
  --faq-bg: #121a26;
  --footer: #071225;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.site-container {
  max-width: 1360px;
}

.top-header {
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 40px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1002;
}

.top-line-text {
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.top-center-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.top-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-socials a {
  font-size: 17px;
  color: #e6f7ff;
  transition: 0.25s ease;
}

.top-socials a:hover {
  color: #fff;
  transform: translateY(-1px);
}

.trusted-text {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.google-word span:nth-child(1) {
  color: #4285f4;
}
.google-word span:nth-child(2) {
  color: #db4437;
}
.google-word span:nth-child(3) {
  color: #f4b400;
}
.google-word span:nth-child(4) {
  color: #4285f4;
}
.google-word span:nth-child(5) {
  color: #0f9d58;
}
.google-word span:nth-child(6) {
  color: #db4437;
}

.top-right-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.top-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.top-phone i {
  color: var(--green);
}

.top-search {
  width: 180px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  outline: none;
  padding: 0 14px;
  font-size: 13px;
  color: #22344a;
  background: #eef7fd;
}

.main-navbar {
  background: rgba(0, 0, 0, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 1001;
  backdrop-filter: blur(12px);
}

.nav-row {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-logo {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  flex-shrink: 0;
}

.brand-logo::before {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: -8px;
  bottom: -8px;
  border-radius: 18px;
  background: radial-gradient(
    circle at center,
    rgba(99, 200, 255, 0.18),
    rgba(99, 200, 255, 0) 70%
  );
  opacity: 0.8;
  z-index: -1;
  animation: logoPulse 3.4s ease-in-out infinite;
}

.brand-word {
  display: block;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.brand-word-main {
  background: var(--logo-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.08);
}

.brand-word-accent {
  position: absolute;
  right: 0;
  top: 0;
  background: var(--logo-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 24px rgba(99, 200, 255, 0.2);
}

.brand-tag {
  display: block;
  margin-top: 6px;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.38em;
  color: #cbeeff;
  text-transform: uppercase;
}

.brand-logo-desktop {
  min-width: 290px;
  padding-right: 52px;
}

.brand-logo-desktop .brand-word-main {
  font-size: 30px;
}

.brand-logo-desktop .brand-word-accent {
  font-size: 30px;
}

.brand-logo-mobile {
  margin: 0 auto;
  min-width: 300px;
  padding-right: 48px;
  align-items: center;
}

.brand-logo-mobile .brand-word-main {
  font-size: 28px;
}

.brand-logo-mobile .brand-word-accent {
  font-size: 28px;
  right: 8px;
}

.brand-logo-mobile .brand-tag {
  text-align: center;
}

.brand-logo-footer {
  min-width: 290px;
  padding-right: 48px;
}

.brand-logo-footer .brand-word-main,
.brand-logo-footer .brand-word-accent {
  font-size: 28px;
}

.brand-logo-drawer {
  min-width: 300px;
  padding-right: 48px;
  align-items: center;
  margin: 28px auto 0;
}

.brand-logo-drawer .brand-word-main,
.brand-logo-drawer .brand-word-accent {
  font-size: 28px;
}

.desktop-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.desktop-nav > li {
  position: relative;
}

.desktop-nav > li > a {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 500;
  color: #f2f8ff;
  transition: 0.25s ease;
}

.desktop-nav > li > a i {
  font-size: 11px;
}

.desktop-nav > li > a:hover,
.desktop-nav > li > a.active {
  color: var(--orange);
}

.has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%) translateY(10px);
  width: min(1180px, calc(100vw - 40px));
  padding: 18px;
  border-radius: 0 0 22px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(4, 9, 18, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  z-index: 1005;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.mega-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mega-pill {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  background: linear-gradient(
    180deg,
    rgba(14, 20, 32, 0.78) 0%,
    rgba(6, 9, 16, 0.92) 100%
  );
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: 0.25s ease;
}

.mega-pill i {
  font-size: 20px;
}

.mega-pill i.bi-google {
  color: var(--orange);
}
.mega-pill i.bi-facebook,
.mega-pill i.bi-window-stack,
.mega-pill i.bi-phone,
.mega-pill i.bi-speedometer2,
.mega-pill i.bi-code-slash {
  color: var(--sky);
}
.mega-pill i.bi-search,
.mega-pill i.bi-bag {
  color: var(--green);
}
.mega-pill i.bi-megaphone,
.mega-pill i.bi-brush {
  color: #ff8cd4;
}

.mega-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 200, 255, 0.42);
  box-shadow: 0 16px 34px rgba(67, 167, 255, 0.12);
}

.emoji {
  font-size: 20px;
}

.mobile-topbar,
.mobile-logo-wrap,
.mobile-drawer,
.site-overlay {
  display: none;
}

.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--hero-bg);
  padding: 38px 0 28px;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.32;
}

.hero-section::before {
  width: 320px;
  height: 320px;
  top: -120px;
  left: -80px;
  background: rgba(74, 161, 255, 0.22);
}

.hero-section::after {
  width: 420px;
  height: 420px;
  top: -180px;
  right: -120px;
  background: rgba(122, 219, 255, 0.18);
}

.welcome-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(111, 207, 255, 0.68);
  background: rgba(18, 33, 60, 0.4);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: inset 0 0 18px rgba(124, 206, 255, 0.1);
  animation: floatY 3s ease-in-out infinite;
}

.welcome-pill i {
  color: var(--orange);
  font-size: 18px;
}

.hero-title {
  margin: 22px 0 10px;
  font-size: clamp(38px, 4.4vw, 72px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: var(--hero-title);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 58px);
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -0.04em;
  background: var(--hero-title);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  margin: 18px 0 0;
  font-size: clamp(18px, 1.8vw, 28px);
  color: #fff;
  font-weight: 500;
}

.hero-tool-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 24px 0 28px;
}

.tool-icon {
  font-size: 54px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.2));
  animation: bob 3.3s ease-in-out infinite;
}

.tool-icon:nth-child(2) {
  animation-delay: 0.25s;
}
.tool-icon:nth-child(3) {
  animation-delay: 0.45s;
}
.tool-icon:nth-child(4) {
  animation-delay: 0.65s;
}
.tool-icon:nth-child(5) {
  animation-delay: 0.85s;
}

.tool-icon.react {
  color: #7ed8ff;
}
.tool-icon.google {
  color: #8ab4f8;
}
.tool-icon.notes {
  color: #f4da4d;
}
.tool-icon.analytics {
  color: #e9a53d;
}
.tool-icon.adobe {
  color: #ff643d;
}

.service-tabs-wrap {
  margin-bottom: 28px;
}

.service-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.service-tab {
  min-width: 118px;
  min-height: 76px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  background: #25354f;
  color: #fff;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  transition: 0.25s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.service-tab i {
  font-size: 24px;
}

.service-tab:nth-child(1) i {
  color: var(--orange);
}
.service-tab:nth-child(2) i {
  color: var(--sky);
}
.service-tab:nth-child(3) i {
  color: #7f73ff;
}
.service-tab:nth-child(4) i {
  color: var(--green);
}
.service-tab:nth-child(5) i {
  color: #ff73b9;
}

.service-tab:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 200, 255, 0.34);
}

.service-tab.active {
  background: var(--tab-grad);
  box-shadow: 0 18px 34px rgba(88, 160, 255, 0.25);
}

.tab-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.tab-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.tab-dots span.active {
  width: 22px;
  border-radius: 999px;
  background: #5d9dff;
}

.service-showcase {
  display: none;
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px;
  border-radius: 20px;
  background: var(--showcase-grad);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
  animation: fadeUp 0.45s ease;
}

.service-showcase.active {
  display: block;
}

.service-showcase-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.service-showcase-head h3 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(22px, 1.8vw, 34px);
  font-weight: 700;
}

.service-showcase-head h3 i {
  font-size: 28px;
  color: var(--orange);
}

.view-all-btn {
  height: 42px;
  padding: 0 18px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #58c7ff 0%, #5b8fff 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(88, 160, 255, 0.22);
  transition: 0.25s ease;
}

.view-all-btn:hover {
  transform: translateY(-1px);
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 110px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: var(--card-grad);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 200, 255, 0.2);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.service-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 600;
}

.service-card-top i {
  font-size: 28px;
}

.service-card:nth-child(1) .service-card-top i {
  color: #6fa0ff;
}
.service-card:nth-child(2) .service-card-top i {
  color: #8be18a;
}
.service-card:nth-child(3) .service-card-top i {
  color: #ffd34f;
}
.service-card:nth-child(4) .service-card-top i {
  color: #ff7a6a;
}
.service-card:nth-child(5) .service-card-top i {
  color: #bc9cff;
}
.service-card:nth-child(6) .service-card-top i {
  color: #f89ac1;
}
.service-card:nth-child(7) .service-card-top i {
  color: #f4b159;
}
.service-card:nth-child(8) .service-card-top i {
  color: #77d9ff;
}

.service-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  color: #deeffc;
  font-size: 12px;
}

.service-card-bottom i {
  font-size: 20px;
  opacity: 0.78;
}

.tools-section {
  padding-top: 52px;
}

.section-title {
  margin: 0 0 22px;
  text-align: center;
  font-size: clamp(26px, 2.4vw, 46px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.section-title-accent {
  color: #7fcfff;
}

.section-title-gradient {
  background: var(--hero-title);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
  justify-items: center;
  margin-top: 20px;
}

.tool-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
}

.tool-logo {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 38px;
  transition: 0.25s ease;
}

.tool-card:hover .tool-logo {
  transform: translateY(-2px) scale(1.04);
}

.tool-logo.yoast {
  color: #9cd76b;
}
.tool-logo.canva {
  color: #7cbcff;
  font-size: 18px;
  font-style: italic;
  font-weight: 800;
}
.tool-logo.alexa {
  color: #5fb2ff;
}
.tool-logo.adobe {
  color: #ff744e;
}
.tool-logo.ahrefs {
  color: #4f85ff;
  font-size: 14px;
  font-weight: 800;
}
.tool-logo.capcut {
  color: #fff;
}
.tool-logo.clarity {
  color: #87b6ff;
}
.tool-logo.ps {
  color: #67b7ff;
  font-size: 20px;
  font-weight: 800;
}
.tool-logo.ai {
  color: #ffba57;
  font-size: 20px;
  font-weight: 800;
}
.tools-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-top: 20px;
}

.tools-scroll {
  display: flex;
  gap: 22px;
  animation: scroll 30s linear infinite;
  width: calc(200px * 20); /* Adjust based on number of items */
}

.tools-scroll .tool-card {
  flex-shrink: 0;
  width: 120px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.tools-marquee:hover .tools-scroll {
  animation-play-state: paused;
}

.tool-logo.react {
  color: #61dafb;
  font-size: 24px;
  font-weight: 800;
}

.tool-logo.node {
  color: #339933;
  font-size: 20px;
  font-weight: 800;
}

.tool-logo.python {
  color: #3776ab;
}

.tool-logo.mysql {
  color: #4479a1;
}

.tool-logo.aws {
  color: #ff9900;
  font-size: 20px;
  font-weight: 800;
}

.tool-logo.docker {
  color: #2496ed;
}

.tool-logo.git {
  color: #f05032;
}

.tool-logo.vscode {
  color: #007acc;
}

.tool-logo.mongodb {
  color: #47a248;
}

.tool-logo.typescript {
  color: #3178c6;
}

.blue-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4d8fff;
  margin: 18px auto 0;
  animation: pulseDot 2.4s ease-in-out infinite;
}

.contact-box {
  margin-top: 48px;
  overflow: hidden;
  border: 1px solid rgba(120, 155, 199, 0.24);
  border-radius: 20px;
  background: linear-gradient(
    90deg,
    #03060d 0%,
    #03060d 50%,
    #161b23 50%,
    #1a1f28 100%
  );
  box-shadow: var(--shadow);
}

.contact-form-pane,
.contact-info-pane {
  min-height: 370px;
  padding: 38px 30px 28px;
}

.contact-form-pane h3,
.contact-info-pane h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 800;
}

.contact-form-pane h3 {
  color: #86b9ff;
}

.contact-form-pane p {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.68;
  color: #eef6ff;
}

.contact-info-pane {
  background: rgba(255, 255, 255, 0.02);
  border-left: 1px solid rgba(120, 155, 199, 0.16);
}

.field-wrap {
  position: relative;
  margin-bottom: 16px;
}

.field-wrap i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
}

.field-wrap input,
.field-wrap select {
  width: 100%;
  height: 54px;
  border-radius: 9px;
  border: 1px solid rgba(120, 155, 199, 0.16);
  background: linear-gradient(90deg, #20293d 0%, #2b354c 100%);
  color: #e8f5ff;
  outline: none;
  padding: 0 16px 0 42px;
  font-size: 14px;
  font-weight: 500;
}

.field-wrap input::placeholder {
  color: #dce9f5;
}

.submit-btn {
  width: 100%;
  height: 56px;
  border: 0;
  border-radius: 10px;
  background: var(--tab-grad);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 18px 34px rgba(85, 160, 243, 0.16);
  transition: 0.25s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

#formMessage {
  margin-top: 16px;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.mini-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.mini-service {
  min-height: 64px;
  border: 1px solid rgba(120, 155, 199, 0.28);
  border-radius: 12px;
  background: linear-gradient(90deg, #232d40 0%, #1d2534 100%);
  display: flex;
  align-items: center;
  gap: 12px;
  /*padding:0 16px;*/
  /*font-size:14px;*/
  font-weight: 600;
  transition: 0.25s ease;

  width: 100%;
  font-size: 12px;
  padding: 10px;
}

.mini-service:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 200, 255, 0.3);
}

.mini-service i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(111, 207, 255, 0.14);
  color: #8bcfff;
  font-size: 15px;
}

.why-divider {
  margin: 24px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.why-divider + h3 {
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  justify-items: center;
}

.why-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  font-size: 14px;
  color: #eaf5ff;
}

.why-item i {
  color: #86db78;
}

.clients-section,
.services-section,
.industries-section,
.growth-section,
.testimonial-section,
.faq-section {
  padding-top: 52px;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 18px;
}

.client-item {
  height: 100%;
}

.client-card {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    180deg,
    rgba(19, 30, 49, 0.96) 0%,
    rgba(16, 24, 39, 0.98) 100%
  );
  display: flex;
  flex-direction: column;
  transition: 0.25s ease;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.client-card:hover {
  transform: translateY(-4px);
  border-color: rgba(127, 207, 255, 0.35);
  box-shadow: 0 22px 36px rgba(34, 80, 132, 0.28);
}

.client-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.client-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.client-card:hover .client-photo img {
  transform: scale(1.06);
}

.client-content {
  width: 100%;
  padding: 16px 16px 18px;
  text-align: left;
}

.client-name {
  margin: 0 0 8px;
  color: #a7dd7f;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}

.client-intro {
  margin: 0;
  color: #e2f0fb;
  font-size: 13px;
  line-height: 1.65;
}

.service-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.feature-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: #151a22;
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-image {
  height: 260px;
  background-size: cover;
  background-position: center;
}

.feature-content {
  padding: 18px 24px 24px;
  text-align: center;
}

.feature-content h3 {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 22px;
  font-weight: 700;
}

.feature-content p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.7;
  color: #f0f7ff;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lime);
  font-size: 14px;
  font-weight: 500;
}

.feature-actions,
.feature-actions-top {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.feature-actions {
  margin-top: 16px;
}

.feature-actions-top {
  margin-bottom: 24px;
}

.action-pill {
  min-width: 168px;
  height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  transition: 0.25s ease;
}

.action-pill:hover {
  transform: translateY(-2px);
}

.action-pill-call {
  background: var(--call-grad);
}

.action-pill-chat {
  background: var(--chat-grad);
}

.section-intro {
  max-width: 1260px;
  margin: 0 auto 24px;
  text-align: center;
  color: #f0f7ff;
  font-size: 14px;
  line-height: 1.8;
}

.industry-grid-main {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 24px;
}

.industry-box {
  min-height: 174px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: #151a22;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 18px 12px;
  text-align: center;
  transition: 0.25s ease;
}

.industry-box:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
}

.industry-icon {
  width: 62px;
  height: 62px;
  border-radius: 15px;
  background: #273040;
  display: grid;
  place-items: center;
  font-size: 30px;
  margin-bottom: 16px;
}

.industry-box h4 {
  margin: 0;
  color: var(--lime);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.growth-grid-main {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 26px;
}

.growth-box {
  text-align: center;
}

.growth-box i {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 50px;
}

.growth-box:nth-child(1) i {
  color: #a1d9ff;
}
.growth-box:nth-child(2) i {
  color: #7ddf84;
}
.growth-box:nth-child(3) i {
  color: #ffd95f;
}
.growth-box:nth-child(4) i {
  color: #ffbf69;
}

.growth-box h3 {
  margin: 0;
  color: var(--lime);
  font-size: 22px;
  font-weight: 700;
}

.accreditation-section {
  margin-top: 40px;
}

.accreditation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.accredit-card {
  min-height: 150px;
  border-radius: 6px;
  background: #eef5fb;
  color: #204564;
  display: grid;
  place-items: center;
  padding: 12px;
  text-align: center;
}

.accredit-card strong {
  display: block;
  font-size: 26px;
  font-weight: 900;
}

.accredit-card span {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
}

.testimonial-carousel {
  margin-top: 14px;
}

.testimonial-card {
  position: relative;
  max-width: 790px;
  min-height: 360px;
  margin: 0 auto;
  padding: 34px 30px 30px;
  border: 1px solid rgba(111, 207, 255, 0.18);
  border-radius: 24px;
  background: linear-gradient(
    90deg,
    rgba(8, 20, 36, 0.96) 0%,
    rgba(10, 25, 50, 0.98) 100%
  );
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-mark {
  display: inline-block;
  margin-bottom: 14px;
  color: #8fd6ff;
  font-size: 46px;
  line-height: 1;
}

.testimonial-text {
  margin: 0 0 18px;
  min-height: 148px;
  color: #fff;
  font-size: 14px;
  line-height: 1.9;
}

.stars {
  display: flex;
  gap: 4px;
  color: #ffd65b;
  font-size: 16px;
  margin-bottom: 16px;
}

.testimonial-card h4 {
  margin: 0 0 2px;
  font-size: 16px;
  font-weight: 800;
}

.designation {
  display: block;
  color: #d7eaf8;
  font-size: 12px;
}

.google-badge {
  position: absolute;
  right: 28px;
  bottom: 24px;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(45deg, #4285f4, #34a853, #fbbc05, #ea4335);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  border: 0;
  margin: 0 6px;
}

.carousel-indicators .active {
  background: #63c8ff;
}

.carousel-control-prev,
.carousel-control-next {
  width: 52px;
  height: 52px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(111, 207, 255, 0.08);
  border-radius: 50%;
  opacity: 1;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.faq-accordion {
  max-width: 1180px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  background: var(--faq-bg) !important;
}

.faq-btn {
  background: transparent !important;
  color: #fff !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 20px 24px !important;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.faq-btn::after {
  margin-left: auto;
  filter: brightness(1.8);
}

.faq-body {
  color: #e3f4ff;
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
}

.discover-title {
  margin: 36px 0 14px;
  text-align: center;
  color: var(--lime);
  font-size: 20px;
  font-weight: 800;
}

.discover-links {
  max-width: 1320px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  font-size: 14px;
  line-height: 1.9;
}

.footer-section {
  margin-top: 24px;
  padding: 36px 0 118px;
  background: var(--footer);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.7fr 1fr 1.2fr;
  gap: 32px;
}

.footer-col h4 {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 800;
}

.footer-copy {
  max-width: 330px;
  margin: 18px 0 18px;
  color: #fff;
  font-size: 13px;
  line-height: 1.8;
}

.footer-socials {
  display: flex;
  gap: 18px;
}

.footer-socials a {
  font-size: 28px;
}

.footer-socials .bi-facebook {
  color: #5fa4ff;
}
.footer-socials .bi-instagram {
  color: #8fd8ff;
}
.footer-socials .bi-linkedin {
  color: #70b0ff;
}
.footer-socials .bi-whatsapp {
  color: #68d889;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}

.footer-links-single {
  grid-template-columns: 1fr;
}

.footer-links a {
  color: #fff;
  font-size: 13px;
  line-height: 1.5;
}

.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #fff;
  font-size: 13px;
  line-height: 1.65;
}

.footer-contact i {
  color: #7fd1ff;
  font-size: 18px;
  margin-top: 2px;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
  font-size: 13px;
  color: #fff;
}

.footer-bottom span {
  color: #7fd1ff;
}

.footer-bottom-link {
  margin-top: 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.sticky-buttons {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 1100;
  display: flex;
  align-items: center;
  gap: 18px;
}

.sticky-btn {
  min-width: 162px;
  height: 54px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26);
}

.sticky-call {
  background: var(--call-grad);
}

.sticky-chat {
  background: var(--chat-grad);
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseDot {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.35);
    opacity: 1;
  }
}

@keyframes logoPulse {
  0%,
  100% {
    opacity: 0.65;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@media (max-width: 1399.98px) {
  .mega-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .accreditation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1199.98px) {
  .service-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-grid-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-feature-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .top-search {
    width: 140px;
  }
}

@media (max-width: 991.98px) {
  .desktop-nav > li > a {
    padding: 0 12px;
    font-size: 13px;
  }

  .brand-logo-desktop {
    min-width: 254px;
    padding-right: 46px;
  }

  .brand-logo-desktop .brand-word-main,
  .brand-logo-desktop .brand-word-accent {
    font-size: 26px;
  }

  .service-card-grid,
  .mini-service-grid,
  .why-grid,
  .growth-grid-main,
  .client-grid,
  .industry-grid-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-pane,
  .contact-info-pane {
    min-height: auto;
  }
}

@media (max-width: 767.98px) {
  .top-header,
  .main-navbar {
    display: none !important;
  }

  .mobile-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 20px;
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1200;
  }

  .mobile-topbar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #61d986;
    font-size: 28px;
    flex-shrink: 0;
  }

  .mobile-topbar-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    flex: 1;
    justify-content: center;
  }

  .mobile-topbar-phone i {
    color: #ff8d80;
    font-size: 20px;
  }

  .mobile-nav-toggle,
  .mobile-nav-close {
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
  }

  .mobile-logo-wrap {
    display: block;
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 0 18px;
    text-align: center;
  }

  .site-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1201;
    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
  }

  .site-overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .mobile-drawer {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: min(360px, 92vw);
    height: 100vh;
    background: #050c17;
    z-index: 1202;
    transition: 0.3s ease;
    overflow-y: auto;
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.45);
  }

  .mobile-drawer.active {
    right: 0;
  }

  .mobile-drawer-head {
    min-height: 72px;
    padding: 0 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .drawer-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
  }

  .drawer-phone i {
    color: #ff8d80;
  }

  .mobile-drawer-body {
    padding: 18px 20px 32px;
  }

  .mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-nav-list > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .mobile-nav-list > li > a,
  .mobile-dropdown-toggle {
    width: 100%;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
  }

  .mobile-dropdown-toggle i {
    font-size: 14px;
    transition: 0.25s ease;
  }

  .mobile-dropdown.active .mobile-dropdown-toggle i {
    transform: rotate(180deg);
  }

  .mobile-dropdown-menu {
    display: none;
    padding: 0 0 10px 0;
  }

  .mobile-dropdown-menu a {
    display: block;
    padding: 8px 0 8px 12px;
    color: #cde7fb;
    font-size: 13px;
  }

  .brand-logo-drawer {
    margin-top: 26px;
  }

  .hero-section {
    padding: 28px 0 24px;
  }

  .welcome-pill {
    padding: 11px 18px;
    font-size: 11px;
  }

  .hero-title {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    font-size: 32px;
  }

  .hero-subtitle {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    font-size: 24px;
  }

  .hero-copy {
    font-size: 16px;
    margin-top: 14px;
  }

  .hero-tool-icons {
    gap: 24px;
    margin-top: 22px;
    margin-bottom: 24px;
  }

  .tool-icon {
    font-size: 44px;
  }

  .service-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .service-tabs::-webkit-scrollbar {
    display: none;
  }

  .service-tab {
    min-width: 168px;
    min-height: 66px;
    flex: 0 0 auto;
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
    padding: 0 14px;
    font-size: 12px;
  }

  .service-showcase {
    padding: 18px 14px;
    border-radius: 18px;
  }

  .service-showcase-head {
    margin-bottom: 16px;
  }

  .service-showcase-head h3 {
    font-size: 18px;
  }

  .view-all-btn {
    height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }

  .service-card-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .tools-grid,
  .client-grid,
  .mini-service-grid,
  .industry-grid-main,
  .growth-grid-main,
  .accreditation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .service-card {
    min-height: 96px;
    padding: 16px;
  }

  .service-card-top {
    font-size: 13px;
  }

  .service-card-top i {
    font-size: 24px;
  }

  .tools-section,
  .clients-section,
  .services-section,
  .industries-section,
  .growth-section,
  .testimonial-section,
  .faq-section {
    padding-top: 44px;
  }

  .section-title {
    font-size: 24px;
  }
}

@media (max-width: 767.98px) {
.contact-box {
  margin-top: 40px;
}

.contact-form-pane,
.contact-info-pane {
  padding: 20px 16px;
}

.contact-form-pane h3,
.contact-info-pane h3 {
  font-size: 18px;
}

.contact-form-pane p,
.field-wrap input,
.field-wrap select,
.mini-service,
.why-item,
.section-intro,
.feature-content p,
.faq-body,
.discover-links,
.footer-copy,
.footer-links a,
.footer-contact li {
  font-size: 12px;
}

.field-wrap input,
.field-wrap select {
  height: 50px;
}

.submit-btn {
  height: 52px;
  font-size: 14px;
}

.client-name {
  font-size: 14px;
}

.client-intro {
  font-size: 11px;
}

.feature-image {
  height: 220px;
}

.feature-content {
  padding: 16px 18px 20px;
}

.feature-content h3 {
  font-size: 18px;
}

.feature-link {
  font-size: 13px;
}

.action-pill {
  min-width: 150px;
  height: 48px;
  font-size: 14px;
}

.industry-box {
  min-height: 154px;
}

.industry-box h4 {
  font-size: 15px;
}

.growth-box h3 {
  font-size: 18px;
}

.testimonial-card {
  min-height: 320px;
  padding: 28px 22px 26px;
}

.testimonial-text {
  min-height: 150px;
  font-size: 13px;
}

.quote-mark {
  font-size: 40px;
}

.carousel-control-prev,
.carousel-control-next {
  display: none;
}

.faq-btn {
  padding: 18px 20px !important;
  font-size: 12px;
  text-align: left;
}

.discover-title {
  font-size: 18px;
}

.footer-section {
  padding-bottom: 108px;
}

.sticky-buttons {
  width: calc(100% - 24px);
  gap: 12px;
}

.sticky-btn {
  min-width: 0;
  flex: 1;
  height: 50px;
  font-size: 14px;
}
}
