:root {
  --bg: #f8fafc;
  --text: #0f172a;
  --muted: #64748b;
  --card: #ffffff;
  --line: #e2e8f0;
  --blue: #0ea5e9;
  --navy:#0f172a;
  --light:#f8fafc;
  --indigo: #4f46e5;
  --dark: #111827;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
  --soft-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
  --radius: 32px;
}

/* Base */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

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

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

/* Header */

#bg{
    position:fixed;
    inset:0;
    background:
        radial-gradient(circle at 15% 10%,rgba(37,99,235,.10),transparent 35%),
        radial-gradient(circle at 85% 35%,rgba(14,165,233,.08),transparent 40%),
        linear-gradient(#ffffff,#eef3fa);
    z-index:-3;
}

#spot{
    position:fixed;
    width:400px;
    height:400px;
    border-radius:50%;
    pointer-events:none;
    background:radial-gradient(circle,rgba(77,141,255,.12),transparent 70%);
    transform:translate(-50%,-50%);
    z-index:-2;
}

header{
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:1000;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 7%;

    background:rgba(17, 29, 48, 0.82);
    backdrop-filter:blur(20px);

    border-bottom:1px solid rgba(255,255,255,.08);

    box-shadow:
        0 8px 30px rgba(0,0,0,.18);
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    color:#ffffff;
    font-weight:700;
    font-size:1.2rem;
}

.logo span{
    color:#60a5fa;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:700;
    font-size:1.2rem;
}

.logo img{
    height:42px;
    width:auto;
    display:block;
}

.logo span{
    color:var(--a);
}

nav a{
    color:#e2e8f0;
    text-decoration:none;
    margin-left:28px;
    font-weight:600;
    font-size:.98rem;
    transition:all .25s ease;
}

nav a:hover{
    color:#60a5fa;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 18px clamp(20px, 5vw, 70px);

  background: rgba(248, 250, 252, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(226, 232, 240, 0.75);
}

.brand {
  font-weight: 800;
  letter-spacing: -0.03em;
}

.site-nav {
  display: flex;


  color: #334155;
  font-weight: 650;
}

.site-nav a {
  transition: color 0.2s ease;
}

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

.nav-toggle {
  display: none;

  border: 0;
  background: #ffffff;

  border-radius: 14px;
  padding: 8px 12px;

  font-size: 22px;
  cursor: pointer;
}

/* Layout */

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 88px clamp(20px, 4vw, 48px);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;

  color: var(--blue);

  font-weight: 800;
  font-size: 0.78rem;
}

/* Hero */

.hero {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 55px;
  align-items: center;

  min-height: calc(100vh - 72px);
}

.hero img {
    width: 650px;      /* Increase this */
    max-width: none;   /* Prevent shrinking */
    height: auto;
}
  
.hero h1,
.section-heading h2,
.contact h2 {
  margin: 12px 0 20px;

  font-size: clamp(2.7rem, 7vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.section-heading h2,
.contact h2 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
}

.lead {
  max-width: 680px;

  color: #475569;

  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 28px;
}

.hero-stack {
  position: relative;
  height: 690px;
}

.hero-stack img {
  position: absolute;

  width: 270px;

  border: 10px solid #111827;
  border-radius: 38px;

  background: #111827;
  box-shadow: var(--shadow);
}

.hero-stack img:nth-child(1) {
  left: 8%;
  top: 90px;
  z-index: 3;
}

.hero-stack img:nth-child(2) {
  left: 36%;
  top: 0;
  z-index: 2;
}

.hero-stack img:nth-child(3) {
  left: 58%;
  top: 160px;
  z-index: 1;
}

/* Buttons */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--line);
  border-radius: 999px;

  padding: 14px 22px;

  background: #ffffff;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);

  font-weight: 800;

  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.12);
}

.button.primary {
  border: 0;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  color: #ffffff;
}

.button.small {
  padding: 11px 16px;
  font-size: 0.92rem;
}

/* Stats */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;

  padding-top: 18px;
}

.stats div {
  padding: 28px;

  background: var(--card);

  border: 1px solid var(--line);
  border-radius: var(--radius);

  box-shadow: var(--soft-shadow);
}

.stats strong {
  display: block;
  font-size: 1.5rem;
}

