/* style.css */
:root {
  --color-bg-primary: #0D0D0D;
  --color-bg-secondary: #1A1A1A;
  --color-bg-tertiary: #222222;
  --color-accent: #006AEE;
  --color-accent-hover: #0054C6;
  --color-text-primary: #FFFFFF;
  --color-text-secondary: #AAAAAA;
  --color-text-muted: #666666;
  --color-border: #2E2E2E;

  --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  --transition-speed: 0.3s;
}

/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-family);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-size: 16px;
  line-height: 1.5;
}

body {
  overflow-x: hidden;
  min-width: 320px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  margin-bottom: 0.5em;
  color: var(--color-text-primary);
}

h1 {
  font-size: 36px;
  font-weight: 700;
}

h2 {
  font-size: 28px;
  font-weight: 600;
}

h3 {
  font-size: 22px;
  font-weight: 600;
}

h4 {
  font-size: 18px;
  font-weight: 500;
}

p {
  color: var(--color-text-secondary);
  margin-bottom: 1em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-speed) ease;
}

a:hover {
  color: var(--color-accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* section { */
/* padding: 60px 0; */
/* } */

/* Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  text-align: center;
  min-height: 48px;
  border: none;
  font-size: 16px;
}

.btn-primary {
  background-color: var(--color-accent);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  color: #fff;
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

.btn-secondary:hover {
  background-color: var(--color-accent);
  color: #fff;
}

.btn-ghost {
  background-color: transparent;
  color: var(--color-accent);
  padding: 12px 16px;
}

.btn-ghost:hover {
  background-color: rgba(0, 82, 255, 0.1);
}

.btn-dot {
  margin-left: 8px;
  font-size: 16px;
}

.card {
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 24px;
  transition: box-shadow var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(-4px);
}

/* Eyebrow Text */
.eyebrow {
  display: block;
  font-family: 'Plus Jakarta Sans', var(--font-family);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: #7E7E7E;
  margin-bottom: 8px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  z-index: 1000;
  border-bottom: none;
  padding: 25px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  padding: 0 60px;
}

.navbar-brand {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-primary);
  display: inline-block;
}

.navbar-brand:hover {
  color: var(--color-text-primary);
}

.navbar-brand .outline {
  color: transparent;
  -webkit-text-stroke: 1px var(--color-text-primary);
  transition: -webkit-text-stroke var(--transition-speed) ease;
}

.navbar-brand .dot {
  color: var(--color-accent);
}

.navbar .btn {
  width: 132px;
  height: 36px;
  min-height: 36px;
  padding: 0;
  border-radius: 5px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.navbar .btn-dot {
  margin-left: 0;
  font-size: 14px;
}

.arrow {
  font-size: 10px;
  margin-left: 4px;
  display: inline-block;
  vertical-align: middle;
}

.navbar-nav {
  display: none;
  /* Mobile first, hidden by default */
  gap: 32px;
  align-items: center;
}

.navbar-nav.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--color-bg-tertiary);
  padding: 24px;
  border-bottom: 1px solid var(--color-border);
}

.nav-link {
  color: var(--color-text-secondary);
  font-weight: 500;
  font-size: 16px;
}

.nav-link.active,
.nav-link:hover {
  color: var(--color-accent);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text-primary);
  transition: all var(--transition-speed) ease;
}

/* Sections */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--color-bg-primary);
  background-image: url('../assets/images/grid-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.hero .container {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.hero h1 {
  font-family: 'Plus Jakarta Sans', var(--font-family);
  font-weight: 800;
  line-height: 1.15;
  max-width: 1000px;
  margin: 0 auto 40px;
  letter-spacing: -0.02em;
}

.hero p {
  font-family: 'Plus Jakarta Sans', var(--font-family);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.04em;
  max-width: 700px;
  margin: 0 auto 40px;
}

.hero .btn {
  width: 139px;
  height: 36px;
  min-height: 36px;
  padding: 0;
  border-radius: 5px;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Clients Section */
.clients-section {
  height: 250px;
  background-color: #171717;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.clients-spotlight {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.clients-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  height: 100%;
  background: linear-gradient(to right, #171717 0%, rgba(23, 23, 23, 0.9) 40%, rgba(23, 23, 23, 0) 100%);
  pointer-events: none;
  z-index: 3;
}

.clients-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 25%;
  height: 100%;
  background: linear-gradient(to left, #171717 0%, rgba(23, 23, 23, 0.9) 40%, rgba(23, 23, 23, 0) 100%);
  pointer-events: none;
  z-index: 3;
}

.clients-marquee {
  width: 100%;
  overflow: hidden;
  display: flex;
  position: relative;
  z-index: 2;
  mask-image: radial-gradient(ellipse at center,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 25%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: radial-gradient(ellipse at center,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 25%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0) 100%);
}

.clients-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scroll-marquee 25s linear infinite;
}

.clients-track img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  margin-right: 180px;
  flex-shrink: 0;
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;

  --distance: 1;
  opacity: calc(0.15 + (1 - var(--distance)) * 0.85);
  transform: scale(calc(0.8 + (1 - var(--distance)) * 0.2));
  filter: blur(calc(var(--distance) * 2px)) drop-shadow(0 0 calc((1 - var(--distance)) * 5px) rgba(255, 255, 255, 0.5)) grayscale(100%);
  transition: transform 0.1s linear, opacity 0.1s linear, filter 0.1s linear;
}

.clients-track img:hover {
  opacity: 1;
  filter: blur(0px) grayscale(0%) drop-shadow(0 0 8px rgba(0, 82, 255, 0.6));
  transform: scale(1.15);
}

.clients-track.has-active img {
  opacity: 0.15;
  filter: blur(4px) grayscale(100%);
  transform: scale(0.85);
}

.clients-track.has-active img.active {
  opacity: 1;
  filter: blur(0px) grayscale(0%) drop-shadow(0 0 12px rgba(0, 106, 240, 0.8));
  transform: scale(1.15);
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Portfolio Section */
#portfolio {
  background-color: #171717;
  padding-bottom: 80px;
}

.portfolio-header {
  text-align: center;
  margin-bottom: 64px;
}

.portfolio-header h2 {
  font-family: 'Plus Jakarta Sans', var(--font-family);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.04em;
  margin-bottom: 40px;
  color: #FFFFFF;
}

.portfolio-subtitle {
  font-family: 'Plus Jakarta Sans', var(--font-family);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: #7E7E7E;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

.portfolio-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.portfolio-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  background-color: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  border-left: none;
  border-right: none;
  border-radius: 0;
  padding: 0;
  align-items: center;
  transition: border-color var(--transition-speed) ease;
}

.portfolio-card:not(:last-child) {
  border-bottom: none;
}

.portfolio-card:nth-child(odd) {
  background-color: #1f1f1f;
}

.portfolio-card:nth-child(even) {
  background-color: #262626;
}

.portfolio-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.portfolio-card:hover .portfolio-image img {
  filter: grayscale(0%);
  opacity: 1;
}

.portfolio-info {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.portfolio-info h3 {
  font-family: 'Plus Jakarta Sans', var(--font-family);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.04em;
  color: var(--color-text-primary);
  margin-bottom: 10px;
}

.portfolio-info p {
  font-family: 'Plus Jakarta Sans', var(--font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #7E7E7E;
  margin-bottom: 30px;
  text-transform: none;
  letter-spacing: -0.04em;
}

.portfolio-info .project-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 30px;
}

.portfolio-info .explore-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition-speed) ease;
}

.portfolio-info .explore-link:hover {
  color: var(--color-accent);
}

.portfolio-info .arrow-diagonal {
  font-size: 18px;
  line-height: 1;
}

