/* Unique backgrounds for each portfolio card image */
#portfolio .portfolio-grid .port-card:nth-child(1) .port-img.port-card-accent {
  background: linear-gradient(135deg, #fff8ee 60%, #ffe7c2 100%);
}
#portfolio .portfolio-grid .port-card:nth-child(2) .port-img.port-card-accent {
  background: linear-gradient(135deg, #e6f0ff 60%, #c2e0ff 100%);
}
#portfolio .portfolio-grid .port-card:nth-child(3) .port-img.port-card-accent {
  background: linear-gradient(135deg, #fff0f6 60%, #ffd6e0 100%);
}
#portfolio .portfolio-grid .port-card:nth-child(4) .port-img.port-card-accent {
  background: linear-gradient(135deg, #f0fff4 60%, #c2ffe0 100%);
}
#portfolio .portfolio-grid .port-card:nth-child(5) .port-img.port-card-accent {
  background: linear-gradient(135deg, #f9f0ff 60%, #e0c2ff 100%);
}
#portfolio .portfolio-grid .port-card:nth-child(6) .port-img.port-card-accent {
  background: linear-gradient(135deg, #f0faff 60%, #c2e9ff 100%);
}
/* Project thumbnail style for portfolio cards */
.project-thumb {
  background: linear-gradient(135deg, #fff8ee 60%, #ffe7c2 100%);
  border: 1.5px solid #ffb347;
  border-radius: 12px;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 1.5rem auto 0 auto;
  box-shadow: 0 2px 12px rgba(255, 140, 0, 0.08);
}
:root {
  --navy: #0a0f2c;
  --navy2: #111827;
  --dark: #f0f2f8;
  --orange: #ff8c00;
  --orange2: #ff6f00;
  --orange3: #cc6a00;
  --light: #1a1a2e;
  --muted: #5a5f7a;
  --card: #ffffff;
  --border: rgba(255, 140, 0, 0.18);
  --bg: #ffffff;
  --bg-alt: #f4f6fb;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: linear-gradient(180deg, #ffffff 0%, #fff8f0 100%);
  color: #1a1a2e;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}
html {
  scroll-behavior: smooth;
  font-family: "Inter", sans-serif;
}
body {
  background: #fff;
  color: #1a1a2e;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #f0f2f8;
}
::-webkit-scrollbar-thumb {
  background: var(--orange3);
  border-radius: 3px;
}

/* ─── SELECTION ─── */
::selection {
  background: var(--orange);
  color: #000;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo svg {
  height: 36px;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
/* Use Poppins only for logo/heading, Inter everywhere else */
.nav-logo-text span:first-child {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: #0a0f2c;
}
.nav-logo-text span:last-child {
  font-size: 0.5rem;
  letter-spacing: 6px;
  color: var(--orange);
  text-align: center;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: #5a5f7a;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover {
  color: #0a0f2c;
}
.nav-links a:hover::after {
  transform: scaleX(1);
}
.nav-cta {
  background: var(--orange);
  color: #fff;
  padding: 0.55rem 1.4rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.2s;
}
.nav-cta:hover {
  background: #0a0f2c;
  color: #fff;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #0a0f2c;
  transition: all 0.3s;
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 5%;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 60% at 75% 50%,
      rgba(255, 140, 0, 0.1) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 50% 60% at 10% 80%,
      rgba(255, 165, 0, 0.07) 0%,
      transparent 60%
    ),
    #fff;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 140, 0, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 140, 0, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--orange);
  border-radius: 50%;
  animation: float linear infinite;
}
@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  90% {
    opacity: 0.1;
  }
  100% {
    transform: translateY(-100vh) translateX(40px);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 140, 0, 0.08);
  border: 1px solid rgba(255, 140, 0, 0.25);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.5);
  }
}
/* Headings use Poppins for brand, rest Inter */
h1.hero-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  color: #0a0f2c;
}
.hero-title em {
  color: var(--orange);
  font-style: normal;
}
.hero-title .line2 {
  color: #5a5f7a;
}
.hero-sub {
  font-size: 1.05rem;
  color: #5a5f7a;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s;
}
.btn-primary:hover {
  background: #0a0f2c;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 140, 0, 0.25);
}
.btn-outline {
  border: 1.5px solid rgba(10, 15, 44, 0.2);
  color: #0a0f2c;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s;
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}
.hero-visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  right: -100px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 140, 0, 0.18) 0%,
    rgba(255, 165, 0, 0.04) 50%,
    transparent 70%
  );
  filter: blur(50px);
  animation: orb 8s ease-in-out infinite;
}
@keyframes orb {
  0%,
  100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.1) translateY(-30px);
  }
}
.circuit-lines {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.25;
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: #f4f6fb;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  padding: 2rem 5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-item {
  text-align: center;
  padding: 1rem;
}
.stat-num {
  font-family: "Syne", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange);
  display: block;
}
.stat-label {
  font-size: 0.78rem;
  color: #5a5f7a;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* ─── SECTIONS ─── */
section {
  padding: 7rem 5%;
}
.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: "";
  flex: 0 0 24px;
  height: 1px;
  background: var(--orange);
}
.section-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #0a0f2c;
}
.section-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #0a0f2c;
}
.stat-num {
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange);
  display: block;
}
.section-title span {
  color: var(--orange);
}
.section-sub {
  color: #5a5f7a;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 580px;
}
.text-center {
  text-align: center;
}
.text-center .section-sub {
  margin: 0 auto;
}
.text-center .section-eyebrow {
  justify-content: center;
}

