@charset "UTF-8";
/*!
 * Theme Name: Zzappit v0.1.0
 * Theme URI: https://zzappit.com
 * Description: Modern and responsive website theme developed for high-performance web applications and digital experiences.
 * Author: Zzappit Team
 * Author URI: https://zzappit.com
 * Version: 1.0.1
 * License: Proprietary
 *
 * Developed By : Timal Tharinda Thotamune
 * Company      : ZZAPPIT (Pvt) Ltd
 * Website      : https://zzappit.com
 *
 * Copyright © 2026 ZZAPPIT (Pvt) Ltd.
 * All Rights Reserved.
 */
/* abstract */
/* ========================================================================
   ZZAPPIT Global — Pure CSS stylesheet (no frameworks, no CDNs)
   ======================================================================== */
/* ---------- Design tokens ---------- */
:root {
  --radius: 0.75rem;
  --radius-sm: calc(var(--radius) - 4px);
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 4px);
  --radius-2xl: calc(var(--radius) + 8px);
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display:
    "Segoe UI Semibold", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ink: #0a0a0a;
  --background: #ffffff;
  --surface: #f5f7fa;
  --foreground: #1f2937;
  --foreground-80: rgba(31, 41, 55, 0.8);
  --muted-foreground: #6b7280;
  --border: #e5e7eb;
  --accent: #2563eb;
  --cta: #3b82f6;
  --primary-foreground: #ffffff;
  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.04), 0 8px 24px -12px rgba(0, 0, 0, 0.08);
  --shadow-cta: 0 20px 50px -15px rgba(59, 130, 246, 0.6);
}

/* ---------- Reset ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button,
input,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

.container-x {
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.5rem;
  max-width: 80rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* ---------- Buttons / links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-cta {
  background-color: var(--cta);
  color: #ffffff;
  box-shadow: var(--shadow-cta);
}

.btn-cta:hover {
  filter: brightness(1.1);
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  color: #ffffff;
}

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

.btn-ink {
  background-color: var(--ink);
  color: var(--primary-foreground);
}

.btn-ink:hover {
  background-color: rgba(10, 10, 10, 0.9);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.icon {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}

/* ========================================================================
   Header / Nav
   ======================================================================== */
.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 50;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  background-color: rgb(2, 19, 50);
  border-bottom: 1px solid transparent;
}

.site-header.is-light {
  background-color: rgb(2, 19, 50);
  backdrop-filter: blur(20px);
}

.nav-bar {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 3rem;
  width: auto;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

.site-header.is-light .nav-links a {
  color: #fff;
}

.site-header.is-light .nav-links a:hover {
  color: #dd2c2c;
}

.nav-cta {
  display: none;
}

.nav-cta .btn {
  background-color: #ffffff;
  color: var(--ink);
  padding: 0.625rem 1.25rem;
}

.nav-cta .btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.site-header.is-light .nav-cta .btn {
  background-color: #dd2c2c;
  color: var(--primary-foreground);
}

.site-header.is-light .nav-cta .btn:hover {
  background-color: rgba(10, 10, 10, 0.9);
}

.nav-toggle {
  display: inline-flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  color: #ffffff;
  transition: background-color 0.2s ease;
}

.nav-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.site-header.is-light .nav-toggle {
  color: #fff;
}

.nav-mobile {
  display: none;
  border-top: 1px solid var(--border);
  background-color: var(--background);
}

.nav-mobile.is-open {
  display: block;
}

.nav-mobile-inner {
  padding-block: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
}

.nav-mobile a {
  padding: 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.nav-mobile a:hover {
  background-color: var(--surface);
}

.nav-mobile .btn {
  margin-top: 0.5rem;
  justify-content: center;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
  .nav-cta {
    display: block;
  }
  .nav-toggle,
  .nav-mobile {
    display: none !important;
  }
}
/* ========================================================================
   Section label
   ======================================================================== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.section-label .rule {
  display: inline-block;
  height: 1px;
  width: 2rem;
  background-color: var(--accent);
}

/* ========================================================================
   Hero
   ======================================================================== */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--ink);
  color: #ffffff;
  padding-top: 8rem;
  padding-bottom: 6rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}

