:root {
  --primary: #0057ff;
  --primary-dark: #0b0e1e;
  --primary-soft: #f4f6fa;
  --primary-gradient: linear-gradient(135deg, #0b0e1e, #15203a);
  --text-main: #222222;
  --text-muted: #666666;
  --border-soft: #e2e4ec;
  --white: #ffffff;
  --shadow-soft: 0 18px 45px rgba(11, 14, 30, 0.1);
  --radius-card: 14px;
  --radius-pill: 999px;
  --max-width: 1200px;

  /* Theme tokens */
  --page-bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #f8f9fc;
  --surface-3: #f4f6fa;
  --border: #e2e4ec;
  --text: #222222;
  --text-2: #666666;
}

/* Dark theme overrides */
html[data-theme="dark"] {
  --page-bg: #0b1020;
  --surface: #0f172a;
  --surface-2: #0b1226;
  --surface-3: #0b1226;
  --border: rgba(148, 163, 235, 0.18);
  --text: #e5e7eb;
  --text-2: rgba(229, 231, 235, 0.72);

  /* Keep brand consistent */
  --primary-soft: #0b1226;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.35);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}




html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background-color: var(--page-bg);
  line-height: 1.6;
  padding-top: 80px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  /* backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06); */
}


header::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(10px);
  z-index: -1;
}

html[data-theme="dark"] header {
  background: rgba(15, 23, 42, 0.9);
  box-shadow: 0 1px 0 rgba(148, 163, 235, 0.12);
}


h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--primary-dark);
}

html[data-theme="dark"] h3 {
  color: #e5e7eb;
}




.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.site-logo {
  height: 79px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  display: block;
}

.site-logo-footer {
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary-dark);
}

html[data-theme="dark"] .logo {
  color: #e5e7eb;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}


.nav-toggle {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(0, 87, 255, 0.35);
  background: transparent;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}



.nav-links-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  color: var(--text-2);
}

.nav-links a {
  position: relative;
  padding-bottom: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
}

.nav-links a.active {
  color: var(--primary-dark);
}

html[data-theme="dark"] .nav-links a.active {
  color: #e5e7eb;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(0, 87, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 45px rgba(0, 87, 255, 0.45);
}

.btn-primary.btn-no-shadow {
  box-shadow: 0 5px 12px rgba(0, 87, 255, 0.35);
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(205, 208, 216, 0.3);
}

.btn-outline:hover {
  background: rgba(0, 87, 255, 0.08);
}

/* HERO */
.hero {
  background: var(--primary-gradient);
  color: #e5ecff;
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}




.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(0, 87, 255, 0.5), transparent 55%);
  opacity: 0.7;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 255, 0.3);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  color: #cbd5ff;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #34d399;
}

.hero-title {
  font-size: 40px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 18px;
  color: #f9fbff;
}

.hero-title span {
  color: #7fb5ff;
}

.hero-subtitle {
  font-size: 16px;
  max-width: 480px;
  color: #ced7ff;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  gap: 18px;
  font-size: 12px;
  color: #a9b7ff;
  flex-wrap: wrap;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #4b5fd6;
}

/* hero right */
.hero-right {
  position: relative;
  min-height: 320px;
}

.hero-image {
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}


.hero-panel {
  background: rgba(17, 24, 39, 0.94);
  border-radius: 22px;
  padding: 22px 22px 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 235, 0.2);
}

.hero-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.hero-panel-title {
  font-size: 13px;
  color: #e5ecff;
  font-weight: 500;
}

.hero-panel-pill {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.2);
  color: #bfdbfe;
}

.hero-panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.chip {
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 235, 0.6);
  color: #c7d2fe;
  background: rgba(15, 23, 42, 0.7);
}

.hero-panel-footer {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #94a3b8;
}

.floating-badge {
  position: absolute;
  bottom: -4px;
  right: 12px;
  background: #0f172a;
  color: #e5e7eb;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 11px;
  border: 1px solid rgba(148, 163, 235, 0.3);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.6);
}

.floating-badge span {
  color: #4ade80;
  font-weight: 600;
}