/* ─── SERVICES ─── */
#services {
  background: #f4f6fb;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin-top: 4rem;
  background: rgba(0, 0, 0, 0.07);
}
.service-card {
  background: #fff;
  padding: 2.5rem;
  transition: all 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover {
  background: #fff8ee;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 140, 0, 0.1);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(255, 140, 0, 0.08);
  border: 1px solid rgba(255, 140, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--orange);
  font-size: 1.4rem;
}
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: 0.3px;
  color: #0a0f2c;
}
.service-card p {
  color: #5a5f7a;
  font-size: 0.88rem;
  line-height: 1.8;
}
.service-tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--orange);
  text-transform: uppercase;
}

/* ─── WHY US ─── */
#why {
  background: #fff;
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-left .section-sub {
  margin-bottom: 2.5rem;
}
.why-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.why-feat {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.why-feat-icon {
  flex: 0 0 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 140, 0, 0.08);
  border: 1px solid rgba(255, 140, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-top: 2px;
}
.why-feat h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #0a0f2c;
}
.why-feat p {
  color: #5a5f7a;
  font-size: 0.85rem;
  line-height: 1.7;
}
.why-right {
  position: relative;
}
.why-visual {
  background: #f4f6fb;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.why-visual::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.12), transparent 70%);
  pointer-events: none;
}
.metric-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.metric-card {
  flex: 1;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 1.2rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.metric-card .val {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
}
.metric-card .lbl {
  font-size: 0.72rem;
  color: #5a5f7a;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0.2rem;
}
.progress-block {
  margin-top: 1.5rem;
}
.prog-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  margin-bottom: 0.5rem;
  color: #5a5f7a;
  font-weight: 600;
}
.prog-bar {
  height: 6px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 3px;
  overflow: hidden;
}
.prog-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--orange3), var(--orange));
  animation: fill 0.8s ease forwards;
  width: 0;
}
@keyframes fill {
  to {
    width: var(--w);
  }
}

/* ─── PORTFOLIO ─── */
#portfolio {
  background: #f4f6fb;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.port-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}
.port-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: 0 20px 50px rgba(255, 140, 0, 0.15);
}
.port-img {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.port-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #fff, transparent);
  z-index: 1;
}
.port-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: rgba(255, 140, 0, 0.1);
  border: 1px solid var(--orange);
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--orange);
  padding: 0.3rem 0.8rem;
  text-transform: uppercase;
}
.port-body {
  padding: 1.5rem;
}
.port-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #0a0f2c;
}
.port-body p {
  color: #5a5f7a;
  font-size: 0.83rem;
  line-height: 1.7;
}
.port-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.port-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #5a5f7a;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  padding: 0.25rem 0.6rem;
  text-transform: uppercase;
}
.port-icon {
  font-size: 3rem;
  opacity: 0.08;
}
.port-card-accent {
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.06), #f4f6fb);
}

/* ─── PROCESS ─── */
#process {
  background: #fff;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 4rem;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--orange3),
    var(--orange),
    var(--orange3),
    transparent
  );
}
.step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
}
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(255, 140, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: "Syne", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--orange);
  position: relative;
  z-index: 2;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(255, 140, 0, 0.1);
}
.step:hover .step-num {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(255, 140, 0, 0.3);
}
.step h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #0a0f2c;
}
.step p {
  color: #5a5f7a;
  font-size: 0.8rem;
  line-height: 1.6;
}

/* ─── ABOUT ─── */
#about {
  background: #f4f6fb;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-block {
  position: relative;
}
.about-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.about-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.1), transparent 70%);
}
.about-logo-big {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.about-logo-big svg {
  height: 52px;
}
.about-logo-text .name {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: #0a0f2c;
}
.about-logo-text .name {
  font-family: "Syne", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: #0a0f2c;
}
.about-logo-text .tagline {
  font-size: 0.55rem;
  letter-spacing: 5px;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.about-logo-text .tagline::before,
.about-logo-text .tagline::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--orange3);
}
.about-mission {
  margin-bottom: 1.5rem;
}
.about-mission h4 {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.about-mission p {
  color: #5a5f7a;
  font-size: 0.88rem;
  line-height: 1.8;
}
.team-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.team-pill {
  background: rgba(255, 140, 0, 0.07);
  border: 1px solid rgba(255, 140, 0, 0.2);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--orange);
}
.about-right .section-sub {
  margin-bottom: 2rem;
}
.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  color: #5a5f7a;
  font-size: 0.9rem;
  line-height: 1.7;
}
.about-list li::before {
  content: "›";
  color: var(--orange);
  font-size: 1.2rem;
  font-weight: 900;
  flex: 0 0 auto;
  margin-top: -1px;
}
.founder-card {
  margin-top: 2.5rem;
  background: rgba(255, 140, 0, 0.04);
  border: 1px solid rgba(255, 140, 0, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.founder-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange3), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Syne", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  flex: 0 0 52px;
  overflow: hidden;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.founder-info h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0a0f2c;
}
.founder-info span {
  font-size: 0.78rem;
  color: var(--orange);
}