.hero-inner {
  max-width: 48rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.hero-dot {
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: var(--cta);
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
  margin-top: 1.5rem;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.05;
}

.gradient-text {
  color: #1a3c85;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 42rem;
  line-height: 1.6;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-trust {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-trust .icon {
  color: var(--accent);
}

/* ========================================================================
   About
   ======================================================================== */
.section {
  padding-block: 6rem;
}

.section-tight {
  padding-block: 6rem;
}

.about-section {
  position: relative;
  overflow: hidden;
}

.about-line-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.about-line-bg::before, .about-line-bg::after {
  content: "";
  position: absolute;
  inset: -20% -50%;
  background-image: repeating-linear-gradient(115deg, transparent 0, transparent 78px, var(--border) 78px, var(--border) 79px);
  animation: about-lines-drift 22s linear infinite;
}
.about-line-bg::after {
  background-image: repeating-linear-gradient(65deg, transparent 0, transparent 110px, rgba(37, 99, 235, 0.12) 110px, rgba(37, 99, 235, 0.12) 111px);
  animation-duration: 30s;
  animation-direction: reverse;
}

.about-grid,
.stats-grid {
  position: relative;
  z-index: 1;
}

.about-grid {
  display: grid;
  gap: 4rem;
  align-items: start;
}

.about-copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--foreground-80);
}

.about-heading h2 {
  margin-top: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

.stats-grid {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background-color: var(--border);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
}

.stat-cell {
  background-color: var(--background);
  padding: 2rem;
}

.stat-value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--ink);
}