/* PAGE HERO (for inner pages) */
.page-hero {
  background: var(--primary-gradient);
  color: #e5ecff;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(0, 87, 255, 0.45), transparent 55%);
  opacity: 0.75;
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.breadcrumbs {
  font-size: 12px;
  color: #a9b7ff;
}

.page-title {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 700;
  color: #f9fbff;
}

.page-subtitle {
  font-size: 14px;
  max-width: 680px;
  color: #ced7ff;
}

/* GENERIC SECTIONS */
section {
  padding: 70px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-kicker {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 600;
}

.section-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.section-subtitle {
  font-size: 14px;
  color: var(--text-2);
  max-width: 520px;
  margin: 0 auto;
}

/* Dark theme: ensure headings that use --primary-dark remain readable */
html[data-theme="dark"] .section-title,
html[data-theme="dark"] .about-content h2,
html[data-theme="dark"] .stat-value,
html[data-theme="dark"] .service-title,
html[data-theme="dark"] .hire-role,
html[data-theme="dark"] .tech-card-title,
html[data-theme="dark"] .contact-value {
  color: #e5e7eb;
}

.grid {
  display: grid;
  gap: 24px;
}

/* ABOUT */
.about {
  background: var(--surface-2);
}

.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.about-image {
  background: radial-gradient(circle at top left, rgba(0, 87, 255, 0.22), transparent 60%), #111827;
  border-radius: 24px;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

.about-image::after {
  content: "Your Product UI Here";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #9ca3af;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-image-img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
}

.about-content h2 {
  font-size: 26px;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.about-content p {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 22px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stat-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 12px 10px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.stat-value {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 2px;
}

.stat-label {
  font-size: 11px;
  color: var(--text-2);
}

/* SERVICE CARDS */
.cards-5 {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 18px 16px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.service-card h3 {
  font-size: 18px;
}



.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.13);
}

.service-icon {
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #18185e;
  width: 36px;
  height: 36px;
  background: rgba(0, 87, 255, 0.08);
  display: flex;
  font-size: 24px;
  margin-bottom: 4px;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.service-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-dark);
}

.service-text {
  font-size: 12px;
  color: var(--text-2);
}

.service-link {
  margin-top: auto;
  font-size: 12px;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.digital-marketing {
  background: var(--surface-3);
}

/* HIRE DEVELOPERS */
.hire-section {
  background: var(--page-bg);
}

.hire-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.hire-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 14px 12px 16px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.03);
}

.hire-card h3 {
  font-size: 18px;
}



/* hire card specific css for brand colors */
/* Base (keeps shape & sizing consistent) */
/* make the cards colored */
.hire-card .avatar {
  background: rgba(0, 0, 0, 0.04);
  color: currentColor;
}

.hire-card .fa-apple {
  color: #000000;
}

html[data-theme="dark"] .hire-card .fa-apple {
  color: #ffffff;
}

.hire-card .fa-android {
  color: #3DDC84;
}

.hire-card .fa-php {
  color: #777BB4;
}

.hire-card .fa-node-js {
  color: #339933;
}

.hire-card .fa-shopify {
  color: #7AB55C;
}

.hire-card .fa-angular {
  color: #DD0031;
}

.hire-card .fa-react {
  color: #61DAFB;
}

.hire-card .fa-magento {
  color: #EE672F;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #e0ecff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 600;
  color: #1d4ed8;
}

.hire-role {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 999px;
  background: #eff3ff;
  color: #1d4ed8;
}

.hire-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--text-2);
}

.btn-mini {
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  /* box-shadow: 0 12px 30px rgba(0, 87, 255, 0.35); */
  cursor: pointer;
  transition: all 0.14s ease;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 87, 255, 0.35);
}

.btn-mini:hover {
  box-shadow: 0 12px 30px rgba(0, 87, 255, 0.35);
}

/* TECH STACK */
.tech-section {
  background: var(--surface-2);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.tech-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 16px 14px 18px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.tech-card-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.tech-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-pill {
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #f3f4ff;
  color: #1f2937;
}


/* tech logos */
.tech-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 48px 32px;
  align-items: center;
  justify-items: center;
  margin-top: 48px;
}