/* ─── TESTIMONIALS ─── */
#testimonials {
  background: #fff;
  padding: 7rem 5%;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.testi-card {
  background: #f4f6fb;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s;
}
.testi-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(255, 140, 0, 0.1);
}
.testi-stars {
  color: var(--orange);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.testi-text {
  color: #5a5f7a;
  font-size: 0.9rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange3), #eee);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
}
.testi-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0a0f2c;
}
.testi-role {
  font-size: 0.75rem;
  color: #5a5f7a;
}

/* ─── TECH STACK ─── */
#tech {
  background: #f4f6fb;
  padding: 5rem 5%;
}
.tech-label {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #5a5f7a;
  font-weight: 600;
  margin-bottom: 2.5rem;
}
.tech-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}
.tech-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee 20s linear infinite;
}
.tech-track:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.tech-pill {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 8px;
  padding: 0.6rem 1.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #5a5f7a;
  white-space: nowrap;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.tech-pill:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* ─── CONTACT ─── */
#contact {
  background: #fff;
  padding: 7rem 5%;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(255, 140, 0, 0.08);
  border: 1px solid rgba(255, 140, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex: 0 0 48px;
}
.contact-item h5 {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.contact-item p,
.contact-item a {
  color: #5a5f7a;
  font-size: 0.9rem;
  text-decoration: none;
  line-height: 1.7;
}
.contact-item a:hover {
  color: var(--orange);
}
.contact-form {
  background: #f4f6fb;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #5a5f7a;
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  padding: 0.8rem 1rem;
  color: #0a0f2c;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
}
.form-group select option {
  background: #fff;
  color: #0a0f2c;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-submit {
  width: 100%;
  background: var(--orange);
  color: #fff;
  padding: 0.85rem;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s;
  font-family: "Inter", sans-serif;
  margin-top: 0.5rem;
}
.form-submit:hover {
  background: #0a0f2c;
  transform: translateY(-2px);
}
.form-note {
  font-size: 0.75rem;
  color: #5a5f7a;
  text-align: center;
  margin-top: 0.75rem;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, #0a0f2c 0%, #1a2660 100%);
  padding: 5rem 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.cta-banner h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  max-width: 500px;
  line-height: 1.2;
}
.btn-dark {
  background: var(--orange);
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-dark:hover {
  background: #fff;
  color: #0a0f2c;
  transform: translateY(-2px);
}

/* ─── FOOTER ─── */
footer {
  background: #0a0f2c;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4rem 5% 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-top: 1rem;
  max-width: 280px;
}
.footer-col h6 {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.87rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--orange);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: gap;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
}
.social-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  margin-bottom: 0.5rem;
}
.footer-logo svg {
  height: 30px;
}
.footer-logo-text .name {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: #fff;
}
.footer-logo-text .name {
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: #fff;
}
.footer-logo-text .sub {
  font-size: 0.45rem;
  letter-spacing: 5px;
  color: var(--orange);
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ─── MOBILE NAV MENU ─── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(7, 11, 30, 0.97);
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transition: all 0.4s;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(20px);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-family: "Syne", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--light);
  text-decoration: none;
  letter-spacing: 2px;
  transition: color 0.2s;
}
.mobile-menu a {
  font-family: "Syne", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--light);
  text-decoration: none;
  letter-spacing: 2px;
  transition: color 0.2s;
}
.mobile-menu a:hover {
  color: var(--orange);
}
.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 5%;
  font-size: 2rem;
  color: var(--muted);
  cursor: pointer;
  background: none;
  border: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .process-steps::before {
    display: none;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-inner,
  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .cta-banner {
    text-align: center;
    justify-content: center;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
}

/* ─── GLOW EFFECTS ─── */
.glow-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow:
    0 0 10px var(--orange),
    0 0 30px var(--orange);
  pointer-events: none;
}

/* ─── SCROLLED NAV ─── */
nav.scrolled {
  background: rgba(7, 11, 30, 0.97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

#darkModeToggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: background 0.2s;
}
#backToTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
#backToTop.visible {
  opacity: 1;
  pointer-events: all;
}