.stat-label {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ========================================================================
   Services
   ======================================================================== */
.bg-surface {
  background-color: var(--surface);
}

.section-intro {
  max-width: 42rem;
}

.section-intro h2 {
  margin-top: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

.section-intro p {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.card-grid {
  margin-top: 4rem;
  display: grid;
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  border-color: var(--ink);
  box-shadow: var(--shadow-card);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background-color: var(--ink);
  color: #ffffff;
  display: grid;
  place-items: center;
  transition: background-color 0.2s ease;
}

.service-card:hover .service-icon {
  background-color: var(--accent);
}

.service-card h3 {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.service-card > p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.service-features {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--foreground-80);
}

.service-features .icon {
  color: var(--accent);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

/* ========================================================================
   Solutions
   ======================================================================== */
.solutions-head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: space-between;
}

.solutions-head p {
  color: var(--muted-foreground);
  max-width: 28rem;
}

.solutions-grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1rem;
}

.solution-card {
  position: relative;
  overflow: hidden;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.solution-card:hover {
  background-color: var(--ink);
  color: #fff;
}

.solution-index {
  font-size: 0.75rem;
  font-family: monospace;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

.solution-card:hover .solution-index {
  color: rgba(255, 255, 255, 0.5);
}

.solution-title {
  margin-top: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.solution-card .icon {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  opacity: 0;
  transform: translateX(-0.5rem);
  transition: all 0.2s ease;
}

.solution-card:hover .icon {
  opacity: 1;
  transform: translateX(0);
}

/* ========================================================================
   Industries
   ======================================================================== */
.industries-section {
  position: relative;
  background-color: #f6faff;
  overflow: hidden;
}

.industries-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.industries-glow span {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
}

.glow-a {
  top: -8rem;
  left: -8rem;
  width: 28rem;
  height: 28rem;
  background: rgba(37, 99, 235, 0.1);
}

.glow-b {
  bottom: -8rem;
  right: -8rem;
  width: 32rem;
  height: 32rem;
  background: rgba(59, 130, 246, 0.1);
}

.industries-section .container-x {
  position: relative;
}

.industries-grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.25rem;
}

.industry-card {
  position: relative;
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.75rem;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.industry-card:hover {
  box-shadow: 0 24px 60px -20px rgba(37, 99, 235, 0.25);
  transform: translateY(-0.375rem);
  border-color: rgba(37, 99, 235, 0.4);
}

.industry-blob {
  position: absolute;
  top: -2.5rem;
  right: -2.5rem;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.industry-card:hover .industry-blob {
  opacity: 1;
}

.industry-icon {
  position: relative;
  z-index: 1;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent);
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
  background: linear-gradient(135deg, var(--accent), var(--cta));
  color: #fff;
}

.industry-card h3 {
  position: relative;
  z-index: 1;
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.industry-card p {
  position: relative;
  z-index: 1;
  margin-top: 0.375rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ========================================================================
   Process
   ======================================================================== */
.process-list {
  margin-top: 4rem;
  display: grid;
  gap: 1px;
  background-color: var(--border);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
}

.process-step {
  background-color: var(--background);
  padding: 2rem;
  position: relative;
}

.process-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(37, 99, 235, 0.2);
}

.process-step h3 {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.process-step p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ========================================================================
   Technologies
   ======================================================================== */
.tech-section {
  overflow: hidden;
}

.tech-grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.5rem;
}

.tech-group {
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
}

.tech-cat {
  font-size: 0.75rem;
  font-family: monospace;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
}

.tech-pills {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.375rem;
  border: 1px solid var(--border);
  background-color: var(--surface);
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.tech-pill:hover {
  border-color: var(--ink);
  background-color: var(--ink);
  color: #fff;
}

.tech-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.marquee-wrap {
  position: relative;
  margin-top: 4rem;
  width: 100%;
}

.marquee-fade {
  position: absolute;
  inset-block: 0;
  width: 6rem;
  z-index: 10;
  pointer-events: none;
}

.marquee-fade.left {
  left: 0;
  background: linear-gradient(90deg, var(--surface), transparent);
}

.marquee-fade.right {
  right: 0;
  background: linear-gradient(270deg, var(--surface), transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 5.5rem;
  padding-block: 1.5rem;
  animation: marquee 50s linear infinite;
}
.marquee-track svg {
  display: block;
  margin: 0 auto 0.5rem;
  width: 4rem;
  height: 4rem;
}

.marquee-item {
  display: inline-block;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.marquee-item:hover {
  opacity: 1;
}

.marquee-item .tech-dot {
  width: 1rem;
  height: 1rem;
}

.marquee-logo {
  width: 4rem;
  height: 4rem;
}

.marquee-item span {
  font-size: 22px;
  font-weight: 600;
  color: var(--foreground-80);
  white-space: nowrap;
  text-align: center;
}

/* ========================================================================
   Work / case studies
   ======================================================================== */
.work-grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.5rem;
}

.work-card {
  position: relative;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.work-card:hover {
  box-shadow: var(--shadow-card);
}

.work-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  background-color: var(--ink);
}

.work-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.work-card:hover .work-thumb img {
  transform: scale(1.05);
}

.work-body {
  padding: 1.75rem;
}

.work-industry {
  font-size: 0.75rem;
  font-family: monospace;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
}

.work-body h3 {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.work-tags {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.work-tags span {
  font-size: 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background-color: var(--background);
  padding: 0.25rem 0.625rem;
}

.work-outcome {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--foreground-80);
}

.work-link {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s ease;
}

.work-link:hover {
  color: var(--accent);
}

/* ========================================================================
   Why us
   ======================================================================== */
.why-grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.5rem;
}

.why-card {
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
}

.why-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--accent), var(--cta));
  color: #fff;
  display: grid;
  place-items: center;
}

.why-card h3 {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.why-card p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ========================================================================
   Testimonials
   ======================================================================== */
.testimonials-inner {
  max-width: 56rem;
  text-align: center;
  margin-inline: auto;
}

.testimonial-quote {
  margin-top: 2rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
}

.testimonial-meta {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.testimonial-meta strong {
  color: var(--foreground);
  font-weight: 600;
}

.testimonial-dots {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.testimonial-dots button {
  height: 0.375rem;
  width: 0.5rem;
  border-radius: 999px;
  background-color: var(--border);
  transition: all 0.2s ease;
}

.testimonial-dots button:hover {
  background-color: var(--muted-foreground);
}

.testimonial-dots button.is-active {
  width: 2rem;
  background-color: var(--ink);
}

/* ========================================================================
   CTA
   ======================================================================== */
.cta-section {
  background-color: var(--ink);
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 70px 0;
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(37, 99, 235, 0.35), transparent 60%), radial-gradient(ellipse at 70% 50%, rgba(59, 130, 246, 0.3), transparent 60%);
}

.cta-section .container-x {
  position: relative;
  text-align: center;
  max-width: 48rem;
}

.cta-section h2 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.cta-section p {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
}

.cta-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* ========================================================================
   Contact
   ======================================================================== */
.contact-grid {
  display: grid;
  gap: 3rem;
}

.contact-info h2 {
  margin-top: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

.contact-info > p {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.contact-details {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-details .icon {
  color: var(--accent);
}

.contact-map {
  margin-top: 2rem;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: none;
}

.contact-form {
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-grid {
  display: grid;
  gap: 1.25rem;
}

.field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.field .required {
  color: var(--cta);
}

.field input,
.field textarea {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background-color: var(--background);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--accent);
}

.form-status {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
}

/* ========================================================================
   Footer
   ======================================================================== */
.site-footer {
  background-color: var(--ink);
  color: #fff;
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

.footer-brand img {
  height: 3.5rem;
  width: auto;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 20rem;
}

.footer-social {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.5rem;
}

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background-color: var(--accent);
  border-color: var(--accent);
}

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
}

.footer-col ul {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ========================================================================
   Animations
   ======================================================================== */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes about-lines-drift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-158px, 0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .about-line-bg::before,
  .about-line-bg::after {
    animation: none;
  }
}
/* ========================================================================
   Responsive breakpoints
   ======================================================================== */
@media (min-width: 640px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .section,
  .section-tight {
    padding-block: 50px;
  }
  .hero {
    padding-top: 11rem;
    padding-bottom: 8rem;
  }
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .solutions-head {
    flex-direction: row;
    align-items: flex-end;
  }
  .solutions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
  .footer-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .footer-brand {
    grid-column: span 2;
  }
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

#work {
  display: none;
}

@media (min-width: 1280px) {
  .industries-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.about-section {
  background-image: url("../images/3.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.overlay {
  background: rgba(255, 255, 255, 0.9);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}

.hero .desktop-img {
  display: block;
}
.hero .mobile-img {
  display: none;
}

@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    display: flex;
    align-items: flex-start;
  }
  .hero .desktop-img {
    display: none;
  }
  .hero .mobile-img {
    display: block;
  }
  .hero h1 {
    text-align: center;
    line-height: 140%;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
  .hero h1 .gradient-text {
    background: none;
    -webkit-background-clip: text;
    background-clip: text;
    color: #78a8ff;
  }
  .hero .hero-badge,
  .hero p,
  .hero .hero-actions,
  .hero .hero-trust {
    display: none;
  }
  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .stats-grid {
    padding: 0;
  }
}
.message-page-body {
  padding-top: 101px;
}
.message-page-body .nav-bar {
  display: flex;
  height: auto;
  justify-content: center;
  align-items: center;
}
.message-page-body .nav-logo {
  display: block;
}
.message-page-body .nav-logo img {
  height: 100px;
}
.message-page-body main {
  height: calc(100vh - 182px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.message-page-body .nav-links,
.message-page-body .nav-cta {
  display: none;
}
.message-page-body .site-footer {
  padding: 0px 0 30px;
}
.message-page-body .footer-bottom {
  margin-top: 0;
}
.message-page-body .message-page {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
}
.message-page-body .message-wrapper {
  text-align: center;
  max-width: 560px;
  width: 100%;
  padding: 3rem 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}
.message-page-body .message-icon-ring {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 2px solid var(--icon-color, #16a34a);
  background: color-mix(in srgb, var(--icon-color, #16a34a) 8%, transparent);
}
.message-page-body .message-icon-ring svg {
  width: 44px;
  height: 44px;
  color: var(--icon-color, #16a34a);
  stroke: var(--icon-color, #16a34a);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.message-page-body .message-badge {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  border: 1px solid var(--icon-color, #16a34a);
  color: var(--icon-color, #16a34a);
  background: color-mix(in srgb, var(--icon-color, #16a34a) 10%, transparent);
}
.message-page-body .message-heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.message-page-body .message-body {
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.message-page-body .message-body a {
  color: var(--icon-color, #16a34a);
}
.message-page-body .countdown-text {
  color: #64748b;
  font-size: 0.9rem;
  margin-top: 1rem;
}
.message-page-body .countdown-text span {
  color: var(--icon-color, #16a34a);
  font-weight: 600;
}

.home-banner {
  background-image: url("../images/dbanner-1.png");
  background-size: cover;
  background-position: center center;
  min-height: 90vh;
  position: relative;
  margin-top: 65px;
}
.home-banner .banner-overlay {
  background: rgba(20, 20, 20, 0.3);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
.home-banner .hero-inner {
  z-index: 1;
  position: relative;
}
.home-banner .hero-inner h1 span {
  color: #204079;
}
.home-banner .hero-inner p {
  color: #fff;
}
.home-banner .container-x {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  height: 100%;
}

@media (max-width: 768px) {
  .home-banner {
    background-image: url("../images/mbanner-1.png");
    background-size: cover;
    background-position: center bottom;
    min-height: 60vh;
    padding: 0;
  }
  .home-banner .hero-inner {
    z-index: 1;
    position: relative;
  }
  .home-banner .hero-inner h1 {
    font-size: 26px;
    margin-top: 35%;
  }
  .home-banner .hero-inner h1 span {
    color: #204079;
    text-shadow: none;
  }
  .home-banner .hero-inner p {
    color: #fff;
  }
}

/*# sourceMappingURL=style.css.map */