/* normalize all logos */
.tech-logo-grid .iconify {
  width: 150px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(0%);
  opacity: 0.9;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* hover polish */
.tech-logo-grid .iconify:hover {
  transform: translateY(-4px);
  opacity: 1;
}

/* responsive */
@media (max-width: 1024px) {
  .tech-logo-grid {
    grid-template-columns: repeat(4, minmax(120px, 1fr));
  }
}

@media (max-width: 768px) {
  .tech-logo-grid {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 36px 24px;
  }
}

@media (max-width: 480px) {
  .tech-logo-grid {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }
}



/* PORTFOLIO */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.case-card {
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.case-image {
  background: #111827;
  height: 150px;
}

.case-body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.case-title {
  font-size: 14px;
  font-weight: 600;
}

.case-meta {
  font-size: 11px;
  color: var(--text-2);
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
  margin-bottom: 6px;
}

.case-tag {
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 999px;
  background: #eef2ff;
  color: #374151;
}

.case-link {
  font-size: 12px;
  color: var(--primary);
  margin-top: auto;
}

/* TESTIMONIALS */
.testimonials {
  background: var(--surface-3);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: var(--surface);
  border-radius: 18px;
  padding: 16px 14px 18px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #dbeafe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  color: #1d4ed8;
}

.testimonial-name {
  font-size: 13px;
  font-weight: 600;
}

.testimonial-role {
  font-size: 11px;
  color: var(--text-2);
}

.stars {
  font-size: 11px;
  color: #fbbf24;
}

/* WHY CHOOSE US */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.why-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 16px 14px 18px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
  font-size: 13px;
}

.why-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(0, 87, 255, 0.06);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--primary);
}

.why-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}


/* INLINE CTA SECTION */
.cta-inline {
  padding: 70px 0;
}

.cta-inline-content h3 {
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.cta-inline-content p {
  font-size: 18px;
  color: #d1d5db;
  margin-bottom: 26px;
}

.cta-inline-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff8a00, #ff3d00);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 12px 30px rgba(255, 122, 0, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.cta-inline-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(255, 122, 0, 0.45);
}

/* IMAGE */
/* INLINE CTA CARD */

.cta-inline-wrap {
  position: relative;
}

.cta-inline-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}

.cta-inline-card {
  background: #000;
  border-radius: 28px;
  padding: 56px;
  position: relative;

  /* important */
  overflow: hidden;
}

/* IMAGE WRAPPER */
.cta-inline-image {
  position: absolute;
  right: 24px;
  bottom: 0;

  width: 360px;
  height: calc(100% + 60px);
  /* overflow ONLY from top */

  display: flex;
  align-items: flex-end;
  /* justify-content: center; */
  pointer-events: none;

}


.cta-inline-image img {
  height: 100%;
  width: auto;
  object-fit: contain;
  /* object-position: bottom; */
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .cta-inline-image {
    width: 280px;
    height: calc(100% + 40px);
  }

  .cta-inline-content h3 {
    font-size: 26px;
  }

  .cta-inline-content p {
    font-size: 15px;
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .cta-inline-card {
    padding: 36px 24px;
    /* text-align: center; */
  }



  .cta-inline-image img {
    width: 100%;
    height: auto;
  }
}



@media (max-width: 600px) {
  .cta-inline-card {
    padding: 32px 24px;
    overflow: visible;
  }

  .cta-inline-image {
    width: 200px;
    height: calc(100% + 20px);
    right: 12px;
  }

  .cta-inline-content h3 {
    font-size: 22px;
  }

  .cta-inline-content p {
    font-size: 14px;
  }

  .btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .cta-inline-wrap {
    overflow: visible;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .newsletter-input {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-input button {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

}


@media (max-width: 420px) {
  .cta-inline-image {
    width: 160px;
  }

  .cta-inline-content h3 {
    font-size: 20px;
  }
}





/* CTA */
.cta {
  background: #0b0e1e;
  color: #e5e7eb;
  text-align: center;
  padding: 70px 0;
}

.cta-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
  color: white;
}

.cta-subtitle {
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 24px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: #f9fafb;
  color: #111827;
  border: none;
}

.btn-outline-light {
  background: transparent;
  border: 1px solid rgba(209, 213, 219, 0.6);
  color: #e5e7eb;
}

/* CONTACT */
.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
}

.contact-info-item {
  margin-bottom: 14px;
  font-size: 13px;
}

.contact-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-2);
  margin-bottom: 2px;
}

