/* ================= GLOBAL STYLES ================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
  color: #0f172a;
  font-family: "Plus Jakarta Sans", sans-serif;
  overflow-x: hidden;
}

/* --- Shared Reveal Animation Styles --- */
:root {
  --transition-reveal: cubic-bezier(0.23, 1, 0.32, 1);
  --brand-accent: #0004ff;
  --brand-deep: #1e293b;
  --soft-bg: #ffffff;
  --trace-base: #b6c2e2;
  --trace-glow: #2563eb;
  --data-pulse: #3b82f6;
  --chip-gradient: linear-gradient(135deg, #4f83ff, #2b4fd9);
}

.reveal {
  opacity: 0;
  transition: opacity 0.3s;
}

.reveal-visible {
  animation: motion-revealIn 1.8s var(--transition-reveal) forwards;
}

.reveal:nth-child(2) {
  animation-delay: 0.15s;
}

.reveal:nth-child(3) {
  animation-delay: 0.3s;
}

.reveal:nth-child(4) {
  animation-delay: 0.45s;
}

@keyframes motion-revealIn {
  0% {
    opacity: 0;
    clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    transform: translateY(0);
  }
}

/* ================= UNIFIED HEADER STYLES ================= */
header {
  height: 70px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  border-bottom: 1px solid #eaeaea;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo img {
  height: 42px;
  object-fit: contain;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  width: 40px;
  height: auto;
}

.logo-text h1 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  background-image: linear-gradient(to right, #0603ae, #ba1de1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-family: "Plus Jakarta Sans", sans-serif;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: #111;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #6344f5;
}

/* ================= UNIQUE HEADER GRADIENTS ================= */
.header-gradient-hero {
  background: linear-gradient(135deg, #280071, #e32ecb, #200082);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: gradientMove 5s ease infinite;
}

.header-gradient-research {
  background: linear-gradient(135deg, #0052d4, #40079c, #450790);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.header-gradient-pillars {
  background: linear-gradient(135deg, #1a2980, #8f0781);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.header-gradient-industries {
  background: linear-gradient(135deg, #a30026, #004aa5);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.header-gradient-dynamic {
  background: linear-gradient(135deg, #330076, #01831b);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.header-gradient-contact {
  background: linear-gradient(to right, #6242b2, #0f13f9);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* ================= UNIFIED BUTTON STYLES ================= */
.btn-book-demo-1,
.btn-book-demo-2,
.btn-book-demo-3,
.btn-explore-dynamic,
.btn-send-message,
.btn-footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  color: #ffffff;
  background: linear-gradient(180deg, #8b6dfa 0%, #6344f5 100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
  text-decoration: none;
  width: max-content;
}

.btn-book-demo-1::before,
.btn-book-demo-2::before,
.btn-book-demo-3::before,
.btn-explore-dynamic::before,
.btn-send-message::before,
.btn-footer-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  width: 84%;
  height: 40%;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.25) 0%,
      transparent 100%);
  border-radius: 50px;
  pointer-events: none;
}

.btn-book-demo-1:hover,
.btn-book-demo-2:hover,
.btn-book-demo-3:hover,
.btn-explore-dynamic:hover,
.btn-send-message:hover,
.btn-footer-cta:hover {
  transform: translateY(-2px) scale(1.02);
  background: linear-gradient(180deg, #997eff 0%, #7053ff 100%);
}

.btn-book-demo-1:active,
.btn-book-demo-2:active,
.btn-book-demo-3:active,
.btn-explore-dynamic:active,
.btn-send-message:active,
.btn-footer-cta:active {
  transform: scale(0.98);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25) inset;
}

/* Specific Button Adjustments */
.btn-send-message {
  margin: 0 auto;
  width: auto;
}

.btn-footer-cta {
  font-size: 14px;
  padding: 12px 24px;
}

/* ================= HERO SECTION STYLES ================= */
.hero-container {
  position: relative;
  width: 100%;
  height: calc(100vh - 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: #ffffff;
}

#networkCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.6;
  pointer-events: auto;
}

.main-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 1.5rem;
}

.content-wrapper {
  position: relative;
  transform: scale(0.75);
  transform-origin: center center;
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
}

.content-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 200%;
  background: radial-gradient(ellipse at center,
      rgba(255, 255, 255, 1) 20%,
      rgba(255, 255, 255, 0.8) 50%,
      rgba(255, 255, 255, 0) 75%);
  z-index: -1;
  pointer-events: none;
  filter: blur(10px);
}

.hero-container h1 {
  font-size: 5.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 2rem 0;
  color: #001547;
  position: relative;
}

.hero-container p {
  font-size: 1.5rem;
  color: #000000;
  line-height: 1.625;
  max-width: 48rem;
  margin: 0 auto;
  font-weight: 500;
  position: relative;
}

/* ================= RESEARCH & INNOVATION (PCB SECTION) ================= */
.research-section {
  background: #ffffff;
  padding: 10px 0;
  overflow: hidden;
}

.main-container {
  display: flex;
  width: 100%;
  margin: 0 auto;
  align-items: center;
  gap: 40px;
  padding: 20px 50px;
}

.text-section {
  flex: 0 0 50%;
}

.text-section h1 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.text-section p {
  font-size: 1.22rem;
  line-height: 1.68;
  color: #334155;
}

.chip-section {
  flex: 0 0 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pcb-wrapper {
  position: relative;
  width: 400px;
  height: 400px;
}

.main-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 10px 25px rgba(37, 99, 235, 0.15));
}

.processor-core {
  fill: url(#chipGrad);
  stroke: rgba(37, 99, 235, 0.35);
  stroke-width: 5;
  filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.35));
  transform-box: fill-box;
  transform-origin: center;
}

.sub-chip {
  fill: #eef2ff;
  stroke: #c7d2fe;
  stroke-width: 1;
}

.trace-line {
  fill: none;
  stroke: var(--trace-base);
  stroke-width: 1.5;
}

.data-pulse {
  fill: none;
  stroke: var(--data-pulse);
  stroke-width: 2;
  stroke-dasharray: 15 150;
  stroke-linecap: round;
  animation: moveData 4s linear infinite;
}

.node-glow {
  fill: var(--data-pulse);
  animation: blink 2s infinite;
  filter: drop-shadow(0 0 6px rgba(59, 130, 246, 0.8));
}

.ai-text {
  fill: #ffffff;
  font-weight: 800;
  font-size: 48px;
  pointer-events: none;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

@keyframes moveData {
  to {
    stroke-dashoffset: -165;
  }
}

@keyframes blink {

  0%,
  100% {
    opacity: 0.35;
  }

  50% {
    opacity: 1;
  }
}

/* ================= EDGE TO CLOUD FLOW STYLES ================= */
.flow-wrapper {
  margin: 10px auto;
  margin-top: 50px;
}

.flow-wrapper-heading {
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.5px;

  background: linear-gradient(135deg, #036c60, #9c0768, #90078e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* important for Chrome/Safari */
  background-clip: text;
  color: transparent;
}

.flow-svg {
  width: 100%;
  height: auto;
}

.flow-line {
  fill: none;
  stroke: url(#flowGradient);
  stroke-width: 4;
  stroke-dasharray: 14;
  animation: dash 2s linear infinite;
  opacity: 0.5;
}

@keyframes dash {
  to {
    stroke-dashoffset: -28;
  }
}

.node rect {
  fill: #ffffff;
  stroke-width: 2;
  opacity: 0.25;
  transition: all 0.3s ease;
}

.node text {
  text-anchor: middle;
  dominant-baseline: middle;
  pointer-events: none;
}

.node .title-svg {
  font-size: 12.6px;
  font-weight: 600;
  fill: #111827;
  transition: opacity 0.3s ease;
}

.node .desc-svg {
  font-size: 10.8px;
  fill: #6b7280;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.node.active rect {
  stroke: #6366f1;
  opacity: 1;
}

.node.active .title-svg,
.node.active .desc-svg {
  opacity: 1;
}

.node.hover rect {
  stroke: #6366f1;
  opacity: 1;
}

.node.hover .title-svg,
.node.hover .desc-svg {
  opacity: 1;
}

/* ================= PILLARS SECTION STYLES ================= */
.main-wrapper {
  margin: 0 auto;
  position: relative;
}

.heading-area {
  text-align: center;
}

.heading-area h1 {
  font-size: 3.24rem;
  font-weight: 800;
  padding-bottom: 35px;
  line-height: 1.1;
}

.pillar-row {
  position: relative;
  min-height: 500px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  margin-bottom: 10px;
  overflow: hidden;
}

.pillar-row::before {
  content: "";
  position: absolute;
  top: -10%;
  height: 120%;
  width: 40%;
  min-width: 400px;
  z-index: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.visual-box {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  height: 100%;
  padding: 20px 0;
}

.text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 40px 70px;
  z-index: 3;
}

.floating-img {
  width: 370px;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.22);
  transition: all 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
  transform: translateY(30px);
}

.pillar-row.active .floating-img {
  opacity: 1;
  transform: translateY(0);
}

.text-box h2 {
  font-size: 2.565rem;
  margin-bottom: 24px;
  line-height: 1.15;
}

.text-box p {
  font-size: 1.152rem;
  color: #444;
  line-height: 1.65;
  margin-bottom: 32px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 30px;
  list-style: none;
  margin-bottom: 40px;
  padding-left: 0;
}

.feature-grid li::before {
  content: "●";
  margin-right: 12px;
  font-size: 1.1rem;
}

.row-left::before {
  left: -100px;
  background: linear-gradient(135deg, #0081ff, #0055cc);
  clip-path: polygon(0% 0%, 100% 0%, 80% 100%, 0% 100%);
}

.row-left .feature-grid li::before {
  color: #0081ff;
}

.row-right::before {
  right: -100px;
  background: linear-gradient(135deg, #c0f44f, #a3d82b);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.row-right .text-box {
  grid-column: 1;
  padding-left: 100px;
}

.row-right .visual-box {
  grid-column: 2;
}

.row-right .feature-grid li::before {
  color: #a3d82b;
}

.row-violet::before {
  background: linear-gradient(135deg, #9873ff, #7b4fff);
}

.row-violet .feature-grid li::before {
  color: #9873ff;
}

/* ================= INDUSTRIES SECTION ================= */
.industries-section {
  background: #ffffff;
  padding: 40px 0 10px;
}

.industries-inner {
  margin: 0 auto;
  padding: 0 20px;
}

.industries-inner h1 {
  font: size 3.24em;
  font-weight: 800;
  margin-bottom: 30px;
  margin-top: 30px;
  text-align: center;
}

.carousel-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

.carousel-track {
  display: flex;
  width: calc(240px * 12);
  will-change: transform;
}

.industry-box {
  min-width: 220px;
  height: 220px;
  margin: 0 10px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.industry-box .text-overlay {
  position: absolute;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
}

.industry-box:hover {
  flex-direction: column;
  height: auto;
}

.industry-box:hover img {
  opacity: 1;
  transform: scale(1.05);
  height: 180px;
}

.industry-box:hover .text-overlay {
  position: relative;
  color: #111;
  text-shadow: none;
  margin-top: 15px;
  padding: 0;
}

/* ================= DYNAMIC FEATURES SECTION ================= */
.dynamic-features-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px;
  min-height: 500px;
}

.blob {
  position: absolute;
  width: 600px;
  height: 600px;
  filter: blur(60px);
  z-index: 0;
  opacity: 0.7;
  animation:
    morph 4s ease-in-out infinite,
    moveUpDown 3s ease-in-out infinite,
    fullVerticalMove 12s ease-in-out infinite alternate;
}

.blob-left {
  background: #b6c2ff;
  left: -300px;
}

.blob-right {
  background: #9900ff9a;
  right: -300px;
  animation-delay: -2s;
}

@keyframes morph {

  0%,
  100% {
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    transform: scale(1);
  }

  33% {
    border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;
    transform: scale(1.1);
  }

  66% {
    border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    transform: scale(0.9);
  }
}

@keyframes moveUpDown {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-40px);
  }
}

@keyframes fullVerticalMove {
  0% {
    top: 0%;
  }

  100% {
    top: 70%;
  }
}

.dynamic-content {
  max-width: 950px;
  text-align: center;
  padding: 40px 20px;
  z-index: 1;
  margin-top: 20px;
  position: relative;
}

.dynamic-content h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.1;
}

.dynamic-description {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto 30px auto;
}

.browser-window {
  margin-top: 30px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-viewport img {
  width: 500px;
  border-radius: 4px;
  display: block;
}

/* ================= CONTACT US SECTION STYLES ================= */
.contact-wrapper {
  color: var(--brand-deep);
  padding: 60px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  align-items: center;
  padding: 0 24px;
}

.contact-left h2 {
  font-size: 72px;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.1;
  text-align: left;
}

.contact-left p {
  font-size: 20px;
  color: #2b2d2f;
  max-width: 400px;
  line-height: 1.6;
  font-weight: 500;
  text-align: left;
}

.contact-info-wrapper {
  margin-top: 40px;
  text-align: left;
}

.contact-info-box {
  padding: 16px;
  border-radius: 10px;
  background: #ffffff00;
  border: 1px solid #ffffff;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.contact-info-box small {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  color: #94a3b8;
  margin-bottom: 6px;
  text-transform: uppercase;
  font-weight: 700;
}

.contact-info-box a,
.contact-info-box span {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  text-decoration: none;
}

.contact-form-card {
  background: #ffffff00;
  padding: 60px;
  border: 1px solid #f1f5f9;
  border-radius: 10px;
  box-shadow:
    0 20px 50px -12px rgba(0, 0, 0, 0.05),
    inset 0 0 0 1px rgba(240, 240, 240, 0.8);
  position: relative;
  overflow: hidden;
  text-align: left;
}

.contact-form-card form {
  position: relative;
  z-index: 2;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
}

.contact-form-group label {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
  color: black;
}

.contact-input-field {
  padding: 16px 24px;
  border: 1px solid #e2e8f0;
  background: #fff;
  outline: none;
  transition: 0.3s ease;
  font-size: 14px;
  font-family: inherit;
}

textarea.contact-input-field {
  padding: 20px 24px;
  resize: none;
}

.contact-input-field:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 4px rgba(0, 209, 255, 0.1);
  transform: translateY(-1px);
  border-radius: 5px;
}

.form-submit-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.contact-wave-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 110px;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.contact-wave-container svg {
  position: absolute;
  bottom: 0;
  width: 200%;
  height: 110px;
  animation: contact-waveShift 13s linear infinite;
}

.contact-wave-container svg:nth-child(2) {
  animation-delay: -4.5s;
  opacity: 0.75;
}

.contact-wave-container svg:nth-child(3) {
  animation-delay: -8s;
  opacity: 0.55;
}

@keyframes contact-waveShift {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ================= UNIFIED FOOTER STYLES ================= */
.footer {
  border-top: 1px solid #e5e5e5;
  padding: 30px 56px;
  background: #ffffff;
  color: #111;
  margin-top: 30px;
  position: relative;
  z-index: 5;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-brand img {
  width: 140px;
  margin-bottom: 16px;
}

.subtext {
  font-size: 13px;
  line-height: 1.6;
  color: #444;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  font-size: 13px;
  margin-bottom: 8px;
  cursor: pointer;
  color: #222;
}

.footer-col a {
  text-decoration: none;
  color: #222;
}

.footer-col a:hover {
  text-decoration: none;
  color: #0004ff;
}

.address {
  font-size: 13px;
  line-height: 1.6;
  color: #333;
}

.footer-bottom {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  font-size: 12px;
  color: #555;
}

.footer-brand .logo {
    display: flex;
    flex-direction: row;    
    align-items: center;    
    justify-content: flex-start; 
    gap: 12px;                
    margin-bottom: 16px;    
}

.footer-brand .logo img {
    width: 35px;             
    height: auto;
    margin-bottom: 0 !important; 
    display: block;
}


.footer-logo-text {
    font-size: 20px;
    font-weight: 700;
   font-weight: 700;
  background-image: linear-gradient(to right, #0603ae, #ba1de1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-family: "Plus Jakarta Sans", sans-serif;
    margin: 0;
    white-space: nowrap;     
}
/* ================= RESPONSIVE / MEDIA QUERIES (Cleaned & Unified) ================= */
@media (max-width: 1024px) {
  header {
    padding: 0 40px;
  }

  nav ul {
    gap: 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-left h2,
  .contact-left p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .pillar-row {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 40px;
  }

  .row-right .text-box {
    grid-column: 1;
    padding-left: 70px;
  }

  .row-right .visual-box {
    grid-column: 1;
    order: -1;
  }

  .visual-box {
    order: -1;
  }

  .pillar-row::before {
    width: 100%;
    height: 50%;
    top: 0;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .main-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 40px 20px;
  }

  .text-section h1 {
    font-size: 2.2rem;
  }

  .pcb-wrapper {
    width: 100%;
    max-width: 350px;
    height: auto;
    aspect-ratio: 1;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {

  /* Header Mobile */
  header {
    height: auto;
    min-height: 60px;
    padding: 15px 2px;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  /* Content Adjustments */
  .content-wrapper {
    transform: scale(0.65);
  }

  .hero-container h1 {
    font-size: 4.5rem;
  }

  .flow-wrapper {
    overflow-x: auto;
    padding-bottom: 15px;
  }

  .flow-svg {
    min-width: 700px;
  }

  .heading-area h1 {
    font-size: 2.2rem;
    padding: 0 20px 20px;
  }

  .text-box,
  .row-right .text-box {
    padding: 30px 20px;
    text-align: center;
  }

  .floating-img {
    width: 100%;
    max-width: 320px;
    height: auto;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    display: inline-grid;
    text-align: left;
    gap: 12px;
    margin: 0 auto 30px;
  }

  .pillar-row::before {
    display: none;
  }

  .dynamic-features-wrapper {
    min-height: auto;
    padding-top: 20px;
  }

  .dynamic-content {
    padding: 20px 15px;
  }

  .dynamic-content h1 {
    font-size: 28px;
  }

  .dynamic-description {
    font-size: 15px;
    padding: 0 10px;
  }

  .blob {
    width: 300px;
    height: 300px;
    filter: blur(40px);
  }

  .blob-left {
    left: -100px;
  }

  .blob-right {
    right: -100px;
  }

  .image-viewport img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .contact-wrapper {
    padding: 40px 15px;
  }

  .contact-grid {
    gap: 40px;
  }

  .contact-left h2 {
    font-size: 48px;
  }

  .contact-info-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-info-box {
    width: 100%;
    max-width: 300px;
  }

  .contact-form-card {
    padding: 30px 20px;
  }

  .contact-form-group[style] {
    margin-bottom: 40px !important;
  }

  /* Unified Footer Mobile View */
  .footer {
    padding: 48px 5% 24px;
    text-align: center;
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .footer-brand,
  .footer-col {
    min-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand img {
    width: 120px;
  }

  .footer-brand .logo {
    display: flex;
    justify-content: center;
  }

  .footer-brand .subtext {
    max-width: 100%;
    margin: 0 auto;
  }

  .footer-col ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  .btn-footer-cta {
    margin: 0 auto;
  }

  .footer-bottom {
    margin-top: 30px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  header {
    padding: 5px 1px;
  }

  nav ul {
    gap: 10px;
  }

  nav a {
    font-size: 11px;
  }

  .content-wrapper {
    transform: scale(0.55);
  }

  .hero-container h1 {
    font-size: 4rem;
  }

  .hero-container p {
    font-size: 1.35rem;
  }

  .contact-left h2 {
    font-size: 38px;
  }

  .btn-book-demo-1,
  .btn-book-demo-2,
  .btn-book-demo-3,
  .btn-explore-dynamic,
  .btn-send-message {
    width: 100%;
    padding: 14px 30px;
    font-size: 1.1rem;
  }

  .subtext {
    font-size: 12px;
  }

  .footer-col li {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .flow-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .flow-svg {
    width: 100%;
    max-width: 100%;
    min-width: auto;
    height: auto;
  }
  .footer-brand .logo{
    margin-left: 30px;
  } 
}