.portfolio-image {
  width: 100%;
  height: 320px;
  border-radius: 0;
  overflow: hidden;
  background-color: var(--color-bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: 0.35;
  transition: filter var(--transition-speed) ease, opacity var(--transition-speed) ease;
}

.portfolio-action {
  text-align: center;
  margin-top: 60px;
}

.portfolio-action .btn {
  width: 139px;
  height: 36px;
  min-height: 36px;
  padding: 0;
  border-radius: 5px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Services Section */
#services {
  background-color: #0D0D0D;
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-header h2 {
  font-family: 'Plus Jakarta Sans', var(--font-family);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: #FFFFFF;
  margin-bottom: 40px;
}

.services-header p {
  font-family: 'Plus Jakarta Sans', var(--font-family);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: #7E7E7E;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-list {
  display: flex;
  flex-direction: column;
}

.service-item {
  border-top: 1px solid var(--color-border);
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.service-item:last-child {
  border-bottom: 1px solid var(--color-border);
}

.service-meta {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex: 1;
  margin-left: 5px;
}

.service-icon {
  width: 38px;
  height: 38px;
  background-image: url('../assets/images/arrow-diagonal.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  transition: transform var(--transition-speed) ease, filter var(--transition-speed) ease;
}

.service-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
}

.service-content h3 {
  font-family: 'Plus Jakarta Sans', var(--font-family);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--color-text-secondary);
  margin-bottom: 0;
  transition: color var(--transition-speed) ease;
}

.service-content p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 0;
  transition: color var(--transition-speed) ease;
}

.service-images {
  display: none;
  gap: 16px;
  align-items: center;
  margin-left: 24px;
}

.service-images img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 0;
}

/* Hover / Active states */
.service-item:hover,
.service-item.active {
  background-color: rgba(255, 255, 255, 0.01);
}

.service-item:hover .service-icon,
.service-item.active .service-icon {
  transform: rotate(45deg);
  filter: invert(24%) sepia(85%) saturate(3078%) hue-rotate(219deg) brightness(101%) contrast(107%);
}

.service-item:hover .service-content h3,
.service-item.active .service-content h3 {
  color: var(--color-text-primary);
}

.service-item:hover .service-content p,
.service-item.active .service-content p {
  color: var(--color-text-secondary);
}

/* Tech Section */
#tech-stack {
  background-color: var(--color-bg-secondary);
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

#tech-stack .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#tech-stack .tech-header {
  max-width: 700px;
  text-align: center;
  margin-bottom: 60px;
}

#tech-stack .tech-header h2 {
  font-family: 'Plus Jakarta Sans', var(--font-family);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: #FFFFFF;
  margin-top: 8px;
  margin-bottom: 24px;
}

#tech-stack .tech-header p {
  font-family: 'Plus Jakarta Sans', var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.04em;
  color: #7E7E7E;
  margin: 0 auto;
}

.tech-marquee-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.tech-marquee {
  width: 100%;
  overflow: hidden;
  display: flex;
  position: relative;
}

.tech-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 0;
}

.marquee-left .tech-track {
  animation: scroll-marquee-left 25s linear infinite;
}

.marquee-right .tech-track {
  animation: scroll-marquee-right 25s linear infinite;
}

@keyframes scroll-marquee-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.3333%);
  }
}

@keyframes scroll-marquee-right {
  0% {
    transform: translateX(-33.3333%);
  }

  100% {
    transform: translateX(0);
  }
}

.tech-icon-box {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-speed) ease;
  cursor: pointer;
  margin-right: 32px;
}

.tech-icon-box:hover {
  transform: scale(1.1);
}

.tech-icon-svg {
  width: 50px;
  height: 50px;
}

/* Impact Section */
.impact-section {
  background-color: #000000;
  padding: 80px 0;
  box-sizing: border-box;
}

.impact-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.impact-header h2 {
  font-family: 'Plus Jakarta Sans', var(--font-family);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: #FFFFFF;
  margin-top: 8px;
  margin-bottom: 20px;
}

.impact-desc {
  font-family: 'Plus Jakarta Sans', var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.04em;
  color: #7E7E7E;
  max-width: 580px;
  margin: 0 auto;
}

.impact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
}

.impact-item {
  display: flex;
  align-items: flex-start;
  background-color: transparent;
  border: 1px solid #3F3F3F;
  border-radius: 5px;
  padding: 30px;
  transition: all var(--transition-speed) ease;
  box-sizing: border-box;
  text-align: left;
}

.impact-item:hover {
  background-color: #0F0F0F;
  border-color: #555555;
  transform: translateY(-2px);
}

.impact-arrow {
  width: 30px;
  height: 30px;
  margin-right: 16px;
  flex-shrink: 0;
  object-fit: contain;
  object-position: left center;
  transition: transform var(--transition-speed) ease;
}

.impact-item:hover .impact-arrow {
  transform: translate(3px, -3px);
}

.impact-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.impact-content h3 {
  font-family: 'Plus Jakarta Sans', var(--font-family);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: #7E7E7E;
  margin: 0;
}