.contact-value {
  font-size: 14px;
  color: var(--primary-dark);
}

.map-placeholder {
  margin-top: 16px;
  height: 160px;
  border-radius: 16px;
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--text-2);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
}

.form-group label {
  font-weight: 500;
  color: var(--text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 9px 10px;
  font-size: 13px;
  outline: none;
  transition: border 0.16s ease, box-shadow 0.16s ease;
  font-family: inherit;
  background: var(--surface);
  color: var(--text);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(0, 87, 255, 0.6);
  box-shadow: 0 0 0 1px rgba(0, 87, 255, 0.25);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-actions {
  margin-top: 6px;
}

/* FOOTER */
footer {
  background: var(--primary-gradient);
  /* color: #9ca3af; */
  padding: 40px 0 20px;
  font-size: 13px;
  position: relative;
}


footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left,
      rgba(0, 87, 255, 0.5),
      transparent 55%);
  opacity: 0.7;
}


footer .container {
  position: relative;
  z-index: 1;
}

html[data-theme="dark"] footer {
  background: #0a1020;
  color: rgba(229, 231, 235, 0.65);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 2fr;
  gap: 24px;
  color: white;
  margin-bottom: 26px;
}

.footer-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  color: #e5e7eb;
}

.footer-links.company-footer-links a {
  color: #ffffff;
}

.footer-links.company-footer-links a:hover {
  color: #ffffff;
  opacity: 0.85;
  /* optional, remove if not needed */
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #9ca3af;
  font-size: 13px;
}

.footer-links a:hover {
  color: #e5e7eb;
}

.footer-logo {
  margin-bottom: 10px;
  margin-left: -4px;
}


/* connections */
.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-desc {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.5;
}

/* Subscribe button polish */
.btn-subscribe {
  padding: 7px 16px;
  font-size: 12px;
  white-space: nowrap;
}

/* Social icons row */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

/* Social pill */
.social-pill {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #020617;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
  font-size: 14px;
  transition: transform 0.18s ease, background 0.18s ease;
}

.social-pill:hover {
  transform: translateY(-2px);
  background: rgba(0, 87, 255, 0.25);
}

/* Font Awesome icon fix */
.social-pill i {
  line-height: 1;
}

.newsletter-input {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.newsletter-input input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid #374151;
  padding: 8px 10px;
  background: #020617;
  color: #e5e7eb;
  font-size: 13px;
  outline: none;
}

.newsletter-input input::placeholder {
  color: #6b7280;
}

.footer-bottom {
  border-top: 1px solid #1f2937;
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  flex-wrap: wrap;
  color: #ffffff;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-bottom-links {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.footer-bottom-links a:hover{
  color: #ffffff;
  opacity: 0.85;
}
/* 
.footer-links.company-footer-links a:hover {
  color: #ffffff;
  opacity: 0.85;
  /* optional, remove if not needed */


.social-pill {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #020617;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

/* Theme toggle */
.theme-toggle {
  gap: 8px;
  padding: 10px 14px;
}

.theme-toggle-icon {
  font-size: 14px;
  line-height: 1;
}

.theme-toggle-text {
  font-size: 13px;
}



/* COOKIE POLICY */
.cookie-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.cookie-block {
  width: 100%;
}

.cookie-item {
  margin-bottom: 14px;
  font-size: 13px;
}

.cookie-label {
  font-size: 18px;              /* matches h3 */
  font-weight: 600;             /* matches h3 */
  letter-spacing: normal;       /* remove legal-style spacing */
  color: var(--primary-dark);   /* consistent with headings */
  margin-bottom: 6px;
}

.cookie-value {
  font-size: 14px;
  color: var(--primary-dark);
  line-height: 1.65;
}


.cookie-inner .section-subtitle {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  color: #141414;
}




/* =========================
   PRIVACY POLICY
   ========================= */

.privacy-inner {
  display: flex;
  flex-direction: column;
  gap: 48px; /* same as cookie */
}

.privacy-block {
  width: 100%;
}

/* Items inside policy */
.privacy-item {
  margin-bottom: 14px;
  font-size: 13px;
}

/* Labels (uppercase headings like cookie-label) */
.privacy-label {
  font-size: 18px;              /* matches h3 */
  font-weight: 600;             /* matches h3 */
  letter-spacing: normal;       /* remove legal-style spacing */
  color: var(--primary-dark);   /* consistent with headings */
  margin-bottom: 6px;
}

/* Main text */
.privacy-value {
  font-size: 14px;
  color: var(--primary-dark);
  line-height: 1.65;
}

/* Make subtitles behave like cookie page */
.privacy-inner .section-subtitle {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  color: #141414;
}

/* Bullet list (same visual weight as cookie lists) */
.privacy-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.privacy-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--primary-dark);
}