.stats span {
  color: var(--muted);
}

/* Featured Solutions */

.featured-solutions{

    padding:120px 7%;

}

.featured-banner{

    position:relative;

    overflow:hidden;

    border-radius:34px;

    min-height:700px;

    box-shadow:
        0 40px 90px rgba(15,23,42,.18);

}

.featured-banner img{

    width:100%;
    height:700px;

    object-fit:cover;
    display:block;

}

.featured-banner::before{

    content:"";

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(8,15,30,.88) 0%,
        rgba(8,15,30,.72) 35%,
        rgba(8,15,30,.25) 70%,
        rgba(8,15,30,0) 100%
    );

}

.featured-overlay{

    position:absolute;

    left:70px;
    top:50%;

    transform:translateY(-50%);

    max-width:470px;

    z-index:5;

    color:white;

}

.featured-label{

    display:inline-block;

    margin-bottom:20px;

    padding:8px 18px;

    border-radius:999px;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(15px);

    font-size:.8rem;

    letter-spacing:.18em;

    font-weight:700;

}

.featured-overlay h2{

    margin:0;

    font-size:4rem;

    color:white;

}

.featured-overlay p{

    margin:25px 0;

    font-size:1.15rem;

    line-height:1.8;

    color:#d7dde6;

}

.featured-overlay ul{

    margin:35px 0;

    padding-left:22px;

}

.featured-overlay li{

    margin-bottom:14px;

    color:white;

}

.floating-apps{

    position:absolute;

    right:45px;
    bottom:45px;

    display:flex;
    flex-direction:column;

    gap:18px;

    z-index:10;

}

.floating-card{

    width:320px;

    display:flex;

    align-items:center;

    gap:18px;

    padding:18px;

    border-radius:22px;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.18);

    box-shadow:

        0 18px 40px rgba(0,0,0,.18);

    transition:.25s;

}

.floating-card:hover{

    transform:
        translateY(-6px)
        translateX(-6px);

}

.floating-card img{

    width:82px;

    height:82px;

    border-radius:16px;

    object-fit:cover;

    flex-shrink:0;

}

.floating-card h3{

    margin:0 0 6px;

    color:black;

    font-size:1.2rem;

}

.floating-card span{

    color:blue;

    font-size:.92rem;

}

@media(max-width:1000px){

    .featured-overlay{

        left:45px;
        right:45px;

        max-width:none;

    }

    .floating-apps{

        position:relative;

        right:auto;
        bottom:auto;

        margin:30px;

    }

    .featured-banner{

        min-height:auto;

    }

    .featured-banner img{

        height:520px;

    }

}

/* ==========================================
   Industries
========================================== */

.industries {
    padding: 100px 20px;
    background: #f8fafc;
    overflow: hidden;
}

.industry-orbit {
    position: relative;
    max-width: 850px;
    height: 650px;
    margin: 80px auto 0;
}