.impact-content p {
  font-family: 'Plus Jakarta Sans', var(--font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #7E7E7E;
  margin-top: 20px;
  margin-bottom: 0;
}

/* Blue CTA */
.blue-cta {
  background-color: var(--color-accent);
  background-image: url('../assets/images/Mask group (1).png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 60px 24px;
  text-align: center;
  border-radius: 0;
  margin: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blue-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.blue-cta-eyebrow {
  display: block;
  font-family: 'Plus Jakarta Sans', var(--font-family);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blue-cta h2 {
  color: #fff;
  margin-bottom: 16px;
}

.blue-cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.blue-cta-right {
  position: relative;
  width: 592px;
  height: 416px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blue-cta-graphics {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.cta-ellipse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: none;
  pointer-events: none;
}

.cta-ellipse-lg {
  width: 592px;
  height: 416px;
}

.cta-ellipse-md {
  width: 510px;
  height: 416px;
}

.cta-ellipse-sm {
  width: 341px;
  height: 341px;
}

.cta-graphic {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: none;
  pointer-events: none;
}

.blue-cta-btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 175px;
  height: 175px;
  background-color: transparent;
  border-radius: 50%;
  transition: transform var(--transition-speed) ease;
}

.blue-cta-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.blue-cta-btn:hover {
  transform: scale(1.1);
}

/* Recognition */
.recognition-section {
  background-color: #171717;
  padding: 80px 60px;
}

.recognition-header {
  text-align: center;
  margin-bottom: 60px;
}

.recognition-header h2 {
  font-family: 'Plus Jakarta Sans', var(--font-family);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: #FFFFFF;
  margin-top: 8px;
  margin-bottom: 40px;
}

.recognition-desc {
  color: #7E7E7E;
  font-size: 14px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 25px;
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.recognition-card {
  background-color: #111111;
  border: 1px solid #2A2A2A;
  border-radius: 12px;
  width: 320px;
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition-speed) ease;
}

.recognition-card:hover {
  border-color: #444444;
}

.recognition-logo {
  object-fit: contain;
  transition: all var(--transition-speed) ease;
}

.logo-upwork {
  width: 102.55px;
  height: 36.87px;
}

.logo-guru {
  width: 173.66px;
  height: 39.35px;
}

.logo-fiverr {
  width: 175px;
  height: 46.27px;
}

.logo-pph {
  width: 175px;
  height: 27.56px;
}

/* Banner Section */
.banner-section {
  background-color: #000000;
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.banner-wrapper {
  width: 1440px;
  max-width: 100%;
  height: 636px;
  margin: 0 auto;
}

.banner-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Testimonials */
.testimonials-section {
  background-color: #0F0F0F;
  padding: 80px 0;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 60px;
}

.testimonials-header h2 {
  font-family: 'Plus Jakarta Sans', var(--font-family);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: #FFFFFF;
  margin-top: 8px;
}

.testimonials-desc {
  color: #7E7E7E;
  font-size: 14px;
  line-height: 1.6;
  max-width: 700px;
  margin: 16px auto 0;
}

.testimonial-marquee {
  overflow: hidden;
  width: 100%;
  margin-bottom: 10px;
}

.testimonial-marquee:last-child {
  margin-bottom: 0;
}

.testimonial-track {
  display: flex;
  gap: 10px;
  width: max-content;
}

.testimonial-track-left {
  animation: scrollLeft 30s linear infinite;
}

.testimonial-track-right {
  animation: scrollRight 30s linear infinite;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 15px));
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(calc(-50% - 15px));
  }

  100% {
    transform: translateX(0);
  }
}

.testimonial-card {
  background-color: #0F0F0F;
  border: 1px solid #2A2A2A;
  border-radius: 5px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  width: 420px;
  height: 240px;
  flex-shrink: 0;
  box-sizing: border-box;
}

.testimonial-card:hover {
  border-color: #444444;
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.testimonial-rating {
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.testimonial-rating .star {
  color: #FFB800;
  font-size: 16px;
}

.testimonial-text {
  font-size: 13px;
  line-height: 1.6;
  color: #999999;
  margin-bottom: 0;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #333333;
  flex-shrink: 0;
}

.testimonial-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.testimonial-info p {
  font-size: 12px;
  color: #7E7E7E;
  margin-bottom: 0;
}

/* Footer / Contact */
.footer-section {
  background-color: #171717;
  width: 100%;
}

.footer-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 60px 80px;
  box-sizing: border-box;
}

.footer-contact-grid {
  display: flex;
  gap: 120px;
  align-items: stretch;
}

.footer-contact-left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-contact-left .eyebrow {
  color: #7E7E7E;
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}

.footer-heading {
  font-family: 'Plus Jakarta Sans', var(--font-family);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: #FFFFFF;
  margin-bottom: 40px;
}

.footer-contact-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #7E7E7E;
  max-width: 550px;
  margin-bottom: 0;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-email {
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: #FFFFFF;
  margin: 0;
}

.footer-phone {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #7E7E7E;
  margin: 0;
}

.footer-contact-right {
  flex: 1;
  min-width: 0;
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 650px;
  max-width: 100%;
}

.form-row-2col {
  display: flex;
  gap: 10px;
}

.form-row-2col .form-field {
  flex: 1;
}

.form-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #1E1E1E;
  border-radius: 5px;
  padding: 20px 30px;
  height: 93px;
  box-sizing: border-box;
  transition: background-color 0.3s ease, outline 0.3s ease;
}

.form-field:focus-within {
  outline: 1px solid #0066FF;
}

.form-field label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #7E7E7E;
  padding: 0 0 10px 0;
  margin: 0;
}

.form-field input,
.form-field select,
.form-field textarea {
  background-color: transparent;
  border: none;
  color: #FFFFFF;
  padding: 0;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.04em;
  outline: none;
  width: 100%;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.04em;
}

/* Custom Dropdown Styling */
.custom-dropdown {
  position: relative;
  cursor: pointer;
  user-select: none;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.selected-value {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #FFFFFF;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
}

.custom-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 100%;
  background-color: #1E1E1E;
  border: 1px solid #2A2A2A;
  border-radius: 5px;
  margin-top: 0;
  padding: 8px 0;
  list-style: none;
  z-index: 100;
  display: none;
  max-height: 200px;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Premium Scrollbar */
.dropdown-options::-webkit-scrollbar {
  width: 6px;
}

.dropdown-options::-webkit-scrollbar-track {
  background: transparent;
}

.dropdown-options::-webkit-scrollbar-thumb {
  background-color: #3A3A3C;
  border-radius: 3px;
}

.custom-dropdown.open .dropdown-options {
  display: block;
}

.dropdown-options li {
  padding: 12px 30px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #CCCCCC;
  transition: background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.dropdown-options li:hover {
  background-color: #2A2A2A;
  color: #FFFFFF;
}

.dropdown-options li.active {
  background-color: #2A2A2A;
  color: #0066FF;
}

.form-field:has(textarea) {
  height: 186px;
  justify-content: flex-start;
  padding: 20px 30px;
}

.form-field textarea {
  resize: vertical;
  height: 110px;
  min-height: 50px;
  overflow-y: auto;
}

.phone-input {
  display: flex;
  align-items: center;
  border: none;
  padding: 0;
  gap: 12px;
  width: 100%;
}

.phone-prefix {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.phone-divider {
  color: #2A2A2A;
  font-size: 22px;
}

.phone-input input {
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.04em;
  font-family: inherit;
  outline: none;
  flex: 1;
  padding: 0;
}

.phone-input input::placeholder {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.04em;
}

.footer-submit-btn {
  margin-top: 30px;
  width: 100%;
  height: 69px;
  padding: 0;
  background-color: #0066FF;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.04em;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-submit-btn:hover {
  background-color: #0052CC;
}

.footer-nda-text {
  text-align: left;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #7E7E7E;
  margin-top: 0px;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 60px;
  padding: 32px 0 0;
  border-top: 1px solid #2A2A2A;
  margin-left: 0;
  margin-right: 0;
}

.footer-brand-name {
  font-family: 'Plus Jakarta Sans', var(--font-family);
  font-size: 28px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 30px;
}

.brand-dot {
  color: #0066FF;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 16px;
  color: #7E7E7E;
}

.footer-bottom-links a {
  color: #7E7E7E;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.link-dot {
  color: #7E7E7E;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-icon-link {
  color: #7E7E7E;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.social-icon-link:hover {
  color: #FFFFFF;
}

.social-icon-link img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: filter 0.3s ease, opacity 0.3s ease;
  filter: brightness(0) invert(0.5);
}

.social-icon-link:hover img {
  filter: brightness(0) invert(1);
}

/* Utilities */
.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 1rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mobile-only {
  display: block;
}

.desktop-only {
  display: none;
}

/* Custom styling to eliminate inline CSS */
.cta-section {
  padding: 0;
}

/* ==========================================================================
   Responsive & Media Queries (Laptop-First / Desktop-First overrides)
   ========================================================================== */

/* Extracted Inline Media Queries */
@media (max-width: 1024px) {
  .clients-section {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .clients-section {
    height: 159px;
    padding: 55px 0;
  }

  .clients-track img {
    margin-right: 60px;
    height: 48px;
    width: auto;
  }
}

@media (max-width: 900px) {
  .portfolio-card {
    grid-template-columns: 1fr;
    gap: 0px;
    padding: 32px;
  }

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

  .portfolio-image {
    height: 250px;
  }
}

@media (min-width: 768px) {

  .service-item:hover .service-images,
  .service-item.active .service-images {
    display: flex;
  }
}

/* Tablet (768px and up) */
@media (min-width: 768px) {
  /* section {
    padding: 64px 0;
  } */

  /* Typography */
  h1 {
    font-size: 48px;
  }

  .hero h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 32px;
  }

  /* Navigation */
  .hamburger {
    display: none;
  }

  .navbar-nav {
    display: flex;
    flex-direction: row;
    position: static;
    background-color: transparent;
    padding: 0;
    border: none;
    width: auto;
    margin-left: 48px;
    margin-right: auto;
  }

  .mobile-only {
    display: none;
  }

  .desktop-only {
    display: block;
  }

  /* Clients Section */
  .clients-section {
    height: 222px;
    padding: 0;
  }

  .clients-grid {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 32px;
  }

  /* Portfolio */
  .portfolio-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .portfolio-card {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 5%;
    gap: 4.5%;
    border-radius: 0;
    align-items: center;
  }

  .portfolio-info {
    flex: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .portfolio-image {
    display: block;
    width: 36.2%;
    padding: 0;
    min-height: auto;
    flex: none;
    background-color: transparent;
    box-sizing: border-box;
    border-radius: 0;
    overflow: hidden;
  }

  .portfolio-image img {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
    display: block;
  }

  /* Services */
  .service-images img {
    width: 120px;
    height: 80px;
  }

  /* Impact */
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Recognition */
  .recognition-grid {
    flex-direction: row;
    justify-content: center;
    gap: 48px;
  }

  /* Footer */
  .form-row {
    flex-direction: row;
  }

  .form-row .form-group {
    flex: 1;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Desktop (1280px and up) */
@media (min-width: 1280px) {
  section {
    padding-bottom: 60px;
  }

  #portfolio {
    padding-top: 0;
  }

  /* Typography */
  h1 {
    font-size: 72px;
  }

  .hero h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 36px;
  }

  .hero {
    height: 100vh;
    padding: 0;
  }

  .hero .container {
    max-width: 1000px;
    padding: 0;
  }

  .hero p {
    font-size: 18px;
  }

  /* Portfolio Header Custom Figma Styles */
  .portfolio-header h2,
  .services-header h2 {
    font-size: 60px;
    line-height: 70px;
  }

  .portfolio-subtitle,
  .services-header p {
    font-size: 18px;
  }

  /* Portfolio and Services Card Size Override */
  #portfolio .container,
  #services .container {
    max-width: 1440px;
    padding: 0 60px;
  }

  .portfolio-card {
    max-width: 1320px;
    height: 368px;
    display: flex;
    padding: 65px 60px;
    gap: 60px;
    margin: 0 auto;
    border-radius: 0;
    align-items: center;
  }

  .portfolio-info {
    flex: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .portfolio-info h3 {
    font-size: 40px;
    line-height: 50px;
  }

  .portfolio-image {
    display: block;
    width: 418px;
    height: 238px;
    padding: 0;
    flex: none;
    background-color: transparent;
    box-sizing: border-box;
    border-radius: 0;
    overflow: hidden;
  }

  .portfolio-image img {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
    display: block;
  }

  .service-item {
    padding: 40px 0;
  }

  .service-meta {
    gap: 40px;
  }

  .service-content h3 {
    font-size: 30px;
  }

  /* Impact */
  .impact-section {
    height: 1050px;
    padding: 80px 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .impact-section .container {
    max-width: 1440px;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .impact-header .eyebrow {
    font-family: 'Plus Jakarta Sans', var(--font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.04em;
    color: #7E7E7E;
    margin-bottom: 25px;
  }

  .impact-header h2 {
    font-family: 'Plus Jakarta Sans', var(--font-family);
    font-size: 60px;
    font-weight: 800;
    line-height: 70px;
    letter-spacing: -0.04em;
    color: #FFFFFF;
    margin-top: 0;
    margin-bottom: 40px;
  }

  .impact-desc {
    font-family: 'Plus Jakarta Sans', var(--font-family);
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.04em;
    color: #7E7E7E;
    max-width: 650px;
    margin: 0 auto;
  }

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1320px;
  }

  .impact-item {
    padding: 40px;
    width: 650px;
    height: 178px;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
  }

  .impact-arrow {
    width: 38px;
    height: 38px;
    margin-top: 11px;
    margin-right: 20px;
    flex-shrink: 0;
    object-fit: contain;
    object-position: left center;
  }

  .impact-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .impact-content h3 {
    margin: 0;
    line-height: 38px;
    /* matches the 38px high title selection box */
  }

  .impact-content p {
    margin-top: 20px;
    /* matches the 20px gap to description */
    line-height: 1.4;
  }

  /* Footer */
  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-contact {
    flex: 1;
    max-width: 500px;
  }

  .contact-form {
    flex: 1;
    max-width: 600px;
  }

  /* Tech Stack Desktop Sizing */
  #tech-stack {
    height: 801px;
    padding: 0;
  }

  #tech-stack .container {
    max-width: 1440px;
    padding: 0 60px;
  }

  #tech-stack .tech-header {
    height: 256px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #tech-stack .tech-header h2 {
    font-size: 60px;
    line-height: 70px;
    margin-bottom: 40px;
  }

  #tech-stack .tech-header p {
    font-size: 18px;
    max-width: 650px;
  }

  .tech-marquee-container {
    gap: 45px;
  }

  .tech-track {
    gap: 0;
  }

  .tech-icon-box {
    width: 140px;
    height: 140px;
    margin-right: 67px;
  }

  .tech-icon-svg {
    width: 80px;
    height: 80px;
  }

  /* Recognition Desktop */

  .recognition-section .container {
    max-width: 1440px;
    padding: 0 60px;
  }

  .recognition-header h2 {
    font-size: 60px;
    line-height: 70px;
    letter-spacing: -0.04em;
  }

  .recognition-desc {
    font-size: 18px;
    max-width: 650px;
  }

  .recognition-grid {
    grid-template-columns: repeat(4, 320px);
    gap: 13px;
    justify-content: center;
  }

  .recognition-card {
    width: 320px;
    height: 230px;
  }

  /* Blue CTA Desktop Sizing */
  body .cta-section {
    max-width: 100%;
    width: 100%;
    padding: 0;
  }

  .blue-cta {
    width: 100%;
    max-width: 100%;
    height: 416px;
    margin: 0;
    border-radius: 0;
    padding: 80px 60px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .blue-cta-content {
    align-items: flex-start;
    text-align: left;
    width: 700px;
    max-width: 700px;
    position: relative;
    z-index: 10;
  }

  .blue-cta-eyebrow {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .blue-cta h2 {
    font-size: 60px;
    line-height: 70px;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    text-align: left;
  }

  .blue-cta p {
    font-size: 18px;
    line-height: 28px;
    text-align: left;
  }

  .blue-cta-right {
    position: absolute;
    left: 1193px;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 701px;
    height: 701px;
    margin: 0;
    display: block;
  }

  .blue-cta-graphics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    transform: none;
  }

  .cta-ellipse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.07);
    border: none;
  }

  .cta-ellipse-lg {
    width: 701px;
    height: 701px;
  }

  .cta-ellipse-md {
    width: 521px;
    height: 521px;
  }

  .cta-ellipse-sm {
    width: 341px;
    height: 341px;
  }

  .blue-cta-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 175px;
    height: 175px;
    background-color: #FFFFFF;
    border-radius: 50%;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  .blue-cta-btn:hover {
    transform: translate(-50%, -50%) scale(1.05);
  }

  .blue-cta-btn img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: brightness(0);
  }
}