/* Dot bullet (matches cookie policy style) */
.privacy-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 22px;
  line-height: 1;
  color: black;
}




/* Terms and conditions */
/* =========================
   TERMS & CONDITIONS
   ========================= */

.terms-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.terms-block {
  width: 100%;
}

.terms-item {
  margin-bottom: 14px;
  font-size: 13px;
}

.terms-label {
  font-size: 18px;              /* matches h3 */
  font-weight: 600;             /* matches h3 */
  letter-spacing: normal;       /* remove legal-style spacing */
  color: var(--primary-dark);   /* consistent with headings */
  margin-bottom: 6px;
}


.terms-value {
  font-size: 14px;
  color: var(--primary-dark);
  line-height: 1.65;
}

.terms-inner .section-subtitle {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  color: #141414;
}

/* List styling */
.terms-list {
  list-style: none;
  padding-left: 0;
  margin: 8px 0 0;
}

.terms-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.65;
}

.terms-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 22px;
  line-height: 1;
  color: black;
}


/* Responsive safety */
@media (max-width: 1024px) {
  .cookie-inner {
    gap: 40px;
  }
}


/* RESPONSIVE */
@media (max-width: 1024px) {

  .hero-inner,
  .about-inner,
  .contact-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 60px;
  }

  .hero-right {
    order: -1;
  }

  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards-5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hire-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tech-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-grid,
  .testimonial-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  nav {
    gap: 20px;
  }

  .nav-links {
    gap: 16px;
    font-size: 13px;
  }
}




@media (max-width: 820px) {

  /* header */
  .nav-cta {
    display: none;
  }


  /* footer */

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .footer-top > div:last-child {
    grid-column: 1 / -1;
  }
  
  .newsletter-input input {
    min-width: 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}



@media (max-width: 768px) {
  body {
    padding-top: 72px;
  }

  .header-inner {
    height: 72px;
    flex-wrap: nowrap;
  }
  
  

  .site-logo {
    height: 56px;
    max-width: 240px;
  }

  nav {
    width: auto;
    gap: 0;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav-cta {
    display: none;
    /* CTA moves into menu */

  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    padding-bottom: 16px;
  }

  .nav-links-inner {
    width: calc(100% - 32px);
    /* viewport safe */
    max-width: 420px;
    /* nice mobile width */
    margin: 0 auto;
  }


  body.nav-open .nav-links {
    display: block;
  }

  .nav-links-inner {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--shadow-soft);
  }

  html[data-theme="dark"] .nav-links-inner {
    background: rgba(15, 23, 42, 0.95);
  }

  .nav-links-inner .btn {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
  }
}



/* footer responsive */
@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-top > div:nth-child(2),
  .footer-top > div:nth-child(3) {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .footer-links li {
    margin-bottom: 4px;
  }

  .footer-links a {
    font-size: 12px;
    line-height: 1.4;
  }

  .newsletter-input {
    flex-direction: column;
    gap: 10px;
  }

  .newsletter-input input,
  .newsletter-input button {
    width: 100%;
  }

  .footer-social {
    margin-top: 10px;
  }

  .social-pill {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    gap: 8px 12px;
  }
}




@media (max-width: 480px) {
  .site-logo {
    height: 44px;
    max-width: 200px;
  }

  .about-stats {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cards-5,
  .hire-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}



