*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Custom: vertical stat layout (number above label) and separators between items */
.hero-stat {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 0 !important;
  text-align: center !important;
}

.hero-stats .hero-stat+.hero-stat {
  border-left: 2px solid rgba(255, 255, 255, 0.3) !important;
  padding-left: 20px !important;
}

@media (max-width: 480px) {
  .hero-stats {
    gap: 12px !important;
    justify-content: center !important;
    padding-top: 8px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .hero-stat strong {
    font-size: 18px !important;
  }

  .hero-stat span {
    font-size: 12px !important;
  }
}

/* Force hero stats to one horizontal line on small/mobile screens */
@media (max-width: 480px) {
  .hero-stats {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    gap: 12px !important;
    padding-top: 8px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
  }

  .hero-stat {
    border-left: 2px solid rgba(255, 255, 255, 0.12) !important;
    border-top: none !important;
    padding-left: 12px !important;
    padding-top: 0 !important;
    width: auto !important;
    padding-bottom: 0 !important;
  }

  .hero-stat strong {
    font-size: 18px !important;
  }

  .hero-stat span {
    font-size: 12px !important;
  }
}

:root {
  --blue: #1a35e0;
  --blue-dark: #0f22a8;
  --blue-light: #e8ecff;
  --blue-mid: #3b55f0;
  --white: #ffffff;
  --off-white: #f6f7fb;
  --gray-100: #f0f1f5;
  --gray-200: #e2e4ec;
  --gray-400: #9095ad;
  --gray-700: #3a3d52;
  --gray-900: #0e1022;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-900);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-icon svg {
  width: 20px;
  height: 20px;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--gray-900);
  letter-spacing: -0.3px;
}

.nav-logo-text span {
  color: var(--blue);
}

.mobile-menu-btn {
  display: none;
  cursor: pointer;
  color: var(--gray-900);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px !important;
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover {
  background: var(--blue-dark) !important;
  transform: translateY(-1px);
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(26, 53, 224, 0.85), rgba(14, 16, 34, 0.95)), url('public/office%20one.jpg') center/cover no-repeat;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 5% 48px;
  gap: 40px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  margin-bottom: 32px;
  animation: fadeUp 0.6s ease both;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7dffc7;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero h1 em {
  font-style: normal;
  opacity: 0.55;
}

.hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 500px;
  margin-bottom: 44px;
  line-height: 1.7;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}

.btn-primary {
  background: var(--white);
  color: var(--blue);
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  font-family: var(--font-body);
  transition: transform var(--transition), box-shadow var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  font-family: var(--font-body);
  transition: background var(--transition), border-color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

.hero-visual {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 540px;
  margin-left: auto;
  animation: floatIn 0.9s 0.2s ease both;
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.4s ease both;
  grid-column: 1 / -1;
  grid-row: 2 / 3;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  border-left: 2px solid rgba(255, 255, 255, 0.3);
  padding-left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero-stat strong {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin: 0;
}

.hero-stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── SECTION COMMON ───────────────────────────────────── */
section {
  padding: 100px 5%;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.section-title span {
  color: var(--blue);
}

.section-sub {
  font-size: 17px;
  color: var(--gray-400);
  max-width: 560px;
  line-height: 1.7;
}

/* ── ABOUT ───────────────────────────────────────────── */
.about {
  background: var(--off-white);
}

.about.section-title {
  margin-bottom: 0px !important;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 0px;
}

.about-text p {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 134px;

}

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

.value-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color var(--transition), transform var(--transition);
}

.value-card:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}

.value-icon {
  width: 40px;
  height: 40px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.value-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.value-card p {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ── SERVICES ────────────────────────────────────────── */
.services {
  background: var(--white);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 40px;
  flex-wrap: wrap;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  cursor: pointer;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  background: var(--white);
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(26, 53, 224, 0.1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 20px;
  transition: color var(--transition);
}

.service-card:hover .service-num {
  color: var(--blue-light);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.2;
}

.service-card p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 24px;
}


.service-card.custom-solution {
  background: var(--blue);
  border-color: var(--blue);
}

.service-card.custom-solution h3 {
  color: white;
}

.service-card.custom-solution p {
  color: rgba(255, 255, 255, 0.75);
}

.service-card.custom-solution .service-num.ghost {
  color: rgba(255, 255, 255, 0.2);
}

.btn-custom-solution {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--blue);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s;
}

.btn-custom-solution:hover {
  transform: translateY(-2px);
}

.service-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.brand-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-light);
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.3px;
}

/* ── PROCESS ─────────────────────────────────────────── */
.process {
  background: var(--gray-900);
}

.process .section-title {
  color: var(--white);
}

.process .section-sub {
  color: var(--gray-400);
}