/* Mobile Responsive Footer Form Adjustments */
@media (max-width: 768px) {
  body .footer-form {
    width: 100%;
  }

  .form-row-2col {
    flex-direction: column;
    gap: 10px;
  }

  body .form-field {
    width: 100%;
    height: auto;
    min-height: 93px;
  }

  /* Contact Page Info Cards Mobile adjustments */
  .info-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .info-card {
    flex-direction: column;
    height: auto;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 20px;
    gap: 20px;
  }

  .info-content {
    align-items: center;
    text-align: center;
    padding-left: 0;
  }
}

/* Responsive Footer Columns Wrap */
@media (max-width: 991px) {
  .footer-contact-grid {
    flex-direction: column;
    gap: 0px;
  }

  .footer-contact-left {
    gap: 40px;
  }
}

/* Home Page Mobile Responsive Adjustments (Prevents Zoom / Horizontal Scroll) */
@media (max-width: 768px) {

  /* Navigation Container padding and font size fix on mobile */
  .navbar .container {
    padding: 0 20px;
  }

  .navbar-brand {
    font-size: 18px;
  }

  /* Tech Stack Section Mobile Padding & Spacing */
  #tech-stack {
    padding: 60px 0 67px;
  }

  #tech-stack .tech-header {
    margin-bottom: 60px;
  }

  #tech-stack .tech-header h2 {
    margin-top: 10px;
    margin-bottom: 20px;
  }

  /* Services Section Mobile Padding & Spacing */
  #services {
    padding-top: 60px;
  }

  .services-header {
    margin-bottom: 40px;
  }

  .services-header h2 {
    margin-bottom: 20px;
  }

  .services-header .eyebrow {
    margin-bottom: 10px;
  }

  .service-meta {
    gap: 20px;
  }

  .service-icon {
    width: 25px;
    height: 25px;
    margin-top: 4px;
  }

  .service-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 0;
  }

  .service-item.active .service-images {
    display: flex;
    margin-top: 30px;
    width: 100%;
    gap: 8px;
    margin-left: 0;
  }

  .service-images img {
    width: calc((100% - 16px) / 3);
    height: 105px;
    object-fit: cover;
    border-radius: 0;
  }

  /* Portfolio Section Mobile Padding */
  #portfolio {
    padding-bottom: 60px;
  }

  .portfolio-header {
    margin-bottom: 40px;
  }

  .portfolio-header h2 {
    margin-bottom: 20px;
  }

  .portfolio-header .eyebrow {
    margin-bottom: 10px;
  }

  .portfolio-card {
    display: grid;
    grid-template-columns: 1fr;
    padding: 40px 20px 45px;
  }

  .portfolio-info {
    display: contents;
  }

  .portfolio-card h3 {
    order: 1;
    margin-bottom: 10px;
  }

  .portfolio-card p {
    order: 2;
    margin-bottom: 30px;
  }

  .portfolio-card .project-divider {
    order: 3;
    margin-bottom: 30px;
    width: 100%;
  }

  .portfolio-card .portfolio-image {
    order: 4;
    margin-bottom: 30px;
    width: 100%;
    border-radius: 5px;
  }

  .portfolio-card .portfolio-image img {
    border-radius: 5px;
  }

  .portfolio-card .explore-link {
    order: 5;
  }

  /* Testimonials Section */
  .testimonials-section {
    padding: 60px 20px;
  }

  .testimonials-header {
    padding: 0;
    margin-bottom: 40px;
  }

  .testimonials-header h2 {
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .testimonials-header .eyebrow {
    margin-bottom: 10px;
  }

  .testimonial-card {
    width: 353px;
    height: 225px;
    padding: 30px 20px;
  }

  .testimonials-track {
    gap: 10px;
  }

  /* Impact Section Mobile Layout */
  .impact-section {
    padding: 60px 20px;
    height: auto;
  }

  .impact-header {
    margin-bottom: 40px;
  }

  .impact-header h2 {
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .impact-header .eyebrow {
    margin-bottom: 10px;
  }

  .impact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .impact-item {
    padding: 30px 20px;
  }

  .impact-arrow {
    width: 25px;
    height: 25px;
    margin-right: 20px;
    margin-top: 4px;
  }

  /* Recognition Section padding and grid fix on mobile */
  .recognition-section {
    padding: 60px 0px;
  }

  .recognition-header {
    margin-bottom: 40px;
  }

  .recognition-header h2 {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 20px;
  }

  .recognition-header .eyebrow {
    margin-bottom: 10px;
  }

  .recognition-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    justify-content: center;
    max-width: 353px;
    margin: 0 auto;
  }

  .recognition-card {
    width: 100%;
    max-width: 353px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #111111;
    border: 1px solid #2A2A2A;
    border-radius: 12px;
    padding: 31px 89px 31.5px 89px;
    box-sizing: border-box;
  }

  .logo-upwork {
    width: 175px;
    height: auto;
    max-height: 87.5px;
  }

  .logo-guru {
    width: 175px;
    height: auto;
  }

  .logo-fiverr {
    width: 175px;
    height: auto;
  }

  .logo-pph {
    width: 175px;
    height: auto;
  }

  /* Blue CTA mobile scaling and layout adjustments */
  /* Blue CTA mobile scaling and layout adjustments */
  .blue-cta {
    padding: 60px 20px 40px 20px;
    height: 966px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    background-color: #006AEE;
    position: relative;
    overflow: hidden;
  }

  .blue-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/Mask group (1).png');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    pointer-events: none;
  }

  .blue-cta-content {
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 0px;
    z-index: 2;
  }

  .blue-cta-eyebrow {
    font-size: 16px;
    text-transform: none;
    letter-spacing: -0.6px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
  }

  .blue-cta h2 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: -1.6px;
  }

  .blue-cta p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    text-align: center;
  }

  .blue-cta-right {
    width: 100%;
    height: 521px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 0px;
    z-index: 2;
  }

  .blue-cta-graphics {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 521px;
    height: 521px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1;
  }

  .cta-ellipse-lg {
    width: 521px;
    height: 521px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.07);
    border: none;
    position: absolute;
  }

  .cta-ellipse-md {
    width: 341px;
    height: 341px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.07);
    border: none;
    position: absolute;
  }

  .cta-ellipse-sm {
    width: 175px;
    height: 175px;
    border-radius: 50%;
    background-color: #ffffff;
    border: none;
    position: absolute;
  }

  .blue-cta-btn {
    width: 175px;
    height: 175px;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
  }

  .blue-cta-btn img {
    width: 175px;
    height: 175px;
    object-fit: contain;
  }

  /* Banner Image height adjustment on mobile */
  .banner-wrapper {
    height: 300px;
  }

  /* Footer wrapper padding and bottom bar negative margin overflow fixes */
  .footer-wrapper {
    padding: 60px 20px;
  }

  .footer-contact-left {
    text-align: center;
    align-items: center;
  }

  .footer-contact-header {
    text-align: center;
  }

  .footer-heading {
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .footer-contact-header .eyebrow {
    margin-bottom: 10px;
  }

  .footer-contact-desc {
    margin-bottom: 60px;
  }

  .footer-contact-info {
    margin-bottom: 60px;
    padding: 0 17px;
    text-align: center;
  }

  .footer-email {
    font-size: 30px;
    word-break: break-all;
  }

  .footer-nda-text {
    text-align: center;
    margin-top: 0px;
  }

  .footer-submit-btn {
    height: 44px;
    font-size: 15px;
  }

  .footer-bottom-bar {
    margin-left: 0;
    margin-right: 0;
    padding: 60px 0px 0px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .footer-bottom-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .footer-bottom-links .link-dot {
    display: none;
  }

  /* Hero Section mobile view adjustments */
  .hero {
    height: auto;
    min-height: auto;
    padding: 212px 20px 175px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .hero p {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

/* ==========================================================================
   About Us Intro Section (Figma Design Layout)
   ========================================================================== */
.about-us-intro-section {
  background-color: #171717;
  padding: 0px 60px 60px;
  color: #FFFFFF;
}

.about-us-intro-section .container {
  max-width: 1320px;
  width: 100%;
  height: 790.01px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
}

.about-intro-image-wrapper {
  flex: 0 0 559px;
  height: 790px;
  border-radius: 5px;
  overflow: hidden;
}

.about-intro-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-intro-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 701px;
  height: 790.01px;
}

.about-intro-header-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  height: 368px;
}

.about-intro-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 170px;
}

.about-intro-header .eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  color: #7E7E7E;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.about-intro-header h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 60px;
  font-weight: 800;
  line-height: 70px;
  letter-spacing: -0.04em;
  color: #FFFFFF;
  margin: 0;
}