.industry-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.center-circle {
    width: 170px;
    height: 170px;
    background: linear-gradient(135deg,#2563eb,#0f172a);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    color: white;
    font-size: 4rem;
    box-shadow: 0 25px 50px rgba(0,0,0,.20);
}

.industry-center h3{
    margin-top:20px;
    font-size:1.5rem;
    color:#0f172a;
}

/* Industry Bubbles */

.industry{
    position:absolute;
    width:170px;
    height:170px;
    border-radius:50%;
    background:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
    cursor:pointer;
    text-decoration: none;
    color: inherit;
}

.industry:hover{
    transform:scale(1.08);
    box-shadow:0 25px 45px rgba(37,99,235,.25);
    color: inherit;
}

.industry:visited {
    color: inherit;
}

.industry i{
    font-size:2.2rem;
    color:#2563eb;
    margin-bottom:15px;
}

.industry span{
    font-weight:600;
    color:#1e293b;
}

/* Positions */

.industry-1{
    top:0;
    left:50%;
    transform:translateX(-50%);
}

.industry-2{
    top:120px;
    right:30px;
}

.industry-3{
    bottom:120px;
    right:30px;
}

.industry-4{
    bottom:0;
    left:50%;
    transform:translateX(-50%);
}

.industry-5{
    bottom:120px;
    left:30px;
}

.industry-6{
    top:120px;
    left:30px;
}

.industry-hero{

padding:140px 20px 100px;

background:
linear-gradient(135deg,#0f172a,#2563eb);

color:white;

text-align:center;

}

.hero-tag{

display:inline-block;

padding:8px 18px;

border-radius:30px;

background:rgba(255,255,255,.12);

margin-bottom:25px;

}

.industry-hero h1{

font-size:3.5rem;

max-width:900px;

margin:auto;

line-height:1.15;

}

.industry-hero h1 span{

color:#60a5fa;

}

.industry-hero p{

max-width:750px;

margin:30px auto 0;

font-size:1.15rem;

opacity:.9;

}

.industry-section{

padding:120px 20px;

}

.industry-row{

display:grid;

grid-template-columns:220px 1fr;

gap:80px;

align-items:center;

margin-bottom:120px;

}

.industry-row.reverse{

grid-template-columns:1fr 220px;

}

.industry-row.reverse .industry-icon{

order:2;

}

.industry-row.reverse .industry-content{

order:1;

}

.industry-icon{

width:180px;

height:180px;

border-radius:35px;

background:linear-gradient(135deg,#2563eb,#1d4ed8);

display:flex;

align-items:center;

justify-content:center;

color:white;

font-size:70px;

box-shadow:0 30px 60px rgba(37,99,235,.25);

}

.industry-content h2{

font-size:2.2rem;

margin-bottom:20px;

}

.industry-content p{

line-height:1.8;

margin-bottom:25px;

}

.industry-content ul{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:15px;

padding:0;

list-style:none;

}

.industry-content li{

background:#f8fafc;

padding:14px 18px;

border-left:4px solid #2563eb;

border-radius:10px;

}

.industry-cta{

padding:100px 20px;

background:#0f172a;

color:white;

text-align:center;

}

.industry-cta h2{

font-size:2.7rem;

margin-bottom:20px;

}

.industry-cta p{

max-width:650px;

margin:auto auto 35px;

opacity:.9;

}

@media(max-width:900px){

.industry-row,
.industry-row.reverse{

grid-template-columns:1fr;

text-align:center;

}

.industry-row.reverse .industry-icon,
.industry-row.reverse .industry-content{

order:unset;

}

.industry-icon{

margin:auto;

}

.industry-content ul{

grid-template-columns:1fr;

}

}

/* Mobile */

@media(max-width:768px){

    .industry-orbit{
        height:auto;
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .industry-center{
        position:relative;
        left:auto;
        top:auto;
        transform:none;
        grid-column:1 / -1;
        margin-bottom:25px;
    }

    .industry{
        position:relative;
        width:100%;
        height:160px;
        left:auto;
        right:auto;
        top:auto;
        bottom:auto;
        transform:none;
    }
}

/* Section Headings */

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

/* Projects */

.project {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 34px;
  align-items: center;

  margin: 28px 0 48px;
  padding: 34px;

  overflow: hidden;

  background: #ffffff;

  border: 1px solid var(--line);
  border-radius: 44px;

  box-shadow: var(--shadow);
}

.project-dark {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #ffffff;
}

.project-blue {
  background: linear-gradient(135deg, #e0f2fe, #ffffff);
}

.project-warm {
  background: linear-gradient(135deg, #fff7ed, #ffffff);
}

.project-card {
  background: linear-gradient(135deg, #ecfdf5, #ffffff);
}

.tag {
  display: inline-flex;

  padding: 8px 12px;

  border-radius: 999px;

  background: rgba(14, 165, 233, 0.12);
  color: #0284c7;

  font-size: 0.86rem;
  font-weight: 850;
}

.project-dark .tag {
  background: rgba(255, 255, 255, 0.12);
  color: #bae6fd;
}

.project h3 {
  margin: 14px 0 16px;

  font-size: clamp(2.4rem, 5vw, 4.8rem);
  letter-spacing: -0.07em;
}

.project p,
.contact p {
  color: #475569;

  font-size: 1.08rem;
  line-height: 1.65;
}

.project-dark p,
.project-dark li {
  color: #cbd5e1;
}

.project ul {
  padding-left: 20px;

  color: #334155;

  line-height: 1.8;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  margin-top: 20px;
}

.chips span {
  padding: 8px 11px;

  border-radius: 999px;

  background: #f1f5f9;
  color: #334155;

  font-size: 0.86rem;
  font-weight: 750;
}

.project-dark .chips span {
  background: rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
}

.project-links {
  margin-top: 18px;
}

/* Phone Mockups */

.phone-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;

  overflow-x: auto;

  padding: 18px 8px 24px;

  scrollbar-width: thin;
}

.phone {
  flex: 0 0 202px;

  border: 0;
  border-radius: 36px;

  padding: 8px;

  background: #0f172a;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.22);

  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.phone:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.28);
}

.phone img {
  width: 100%;
  height: 430px;

  object-fit: cover;
  object-position: top;

  border-radius: 28px;
}

.phone-row.five .phone {
  flex-basis: 170px;
}

.phone-row.five .phone img {
  height: 360px;
}

.phone-row.two .phone {
  flex-basis: 230px;
}

.phone-row.two .phone img {
  height: 490px;
}

/* Platforms */

.platforms {
  padding-top: 64px;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.platform-grid div {
  padding: 28px;

  background: var(--card);

  border: 1px solid var(--line);
  border-radius: var(--radius);

  box-shadow: var(--soft-shadow);
}

.platform-grid h3 {
  margin-top: 0;
  font-size: 1.35rem;
}

.platform-grid p {
  color: #475569;
  line-height: 1.55;
}

/* Contact */

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.contact-card,
.contact-form {
  padding: 28px;

  background: var(--card);

  border: 1px solid var(--line);
  border-radius: var(--radius);

  box-shadow: var(--soft-shadow);
}

.contact-links,
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin-top: 20px;
}

.contact-links a,
.socials a {
  padding: 12px 14px;

  background: #f1f5f9;

  border-radius: 16px;

  font-weight: 750;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.contact-links a:hover,
.socials a:hover {
  background: #e2e8f0;
  transform: translateY(-2px);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;

  border: 1px solid var(--line);
  border-radius: 18px;

  padding: 15px 16px;

  background: #f8fafc;
  color: var(--text);

  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(14, 165, 233, 0.7);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form .g-recaptcha {
  margin-top: 4px;
  margin-bottom: 4px;
}

.form-note {
  margin: 0 !important;

  color: var(--muted) !important;

  font-size: 0.9rem !important;
}

/* Footer */

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;

  padding: 34px clamp(20px, 5vw, 70px);

  border-top: 1px solid var(--line);

  color: var(--muted);
}

.footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

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

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 30px;

  background: rgba(2, 6, 23, 0.88);
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-height: 88vh;

  border-radius: 32px;

  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;

  width: 46px;
  height: 46px;

  border: 0;
  border-radius: 50%;

  background: #ffffff;

  font-size: 30px;

  cursor: pointer;
}

/* Reveal Animation */

.reveal {
  opacity: 0;
  transform: translateY(24px);

  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.14s;
}

h1{
    font-size:clamp(3.5rem,7vw,6rem);
    font-weight:800;
    line-height:1.05;
}

.eyebrow{
    color:#84b4ff;
    letter-spacing:.18em;
    font-size:.8rem;
}

.btn{
    display:inline-block;
    padding:14px 24px;
    border-radius:999px;
    background:linear-gradient(90deg,#3577ff,#6db8ff);
}

.window,
.card,
.arch div{
    background:var(--panel);
    border:1px solid var(--line);
    border-radius:18px;
    backdrop-filter:blur(14px);
}

.window{
    padding:0;
}

.bar{
    height:24px;
    background:linear-gradient(to bottom,#f8fbff,#eef4fc);
    border-bottom:1px solid rgba(37,99,235,.08);
    border-radius:18px 18px 0 0;
}

pre{
    margin:0;
    padding:20px;
    color:#9fd0ff;
    font-family:Consolas,monospace;
}

section{
    padding:90px 7%;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
    gap:22px;
}

.card{
    padding:24px;
    transition:.25s;
}

.card:hover{
    transform:translateY(-6px);
}

.arch{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:18px;
}

.arch div{
    padding:22px;
    text-align:center;
}

footer{
    text-align:center;
    padding:80px 7%;
}

.reveal{
    opacity:0;
    transform:translateY(35px);
    transition:all .8s;
}

.reveal.show{
    opacity:1;
    transform:none;
}

.hero-buttons{display:flex;gap:16px;flex-wrap:wrap;margin-top:30px}
.btn.secondary{background:transparent;border:1px solid rgba(255,255,255,.2)}
.logos{padding:40px 7%}
.logo-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(120px,1fr));gap:22px;margin-top:35px}
.tech-logo{height:80px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:18px;display:flex;align-items:center;justify-content:center;transition:.25s}
.tech-logo:hover{transform:translateY(-5px)}
.tech-logo img{max-width:60px;max-height:60px}
.card{text-decoration:none}
.process{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:24px}
.step{padding:28px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08);border-radius:18px}
.step span{display:inline-flex;width:48px;height:48px;border-radius:50%;background:#4d8dff;align-items:center;justify-content:center;font-weight:bold;margin-bottom:18px}
.cta{text-align:center;padding:120px 7%}

@media(max-width:900px){

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

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

    header{
        flex-direction:column;
        gap:20px;
    }

    nav a{
        margin:0 10px;
    }
}

/* Tablet */

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 62px;
    right: 20px;

    display: none;
    flex-direction: column;

    padding: 18px;

    background: #ffffff;

    border: 1px solid var(--line);
    border-radius: 20px;

    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .hero,
  .project,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-stack {
    height: 520px;
  }

  .hero-stack img {
    width: 205px;
  }

  .hero-stack img:nth-child(1) {
    left: 0;
    top: 80px;
  }

  .hero-stack img:nth-child(2) {
    left: 29%;
    top: 0;
  }

  .hero-stack img:nth-child(3) {
    left: 55%;
    top: 130px;
  }

  .stats,
  .platform-grid {
    grid-template-columns: 1fr 1fr;
  }

  .project {
    padding: 24px;
  }

  .phone {
    flex-basis: 180px;
  }

  .phone img {
    height: 380px;
  }
}

/* Mobile */

@media (max-width: 560px) {
  .section {
    padding: 64px 18px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero-stack {
    height: 480px;
  }

  .hero-stack img {
    width: 180px;
    border-width: 7px;
  }

  .stats,
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .phone {
    flex-basis: 165px;
  }

  .phone img {
    height: 350px;
  }

  .phone-row.five .phone {
    flex-basis: 155px;
  }

  .phone-row.five .phone img {
    height: 330px;
  }

  .phone-row.two .phone {
    flex-basis: 175px;
  }

  .phone-row.two .phone img {
    height: 370px;
  }

  .footer {
    font-size: 0.9rem;
  }

  .g-recaptcha {
    transform: scale(0.9);
    transform-origin: left top;
  }
}

/* ==========================================================
   Responsive navigation and mobile layout corrections
========================================================== */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

main {
  padding-top: 84px;
}

header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  min-height: 84px;
  padding: 15px clamp(18px, 5vw, 70px);
  background: rgba(17, 29, 48, 0.92);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 8px 30px rgba(0,0,0,.18);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

header.site-header .site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

header.site-header .site-nav a {
  margin-left: 0;
  color: #e2e8f0;
}

header.site-header .nav-toggle {
  color: #0f172a;
}

.hero-single {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-single img {
    width: 650px;
    max-width: 100%;
    height: auto;
}

.hero > div,
.project > div,
.contact > div {
  min-width: 0;
}

@media (max-width: 900px) {
  main {
    padding-top: 74px;
  }

nav a{
    color:blue;
    text-decoration:none;
    margin-left:28px;
    font-weight:600;
    font-size:.98rem;
    transition:all .25s ease;
}

  header.site-header {
    min-height: 74px;
    flex-direction: row;
    gap: 12px;
    padding: 12px 18px;
  }

  header.site-header .logo {
    min-width: 0;
    gap: 8px;
    font-size: clamp(.88rem, 3.8vw, 1.05rem);
    line-height: 1.15;
  }

  header.site-header .logo img {
    width: 44px;
    height: auto;
    flex: 0 0 auto;
  }

  header.site-header .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 12px;
  }

  header.site-header .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(17, 29, 48, .98);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,.28);
  }

  header.site-header .site-nav.open {
    display: flex;
  }

  header.site-header .site-nav a {
    display: block;
    width: 100%;
    padding: 14px 15px;
    border-radius: 10px;
  }

  header.site-header .site-nav a:hover,
  header.site-header .site-nav a:focus-visible {
    background: rgba(255,255,255,.08);
  }

  body.nav-open {
    overflow: hidden;
  }

  section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    min-height: auto;
    gap: 30px;
    padding-top: 58px;
    padding-bottom: 70px;
  }

  .hero-copy {
    text-align: left;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 11vw, 4.6rem);
    line-height: 1;
  }

    .hero-single {
        order: 2;              /* if using CSS grid */
        margin-top: 2rem;
    }

    .hero-single img {
        width: 100%;
        max-width: 450px;      /* adjust to taste */
    }

  .featured-solutions {
    padding: 70px 18px;
  }

  .featured-banner {
    display: flex;
    flex-direction: column;
    min-height: 0;
    border-radius: 24px;
    background: #0f172a;
  }

  .featured-banner > img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center;
  }

  .featured-banner::before {
    background: linear-gradient(to bottom, transparent 0, rgba(8,15,30,.35) 35%, #0f172a 100%);
  }

  .featured-overlay {
    position: relative;
    inset: auto;
    transform: none;
    max-width: none;
    padding: 30px 24px 10px;
    margin-top: -80px;
  }

  .featured-overlay h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .featured-overlay p {
    margin: 18px 0;
    line-height: 1.6;
  }

  .featured-overlay ul {
    margin: 22px 0;
  }

  .floating-apps {
    position: relative;
    inset: auto;
    width: auto;
    margin: 20px 18px 24px;
  }

  .floating-card {
    width: 100%;
    max-width: none;
    padding: 14px;
    background: rgba(255,255,255,.92);
  }

  .floating-card img {
    width: 68px;
    height: 68px;
  }

  .industries {
    padding: 70px 18px;
  }

  .industry-orbit {
    margin-top: 35px;
  }

  .project {
    margin-inline: 0;
    border-radius: 26px;
  }
}

@media (max-width: 560px) {
  header.site-header .logo {
    max-width: calc(100vw - 82px);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .tech-logo {
    min-width: 0;
  }

  .industry-orbit {
    grid-template-columns: 1fr;
  }

  .industry-center {
    grid-column: 1;
  }

  .industry {
    height: 130px;
    border-radius: 24px;
  }

  .center-circle {
    width: 130px;
    height: 130px;
    font-size: 3rem;
  }

  .featured-banner > img {
    aspect-ratio: 4 / 3;
    object-position: 62% center;
  }

  .featured-overlay {
    margin-top: -45px;
    padding-inline: 18px;
  }

  .floating-apps {
    margin-inline: 12px;
  }

  .floating-card {
    gap: 12px;
  }

  .floating-card h3 {
    font-size: 1rem;
  }

  .floating-card span {
    font-size: .82rem;
  }

  .cta {
    padding: 78px 20px;
  }
}

.container{max-width:1200px;margin:auto;padding:0 30px}
.split{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}
.intro,.founder,.values,.journey{padding:110px 0}
.intro h2,.journey h2,.values h2,.founder h2{font-size:clamp(2rem,4vw,3.4rem);line-height:1.1;color:var(--navy)}
.timeline{display:grid;grid-template-columns:repeat(3,1fr);gap:35px;margin-top:60px}
.timeline div{padding:35px;border-top:4px solid var(--blue);background:#fff;box-shadow:0 15px 40px rgba(0,0,0,.06);border-radius:16px}
.timeline span{font-size:2rem;font-weight:700;color:var(--blue)}
.founder{background:var(--light)}
.founder-grid{display:grid;grid-template-columns:420px 1fr;gap:70px;align-items:center}

.about-photo{
    aspect-ratio:4/5;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 35px 60px rgba(15,23,42,.18);
    background:#e2e8f0;
}

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

.grid{display:grid;grid-template-columns:repeat(4,1fr);gap:25px;margin-top:50px}
.grid div{padding:35px;border-radius:18px;background:#fff;box-shadow:0 12px 35px rgba(0,0,0,.06)}
.grid h3{color:var(--blue)}
.cta{padding:120px 0;background:var(--navy);color:#fff;text-align:center}
@media(max-width:900px){
.split,.founder-grid,.timeline,.grid{grid-template-columns:1fr}
}