.process .section-label {
  color: #7dffc7;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(100%/12);
  right: calc(100%/12);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15) 20%, rgba(255, 255, 255, 0.15) 80%, transparent);
}

.process-step {
  text-align: center;
  padding: 0 12px;
  position: relative;
}

.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(26, 53, 224, 0.2);
  border: 1.5px solid rgba(26, 53, 224, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--blue-mid);
  transition: all var(--transition);
  position: relative;
  z-index: 1;
}

.process-step:hover .step-circle {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: scale(1.1);
}

/* Mobile-only scroll animation */
.step-circle.active {
  animation: pulseActive 0.6s ease both;
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(26, 53, 224, 0.6);
}

@keyframes pulseActive {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    opacity: 1;
    transform: scale(1.15);
  }
}

.process-step h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 12px;
  color: var(--gray-400);
  line-height: 1.5;
}

/* ── CAPABILITIES ────────────────────────────────────── */
.capabilities {
  background: var(--white);
}

.cap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}

.cap-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.1);
}

.cap-image img {
  width: 100%;
  height: auto;
  display: block;
}

.cap-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cap-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cap-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cap-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cap-content h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.cap-content p {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .cap-grid {
    grid-template-columns: 1fr;
  }
}


/* ── VISION MISSION ──────────────────────────────────── */
.vision-mission {
  background: var(--off-white);
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 60px;
}

.vm-card {
  border-radius: var(--radius);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.vm-card.blue {
  background: var(--blue);
  color: var(--white);
}

.vm-card.light {
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--gray-900);
}

.vm-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.vm-card.blue .vm-icon {
  background: rgba(255, 255, 255, 0.15);
}

.vm-card.light .vm-icon {
  background: var(--blue-light);
}

.vm-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.vm-card.blue .vm-icon svg {
  stroke: white;
}

.vm-card.light .vm-icon svg {
  stroke: var(--blue);
}

.vm-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.vm-card.blue h3 {
  color: var(--white);
}

.vm-card.light h3 {
  color: var(--gray-900);
}

.vm-card p {
  font-size: 15px;
  line-height: 1.8;
}

.vm-card.blue p {
  color: rgba(255, 255, 255, 0.8);
}

.vm-card.light p {
  color: var(--gray-700);
}

/* ── OUR VALUES ──────────────────────────────────────── */
.our-values {
  background: var(--white);
  padding-top: 80px;
  padding-bottom: 80px;
}

.values-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.values-content {
  max-width: 600px;
}

.values-content .section-label {
  display: block;
  margin-bottom: 12px;
}

.values-content .section-title {
  margin-bottom: 32px;
}

.values-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.values-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-700);
}

.values-text strong {
  color: var(--blue);
  font-weight: 600;
}

.values-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
  height: 100%;
  min-height: 500px;
}

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

/* ── GROWTH STRATEGY ─────────────────────────────────── */
.strategy {
  background: var(--white);
}

.strategy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  margin-top: 60px;
}

.strategy-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all var(--transition);
}

.strategy-card:hover {
  border-color: var(--blue);
  background: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26, 53, 224, 0.08);
}

.strategy-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.strategy-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.2;
}

.strategy-card p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.75;
}

/* ── PARALLAX CTA ────────────────────────────────────── */
.parallax-cta {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(26, 53, 224, 0.8), rgba(14, 16, 34, 0.9)), url('public/Data-Center.jpg') center/cover;
  color: white;
  padding: 100px 5%;
  background-attachment: scroll;
}

.parallax-inner {
  max-width: 700px;
}

.parallax-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.parallax-inner p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}



/* ── CONTACT ─────────────────────────────────────────── */
.contact {
  background: var(--blue);
}

.contact .section-label {
  color: rgba(255, 255, 255, 0.6);
}

.contact .section-title {
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}

.contact-info {}

.contact-info p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: white;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item span {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

.contact-item a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* WhatsApp floating button (consolidated, authentic look) */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: #25CC64;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;

  transition: transform .12s ease, box-shadow .12s ease;
  text-decoration: none;
}

.whatsapp-float i.fa {
  color: #ffffff;
  font-size: 100px;
  line-height: 1;
}

.whatsapp-float:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 38px rgba(18, 140, 126, 0.36);
}

.whatsapp-float:active {
  transform: translateY(-2px) scale(.98);
}

@media (max-width: 480px) {
  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    width: 56px;
    height: 56px;
  }
}

@media print {
  .whatsapp-float {
    display: none !important;
  }
}