.about-intro-desc {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 158px;
}

.about-intro-desc p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  line-height: 23px;
  color: #7E7E7E;
  margin: 0;
  letter-spacing: -0.04em;
}

.about-intro-stats {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 60px;
  column-gap: 60px;
  height: 266.01px;
}

/* Horizontal line between rows */
.about-intro-stats::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background-color: #3F3F3F;
}

/* Vertical line between columns */
.about-intro-stats::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #3F3F3F;
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 2;
}

.stat-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 63px;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: -4px;
}

.stat-card p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: #7E7E7E;
  margin: 0;
  letter-spacing: -0.03em;
}

.about-enquiry-btn {
  align-self: flex-start;
}

/* Mobile Responsiveness for About Us Section */
@media (max-width: 1024px) {
  .about-us-intro-section .container {
    flex-direction: column-reverse;
    height: auto;
    gap: 40px;
    padding: 0 40px;
  }

  .about-intro-image-wrapper {
    flex: none;
    width: 100%;
    height: auto;
    aspect-ratio: 559 / 790;
  }

  .about-intro-content {
    max-width: 100%;
    height: auto;
  }

  .about-intro-header-wrapper,
  .about-intro-header,
  .about-intro-desc,
  .about-intro-stats {
    height: auto;
  }
}

@media (max-width: 768px) {
  .about-us-intro-section {
    padding: 0px 0;
  }

  .about-us-intro-section .container {
    padding: 0 20px;
    gap: 40px;
  }

  .about-intro-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-intro-header-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .about-intro-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .about-intro-header h2 {
    font-size: 36px;
    line-height: 44px;
    text-align: center;
  }

  .about-intro-desc p {
    text-align: center;
  }

  .about-intro-stats {
    row-gap: 30px;
    column-gap: 30px;
    width: 100%;
  }

  .stat-card {
    align-items: center;
    text-align: center;
  }

  .about-enquiry-btn {
    align-self: center;
  }
}

/* Services Grid Section */
.services-grid-section {
  /* padding: 100px 0; */
  background-color: var(--color-bg-primary);
}

.services-grid-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-grid-header .eyebrow {
  display: block;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.services-grid-header h2 {
  font-family: 'Plus Jakarta Sans', var(--font-family);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #FFFFFF;
  margin-top: 10px;
  margin-bottom: 24px;
}

.services-grid-header p {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-secondary);
  max-width: 680px;
  margin: 0 auto;
}

.services-slider-wrapper {
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
}

.services-slider-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 0;
  cursor: grab;
  user-select: none;
}

.services-slider-track.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.services-slider-track::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.services-slider-track {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.service-grid-card {
  flex: 0 0 550px;
  height: 688px;
  scroll-snap-align: start;
  padding: 50px 38px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.service-grid-card:nth-child(1) {
  background-color: #1F1F1F;
}

.service-grid-card:nth-child(2) {
  background-color: #262626;
}

.service-grid-card:nth-child(3) {
  background-color: #2E2E2E;
}

.service-grid-card:nth-child(4) {
  background-color: #363636;
}

.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 362px;
  margin-bottom: 50px;
  border-bottom: 1px solid #3F3F3F;
  padding-bottom: 0;
  box-sizing: border-box;
}

.service-card-img-wrapper {
  width: 276px;
  height: 362px;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.service-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px 5px 0px 0px;
}

.service-card-num {
  font-family: 'Plus Jakarta Sans', var(--font-family);
  font-size: 100px;
  font-weight: 300;
  line-height: 110px;
  color: #7E7E7E;
  letter-spacing: -0.04em;
  user-select: none;
  align-self: flex-start;
  margin-left: auto;
}

.service-card-bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
  gap: 20px;
  height: 176px;
  box-sizing: border-box;
}

.service-card-bottom h3 {
  font-family: 'Plus Jakarta Sans', var(--font-family);
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: -0.04em;
  color: #FFFFFF;
  margin: 0;
}

.service-card-bottom p {
  font-family: 'Plus Jakarta Sans', var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.03em;
  color: #7E7E7E;
  margin: 0;
  width: 100%;
  max-width: 470px;
}

.services-grid-action {
  text-align: center;
}

/* Responsive adjustments for Services Slider */

@media (max-width: 768px) {
  .services-grid-section {
    padding: 60px 0;
  }

  .services-slider-wrapper {
    padding: 0 20px;
  }

  .services-slider-track {
    flex-direction: column;
    overflow-x: visible;
  }

  .service-grid-card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 40px 20px;
  }

  .service-card-top {
    height: auto;
    margin-bottom: 30px;
    align-items: flex-end;
  }

  .service-card-img-wrapper {
    width: 60%;
    height: auto;
    aspect-ratio: 276 / 362;
  }

  .service-card-num {
    font-size: 70px;
    line-height: 80px;
  }

  .service-card-bottom {
    height: auto;
    gap: 15px;
  }

  .service-card-bottom h3 {
    font-size: 24px;
    line-height: 30px;
  }

  .service-card-bottom p {
    font-size: 15px;
    line-height: 20px;
  }
}

/* Why Choose Us Section */
.why-choose-us-section {
  padding: 80px 0;
  background-color: #0F0F0F;
}

.why-choose-us-section .container {
  max-width: 1440px;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
}

.why-choose-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-choose-header .eyebrow {
  display: block;
  font-family: 'Plus Jakarta Sans', var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  letter-spacing: -0.04em;
  color: #7E7E7E;
  margin-bottom: 10px;
}

.why-choose-header h2 {
  font-family: 'Plus Jakarta Sans', var(--font-family);
  font-size: 60px;
  font-weight: 800;
  line-height: 70px;
  text-align: center;
  letter-spacing: -0.04em;
  color: #FFFFFF;
  margin-top: 0;
  margin-bottom: 40px;
}

.why-choose-header p {
  font-family: 'Plus Jakarta Sans', var(--font-family);
  font-size: 18px;
  font-weight: 400;
  line-height: 23px;
  text-align: center;
  letter-spacing: -0.04em;
  color: #7E7E7E;
  max-width: 700px;
  margin: 0 auto;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 40px;
}

.why-choose-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.why-choose-img-card {
  border-radius: 5px;
  overflow: hidden;
}

.why-choose-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-choose-col .img-top {
  height: 277px;
}

.why-choose-col .img-bottom {
  height: 277px;
}

.why-choose-col .img-full {
  height: 494px;
}