/* Simple phone icon and tooltip */
.whatsapp-float .phone-icon,
.whatsapp-float i.fa {
  font-size: 20px;
  color: #ffffff;
  line-height: 1;
  display: inline-block;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25CC64;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  box-shadow: 0 8px 24px rgba(18, 140, 126, 0.28), 0 6px 10px rgba(0, 0, 0, 0.10);
  transition: transform .12s ease, box-shadow .12s ease;
  text-decoration: none;
}

.whatsapp-float::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(6px);
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .12s ease, transform .12s ease;
}

.whatsapp-float:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 480px) {
  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    width: 50px;
    height: 50px;
  }
}

@media print {
  .whatsapp-float {
    display: none !important;
  }
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--off-white);
  color: var(--gray-900);
  outline: none;
  transition: border-color var(--transition);
  resize: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
}

.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  letter-spacing: 0.3px;
}

.form-submit:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--gray-900);
  color: rgba(255, 255, 255, 0.6);
  padding: 48px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-logo-icon {
  width: 32px;
  height: 32px;
  background: var(--blue);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon svg {
  width: 18px;
  height: 18px;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.footer-copy {
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    text-align: center;
    padding-top: 140px;
    gap: 32px;
  }

  .hero-content {
    grid-column: 1 / -1;
    grid-row: 1 / 2;
    margin: 0 auto;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    grid-column: 1 / -1;
    grid-row: 2 / 3;
    margin: 0 auto;
    max-width: 400px;
  }

  .hero-stats {
    grid-column: 1 / -1;
    grid-row: 3 / 4;
    justify-content: center;
    margin-top: 32px;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .process-steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 24px;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--gray-200);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-cta {
    display: inline-block;
    text-align: center;
    width: 100%;
  }

  section {
    padding: 72px 24px;
  }

  .hero {
    padding: 120px 24px 48px;
  }

  .hero-visual {
    max-width: 320px;
  }

  .hero-stats {
    gap: 24px;
  }

  .about-grid,
  .vm-grid,
  .contact-grid,
  .strategy-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .values-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .values-container .values-content {
    display: contents;
  }

  .values-container .section-label {
    order: 1;
    margin-bottom: 4px;
  }

  .values-container .section-title {
    order: 2;
    margin-bottom: 8px;
  }

  .values-container .values-image {
    order: 3;
    min-height: 250px;
    margin-bottom: 16px;
  }

  .values-container .values-text {
    order: 4;
  }

  .about-text p {
    margin-bottom: 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .process-steps {
    grid-template-columns: 1fr;
  }

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

  section {
    padding: 60px 20px;
  }

  .hero {
    padding: 100px 20px 48px;
  }

  .hero-stats {
    gap: 16px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: none;
  }

  .hero-stat {
    border-left: none;
    padding-left: 0;

    padding-bottom: 16px;
    width: 100%;

  }

  .hero-stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .service-card {
    padding: 24px 20px;
  }

  .vm-card {
    padding: 32px 24px;
  }





  .contact-form {
    padding: 24px;
  }
}


/* CALL TO ACTION */
.cta-section {
  background: var(--blue);
  padding: 100px 5%;
  text-align: center;
  color: var(--white);
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.cta-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 40px;
}



/* ── ENHANCED MOBILE RESPONSIVENESS ──────────────────── */
@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(32px, 6vw, 48px);
  }

  .hero {
    padding: 100px 20px 40px;
    min-height: 80vh;
  }

  /* Hide desktop hero graphic on small/mobile screens */
  .hero-visual {
    display: none !important;
  }

  .page-hero {
    padding: 100px 20px 50px;
    min-height: auto;
  }

  .page-hero h1 {
    font-size: clamp(28px, 5vw, 44px);
    margin-bottom: 12px;
  }

  .page-hero p {
    font-size: 16px;
    max-width: 100%;
  }

  section {
    padding: 60px 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .strategy-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 40px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-stat {
    border-left: none;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    padding-left: 0;
    padding-top: 16px;
  }

  .service-block {
    padding: 60px 20px;
    gap: 32px;
  }

  .service-content h2 {
    font-size: clamp(22px, 4vw, 32px);
  }

  .service-content p {
    font-size: 15px;
  }

  .parallax-cta {
    background: linear-gradient(rgba(26, 53, 224, 0.8), rgba(14, 16, 34, 0.9)), url('public/pexels-sejio402-6466141.jpg') center/cover;
    padding: 60px 20px;
    min-height: auto;
    background-attachment: scroll;
  }

  .parallax-inner h2 {
    font-size: clamp(24px, 5vw, 40px);
  }

  .parallax-inner p {
    font-size: 16px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 6px 14px;
  }

  .section-title {
    font-size: clamp(24px, 4vw, 36px);
  }

  nav {
    height: 64px;
    padding: 0 16px;
  }

  .nav-logo-text {
    font-size: 15px;
  }

  .nav-links {
    top: 64px;
    padding: 20px;
  }
}

/* ── TABLET SPECIFIC IMPROVEMENTS ────────────────────── */
@media (max-width: 900px) and (min-width: 641px) {
  .service-block {
    gap: 50px;
    padding: 100px 5%;
  }

  .service-image-wrapper {
    aspect-ratio: 3/2;
  }

  .hero {
    padding: 120px 5% 48px;
  }

  .about-grid {
    gap: 60px;
  }
}

/* ── EXTRA SMALL SCREENS ─────────────────────────────── */
@media (max-width: 480px) {
  .page-hero {
    padding: 80px 16px 40px;
  }

  .page-hero h1 {
    font-size: clamp(24px, 5vw, 36px);
    margin-bottom: 10px;
  }

  .service-block {
    padding: 50px 16px;
    gap: 24px;
  }

  .service-content h2 {
    font-size: clamp(18px, 4vw, 28px);
  }

  .brand-list {
    gap: 8px;
  }

  .brand-tag {
    font-size: 12px;
    padding: 6px 12px;
  }

  .hero h1 {
    font-size: clamp(28px, 6vw, 40px);
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }

  section {
    padding: 50px 16px;
  }

  .form-row,
  .contact-grid,
  .values-grid,
  .strategy-grid,
  .services-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  nav {
    height: 56px;
    padding: 0 12px;
  }

  .nav-logo-text {
    font-size: 13px;
  }

  .nav-links {
    top: 56px;
    padding: 16px;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }

  footer {
    flex-direction: column;
    gap: 12px;
    padding: 36px 16px;
  }

  /* Ensure copyright appears last in the stacked footer on small screens */
  .footer-logo {
    order: 1;
  }

  .footer-links {
    order: 2;
  }

  .footer-copy {
    order: 3;
  }
}


/* ── SERVICE BLOCKS (DETAILED SECTIONS) ──────────────── */
.services-container {
  display: flex;
  flex-direction: column;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  padding: 100px 5%;
}

.services-container .service-block:nth-child(odd) {
  background: rgba(125, 255, 199, 0.05);
}

.services-container .service-block:nth-child(even) {
  background: var(--off-white);
}

.services-container .service-block:nth-child(even) .service-content {
  order: 2;
}

.services-container .service-block:nth-child(even) .service-image-wrapper {
  order: 1;
}

.service-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-content-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.service-content-header svg {
  width: 48px;
  height: 48px;
  stroke-width: 1.5;
  fill: none;
}

.services-container .service-block:nth-child(odd) .service-content-header svg {
  stroke: var(--teal);
}

.services-container .service-block:nth-child(even) .service-content-header svg {
  stroke: var(--blue);
}




.service-feature-list {
  font-size: 14px;
  line-height: 1.8;
  color: #3a3d52;
}

.service-feature-item {
  margin: 8px 0;
  position: relative;
  padding-left: 20px;
}

.service-feature-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: bold;
}

.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  align-self: flex-start;
  margin-top: 16px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-service:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 53, 224, 0.2);
}

.service-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--gray-900);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -1px;
}

.service-content h2 span {
  color: var(--blue);
}

.service-content>p {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.8;
  margin: 0;
}

.service-image-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08);
  aspect-ratio: 4/3;
  width: 100%;
}

.service-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.service-image-wrapper:hover img {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .service-block {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 80px 5%;
  }

  .services-container .service-block .service-content,
  .services-container .service-block:nth-child(even) .service-content {
    display: contents;
  }

  .services-container .service-block .service-content-header {
    order: 1;
    margin-bottom: 8px;
  }

  .services-container .service-block .service-image-wrapper,
  .services-container .service-block:nth-child(even) .service-image-wrapper {
    order: 2;
    margin-bottom: 16px;
  }

  .services-container .service-block .service-content>p {
    order: 3;
  }

  .services-container .service-block .service-feature-box {
    order: 4;
  }

  .services-container .service-block .btn-service {
    order: 5;
    margin-top: 8px;
  }
}

@media (max-width: 768px) {
  .service-block {
    padding: 60px 5%;
  }

  .service-feature-box {}

  .service-content h2 {
    font-size: 28px;
  }
}

/* ── CUSTOM SOLUTION CARD ──────────────────────────── */
.service-card.custom-solution {
  background: var(--blue);
  border-color: var(--blue);
}

.service-card.custom-solution h3 {
  color: white;
}

.service-card.custom-solution p {
  color: rgba(255, 255, 255, 0.75);
}

.service-card.custom-solution .service-num.ghost {
  color: rgba(255, 255, 255, 0.2);
}

.btn-custom-solution {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--blue);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s;
}

.btn-custom-solution:hover {
  transform: translateY(-2px);
}