.why-choose-text-card {
  background-color: #171717;
  border: 1px solid #3F3F3F;
  border-radius: 5px;
  height: 202px;
  padding: 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.why-choose-text-card h3 {
  font-family: 'Plus Jakarta Sans', var(--font-family);
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: -0.04em;
  color: #FFFFFF;
  margin: 0;
}

.why-choose-text-card p {
  font-family: 'Plus Jakarta Sans', var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.03em;
  color: #7E7E7E;
  margin: 0;
}

/* Achievements Row */
.achievements-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.achievement-badge {
  flex: 1;
  height: 150px;
  background: linear-gradient(180deg, rgba(0, 106, 238, 0.5) 0%, rgba(17, 44, 77, 0.5) 65.87%, rgba(23, 23, 23, 0.5) 100%);
  border-radius: 5px;
  display: flex;
  align-items: center;
  padding: 34.19px 22.59px 33.81px 23px;
  gap: 40px;
  box-sizing: border-box;
}

.achievement-icon {
  width: 83.65px;
  height: 81.69px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.achievement-title {
  font-family: 'Plus Jakarta Sans', var(--font-family);
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: -0.04em;
  color: #FFFFFF;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .why-choose-us-section .container {
    padding: 0 20px;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .why-choose-col {
    gap: 15px;
  }

  .why-choose-col .img-top,
  .why-choose-col .img-bottom {
    height: 227px;
  }

  .why-choose-col .img-full {
    height: 406px;
  }

  .why-choose-text-card {
    height: 234px;
    padding: 30px 40px;
  }

  .achievements-row {
    flex-direction: column;
    gap: 15px;
  }

  .achievement-badge {
    height: 144px;
    padding: 20px 30px;
    gap: 20px;
  }

  .achievement-icon {
    width: 63.41px;
    height: 61.93px;
  }

  .achievement-icon svg {
    width: 100%;
    height: 100%;
  }

  .achievement-title {
    font-size: 24px;
    line-height: 30px;
  }
}

@media (max-width: 768px) {
  .why-choose-us-section {
    padding: 60px 0;
  }

  .why-choose-header h2 {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 20px;
  }

  .why-choose-header p {
    font-size: 16px;
    line-height: 20px;
  }
}

/* Vision Section Styling */
.vision-section {
  background-color: #0F0F0F;
  /* Match exact background */
  padding: 40px 0 0 0;
  /* Capped to 40px */
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  height: 747px;
  /* Match exact height */
}

.vision-container {
  width: 1440px;
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0px 0px 0px 18px;
  /* Set back to 67px to align grid elements */
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  box-sizing: border-box;
}

/* Text Container */
.vision-text-wrapper {
  width: 690px;
  height: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 60px;
  /* Frame 107 gap */
  position: relative;
  z-index: 5;
  box-sizing: border-box;
}

/* Frame 106 wrapper containing eyebrow + title */
.vision-header-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 168px;
  height: 100px;
}

.vision-eyebrow {
  display: block;
  width: 168px;
  height: 20px;
  font-family: 'Plus Jakarta Sans', var(--font-family);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.04em;
  color: #7E7E7E;
  margin-bottom: 0;
  text-transform: none;
}

.vision-title {
  display: block;
  width: 168px;
  height: 70px;
  font-family: 'Plus Jakarta Sans', var(--font-family);
  font-style: normal;
  font-weight: 800;
  font-size: 60px;
  line-height: 70px;
  letter-spacing: -0.04em;
  color: #FFFFFF;
  margin: 0;
  text-align: left;
}

.vision-desc {
  width: 690px;
  height: 200px;
  font-family: 'Plus Jakarta Sans', var(--font-family);
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: -0.04em;
  color: #FFFFFF;
  margin: 0;
}

.vision-desc-muted {
  color: #7E7E7E;
}



/* Background Grids aligned exactly to bottom line */
.vision-bg-grid-left {
  position: absolute;
  left: 22px;
  top: 442px;
  /* 2351px - 1814px offset precisely matching 801px container height */
  width: 1056px;
  height: 264px;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.vision-bg-grid-right {
  position: absolute;
  right: 10px;
  top: 442px;
  /* 2351px - 1814px offset precisely matching 801px container height */
  width: 264px;
  height: 264px;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.bg-row {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 88px;
}

.bg-cell {
  width: 88px;
  height: 88px;
  border: 1px solid #3F3F3F;
  background: #171717;
  box-sizing: border-box;
}

.bg-cell.empty {
  border: none;
  background: transparent;
}

/* Right-Side Geometric Accent Grid */
.vision-accent-blocks {
  position: absolute;
  left: 990px;
  top: 50px;
  /* 1951px - 1812px offset */
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 5;
}

.accent-row {
  display: flex;
  gap: 0;
}

.accent-box {
  width: 88px;
  height: 88px;
  box-sizing: border-box;
}

.accent-box.border-blue {
  border: 1px solid #006AEE;
  background: #171717;
}

.accent-box.empty {
  border: none;
  background-color: transparent;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .vision-container {
    height: auto;
    flex-direction: column;
    padding: 0 40px;
    gap: 60px;
  }

  .vision-bg-grid-left,
  .vision-bg-grid-right {
    display: none;
  }

  .vision-accent-blocks {
    position: relative;
    left: auto;
    top: auto;
    align-self: center;
    margin-right: 0;
  }
}

/* Hide mobile-only grey grid elements on desktop */
.mobile-grey-left,
.mobile-grey-right {
  display: none;
}

@media (max-width: 768px) {

  /* ── SECTION ──────────────────────────────────────────────── */
  .vision-section {
    background-color: #0F0F0F;
    height: auto;
    padding: 0px 0px 2px 0px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
  }

  /* ── CONTAINER: Frame 428 (353px content, 20px margins) ───── */
  .vision-container {
    width: 100%;
    max-width: 393px;
    height: auto;
    padding: 60px 20px 0px;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    /* Frame 428 gap between text and grid */
  }

  /* ── TEXT BLOCK: Group 271 → width:100% uses container padding ── */
  .vision-text-wrapper {
    width: 100%;
    height: auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    box-sizing: border-box;
  }

  .vision-header-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .vision-eyebrow {
    width: 100%;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    letter-spacing: -0.04em;
    color: #7E7E7E;
    text-transform: none;
    margin: 0;
  }

  .vision-title {
    width: 100%;
    font-size: 40px;
    line-height: 50px;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
    letter-spacing: -0.04em;
  }

  .vision-desc {
    width: 100%;
    height: auto;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* ── DESKTOP GRIDS: hidden on mobile ─────────────────────── */
  .vision-bg-grid-left,
  .vision-bg-grid-right {
    display: none;
  }

  /* ── ACCENT BLOCKS: Group 495 scaled down (238.5×362px) ────────────────── */
  .vision-accent-blocks {
    position: relative;
    width: 238.5px;
    height: 362px;
    flex-shrink: 0;
    margin: 0 auto;
    left: auto;
    top: auto;
  }

  /* Make accent rows transparent on mobile so children position relative to accent-blocks */
  .vision-accent-blocks .accent-row {
    display: contents;
  }

  /* Hide all accent boxes by default on mobile; only show the 4 blue ones */
  body .vision-accent-blocks .accent-box {
    display: none;
  }

  /* ── BLUE T-SHAPE BOXES (Scaled to 47.7px) ─────────────────────── */
  body .vision-accent-blocks .accent-box-2 {
    display: block;
    position: absolute;
    left: 95.4px;
    top: 0px;
    width: 47.7px;
    height: 47.7px;
    border: 1px solid #006AEE;
    background: #171717;
    box-sizing: border-box;
  }

  body .vision-accent-blocks .accent-box-3 {
    display: block;
    position: absolute;
    left: 143.1px;
    top: 0px;
    width: 47.7px;
    height: 47.7px;
    border: 1px solid #006AEE;
    background: #171717;
    box-sizing: border-box;
  }

  body .vision-accent-blocks .accent-box-5 {
    display: block;
    position: absolute;
    left: 95.4px;
    top: 47.7px;
    width: 47.7px;
    height: 47.7px;
    border: 1px solid #006AEE;
    background: #171717;
    box-sizing: border-box;
  }

  body .vision-accent-blocks .accent-box-8 {
    display: block;
    position: absolute;
    left: 95.4px;
    top: 95.4px;
    width: 47.7px;
    height: 47.7px;
    border: 1px solid #006AEE;
    background: #171717;
    box-sizing: border-box;
  }

  /* ── GREY GRID LEFT (2 cols × 3 rows, left:0, top:219px) ────── */
  .mobile-grey-left {
    display: grid;
    grid-template-columns: 47.7px 47.7px;
    grid-template-rows: 47.7px 47.7px 47.7px;
    position: absolute;
    left: 0px;
    top: 219px;
  }

  /* ── GREY GRID RIGHT ─────────────────────────────────── */
  .mobile-grey-right {
    display: grid;
    grid-template-columns: 47.7px 47.7px;
    grid-template-rows: 47.7px 47.7px 47.7px;
    position: absolute;
    left: 143.1px;
    right: auto;
    top: 219px;
  }

  /* Grey cell default style */
  .mgc {
    background: #171717;
    border: 1px solid #3F3F3F;
    box-sizing: border-box;
  }

  /* Empty placeholder cell (top-left of right group) */
  .mgc.mgc-empty {
    background: transparent;
    border: none;
  }
}

/* Team Section Styling */
.team-section {
  background-color: #171717;
  /* Matches Group 14 background color */
  padding: 80px 0 80px 0;
  /* 2693px top padding margin offset */
  width: 100%;
  height: 1602px;
  /* Set layout block height */
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

.team-container {
  width: 1440px;
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 60px;
  /* Align to left: 60px figma offset */
  position: relative;
  box-sizing: border-box;
}

/* Frame 419 */
.team-header-wrapper {
  width: 1319px;
  max-width: 100%;
  height: 256px;
  margin: 0 auto 60px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  box-sizing: border-box;
}

.team-header-title-box {
  width: 650px;
  max-width: 100%;
  height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.team-eyebrow {
  width: 92px;
  height: 20px;
  font-family: 'Plus Jakarta Sans', var(--font-family);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: -0.04em;
  color: #7E7E7E;
}

.team-main-title {
  width: 650px;
  height: 140px;
  font-family: 'Plus Jakarta Sans', var(--font-family);
  font-style: normal;
  font-weight: 800;
  font-size: 60px;
  line-height: 70px;
  text-align: center;
  letter-spacing: -0.04em;
  color: #FFFFFF;
  margin: 0;
}

.team-header-desc {
  width: 700px;
  max-width: 100%;
  height: 46px;
  font-family: 'Plus Jakarta Sans', var(--font-family);
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  text-align: center;
  letter-spacing: -0.04em;
  color: #7E7E7E;
  margin: 0;
}

/* Team Grid - Frame 418 */
.team-grid {
  display: flex;
  flex-direction: column;
  width: 1319px;
  max-width: 100%;
  margin: 0 auto;
  gap: 60px;
  box-sizing: border-box;
}

.team-row {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 13px;
}

.team-card {
  width: 320px;
  height: 533px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
  box-sizing: border-box;
  transition: opacity 0.4s ease, filter 0.4s ease;
}

/* Hide duplicated infinite slider cards on desktop view (only show 4 cards per row) */
.team-card:nth-child(n+5) {
  display: none;
}

.team-card-image-box {
  width: 320px;
  height: 430px;
  background-color: #0F0F0F;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.team-card-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  filter: grayscale(100%);
  mix-blend-mode: luminosity;
  opacity: 0.5;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Hover state transitions image to color and scales it */
.team-card-image-box:hover img {
  filter: grayscale(0%);
  mix-blend-mode: normal;
  opacity: 1;
  transform: scale(1.05);
}

/* Radial Glow background highlight starts hidden */
.team-card-radial-glow {
  position: absolute;
  width: 406px;
  height: 528px;
  left: -43px;
  top: 189px;
  background: radial-gradient(circle, rgba(0, 106, 238, 0.4) 0%, rgba(0, 106, 238, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Display spotlight glow on image box hover */
.team-card-image-box:hover .team-card-radial-glow {
  opacity: 1;
}

/* Team Info */
.team-member-info {
  width: 270px;
  height: 73px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  /* Frame 108 gap */
}

.team-member-name {
  width: 270px;
  height: 38px;
  font-family: 'Plus Jakarta Sans', var(--font-family);
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 38px;
  text-align: center;
  letter-spacing: -0.04em;
  color: #FFFFFF;
  margin: 0;
}

.team-member-role {
  width: 270px;
  height: 20px;
  font-family: 'Plus Jakarta Sans', var(--font-family);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: -0.03em;
  color: #7E7E7E;
}

/* Media query to stack layouts gracefully on intermediate widths */
@media (max-width: 1400px) {
  .team-section {
    height: auto;
  }

  .team-container {
    padding: 0 40px;
  }

  .team-grid {
    justify-content: center;
    height: auto;
  }
}

@media (max-width: 768px) {
  .team-section {
    background-color: #171717;
    padding: 60px 0;
    /* 60px top & bottom outer spacing */
    height: 1218px;
    /* Match total section canvas height precisely */
    box-sizing: border-box;
  }

  .team-container {
    width: 393px;
    max-width: 100%;
    height: 1098px;
    /* Match inner height coordinate Group 509 */
    padding: 0 0px;
    /* 20px side margins precisely */
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  /* Frame 433 */
  .team-header-wrapper {
    width: 353px;
    height: 208px;
    gap: 20px;
    margin: 0 auto 60px auto;
    /* 40px bottom gap between header wrapper and sliders */
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
  }

  .team-header-title-box {
    width: 353px;
    height: 128px;
    gap: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .team-eyebrow {
    width: 353px;
    height: 18px;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
  }

  .team-main-title {
    width: 320px;
    height: 100px;
    font-size: 40px;
    line-height: 50px;
    text-align: center;
    margin: 0;
  }

  .team-header-desc {
    width: 353px;
    height: 60px;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    margin: 0;
  }

  /* Frame 418 */
  .team-grid {
    display: flex;
    flex-direction: column;
    width: 393px;
    /* Match Mask group width */
    height: 850px;
    /* Match Mask group height precisely */
    gap: 0;
    /* Reset gaps; row spacings are controlled by absolute translates and row-margins */
    margin: 0 auto;
    overflow: hidden;
    position: relative;
  }

  /* Style individual sliding tracks for mobile horizontal view */
  .team-row {
    display: flex;
    flex-direction: row;
    width: max-content;
    gap: 20px;
    /* 20px card grid spacing precisely matching Group 507/506 offsets */
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    position: absolute;
  }

  /* Slider 1: slides from right to left (normal forward direction) */
  .team-row-1 {
    top: 0px;
    /* Aligns to top of Mask group: top 248px */
    animation: slide-right-to-left 25s linear infinite;
  }

  /* Slider 2: slides from left to right (reverse direction) */
  .team-row-2 {
    top: 445px;
    /* Aligns to row 2 of Mask group: top 693px (248px + 445px) */
    animation: slide-left-to-right 25s linear infinite;
  }

  @keyframes slide-right-to-left {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }

  @keyframes slide-left-to-right {
    0% {
      transform: translateX(-50%);
    }

    100% {
      transform: translateX(0);
    }
  }

  /* Enable card display in row track */
  .team-card {
    width: 245px;
    /* Proportional Figma mobile card width sizing */
    height: auto;
    gap: 20px;
    flex-shrink: 0;
    /* Prevent items from shrinking */
    transition: opacity 0.4s ease, filter 0.4s ease;
  }

  .team-card:nth-child(n+5) {
    display: flex;
  }

  /* Group 415 size */
  .team-card-image-box {
    width: 245px;
    height: 330px;
    /* Exact Group 415 height */
    background-color: #0F0F0F;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
  }

  .team-card-radial-glow {
    width: 311px;
    height: 405px;
    left: -33px;
    top: 145px;
  }

  /* Frame 108 text box positioning inside auto layout */
  .team-member-info {
    width: 245px;
    height: 55px;
    gap: 5px;
    position: relative;
    margin-top: 0;
  }

  .team-member-name {
    width: 245px;
    height: 32px;
    font-size: 25px;
    line-height: 32px;
  }

  .team-member-role {
    width: 245px;
    height: 18px;
    font-size: 14px;
    line-height: 18px;
  }
}