@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&family=Poppins:wght@600;700&display=swap');

:root{
  /* Light single-theme: blue/cyan */
  --bg: #fbfdff; /* very light */
  --bg-2: linear-gradient(180deg,#fbfdff 0%, #f5f9ff 60%);
  --surface: #ffffff;
  --card: #ffffff;
  --muted: #6b7b89;
  --text: #0b2233;
  --accent: #0b81ff; /* primary blue */
  --accent-2: #0066cc; /* deeper blue */
  --glass-border: rgba(11,34,51,0.06);
  --radius: 14px;
  --radius-sm: 8px;
  --font-head: 'Poppins', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Base */
html,body{height:100%;}
body{
  background: var(--bg-2);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* NAV - light, minimal */
nav{
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(11,34,51,0.04);
}
.logo{ color:var(--text); font-weight:700; letter-spacing:-0.01em; }
.logo img{ max-height:28px; }
.nav-links a{ color:var(--muted); transition: color .18s, transform .18s; }
.nav-links a:hover{ color:var(--text); transform: translateY(-2px); }
.nav-cta{
  background: linear-gradient(90deg,var(--accent),var(--accent-2));
  color:#fff; border:none; padding:10px 20px; border-radius:999px;
  box-shadow: 0 8px 28px rgba(11,129,255,0.12);
}
.nav-cta:hover{ transform: translateY(-2px); }

/* HERO - matches screenshots: airy, left-aligned, big type */
.inl-s0054{ position: relative; overflow: visible; width: 100vw; margin-left: calc(50% - 50vw); }
.hero-slides{ height: calc(100vh - 72px); min-height: 420px; overflow: visible; }
.hero-slide-bg{ background: transparent !important; }
.s1bg, .s2bg, .s3bg{ background: transparent !important; }
.hero-content{ text-align:left; max-width:980px; margin-left:6vw; align-items:flex-start; }
.hero-tag{ background: rgba(255,255,255,0.15); backdrop-filter:blur(8px); border:1px solid rgba(255,255,255,0.35); color:#000; padding:8px 14px; border-radius:999px; font-weight:600; }
.hero-title{ color:var(--text); font-size: clamp(2.6rem, 6.4vw, 4.8rem); line-height:1.02; min-height: 0; }
.hero-sub{ color:#000; font-size:1.05rem; max-width:680px; }
.grad{ background: linear-gradient(90deg,var(--accent), var(--accent-2)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }

/* Buttons */
.btn-primary{
  background: linear-gradient(90deg,var(--accent), var(--accent-2));
  color:#fff; padding:12px 26px; border-radius:999px; font-weight:700; border:none;
  box-shadow: 0 12px 36px rgba(11,129,255,0.12), 0 2px 8px rgba(6,12,30,0.04);
}
.btn-primary:hover{ transform: translateY(-4px); box-shadow: 0 26px 60px rgba(11,129,255,0.14); }
.btn-outline{ background: rgba(255,255,255,0.12); backdrop-filter:blur(8px); border:1px solid rgba(255,255,255,0.4); color:#000; padding:12px 26px; border-radius:999px; font-weight:700; }
.btn-outline:hover{ background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.6); }

/* Cards - clean white with subtle border */
.service-card, .testi-card, .project-card, .type-card {
  background: var(--card);
  border: 1px solid rgba(11,34,51,0.04);
  box-shadow: 0 8px 20px rgba(20,34,47,0.04);
  transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease;
}
.service-card:hover, .testi-card:hover, .project-card:hover{ transform: translateY(-6px); border-color: rgba(11,129,255,0.12); box-shadow: 0 22px 60px rgba(11,129,255,0.06); }
.service-icon{ background: transparent; border-radius:10px; }
.service-icon svg { stroke: var(--accent); stroke-width:1.6; }

/* Accent for small link text */
.service-arrow{ color: var(--accent); }

/* Hero orb styling to match reference */
.hero-orb{ width:360px; height:360px; right:6vw; top:80px; border-radius:50%; background: radial-gradient(circle at 35% 30%, rgba(11,129,255,0.18), rgba(9,150,240,0.06) 45%, transparent 60%); filter: blur(40px); opacity:0.95; pointer-events:none; }

@keyframes float{ 0%{ transform: translateY(0) } 50%{ transform: translateY(-14px) } 100%{ transform: translateY(0) } }
.hero-orb{ animation: float 8s ease-in-out infinite; }

/* Reveal */
.reveal{ opacity:0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible{ opacity:1; transform: translateY(0); }

/* Gallery overlay */
.gallery-overlay{ background: linear-gradient(180deg, transparent, rgba(9,20,30,0.6)); }

/* logos track styling */
.client-logo{ background: transparent; border: 1px solid rgba(11,34,51,0.04); color:var(--muted); }

/* map */
.map-embed{ border-radius: 12px; border: 1px solid rgba(11,34,51,0.04); box-shadow: 0 10px 30px rgba(20,34,47,0.04); }

/* footer */
footer{ background: linear-gradient(180deg,#f6f9ff,#eef6ff); color:var(--muted); border-top:1px solid rgba(11,34,51,0.03); }

/* responsiveness and spacing tweaks */
@media (max-width:900px){
  .hero-content{ margin-left: 4vw; text-align:center; align-items:center; }
  .hero-sub{ max-width: 100%; }
  .hero-orb{ display:none; }
}

@media (max-width:600px){
  .hero-title{ font-size: 2.2rem; }
  nav{ padding: 0 3vw; }
}

/* icon colors for footer/social */
.social-link svg, .footer-col a svg { fill: var(--muted); }

/* softened scrollbars */
::-webkit-scrollbar{ height:8px; width:8px; }
::-webkit-scrollbar-thumb{ background: rgba(11,34,51,0.06); border-radius: 999px; }

/* Hero-area background video + overlay */
.site-bg-video{
  position: absolute; top: 0; bottom: 0; left: 50%; width: 120vw; height: 100%; object-fit: cover;
  z-index: 0; pointer-events: none; filter: contrast(1.02) brightness(0.62);
  transform: translateX(-50%) scaleX(-1); transform-origin: center;
}
.site-bg-overlay{
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  display: none;
}
/* ensure content sits above the background */
.page-wrap{ position: relative; z-index: 2; }

/* Hero background video */
.hero-slide-bg { position: relative; overflow: hidden; }
.hero-slide-bg .hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: 1; opacity: 0.95; transform: scale(1.02);
}
.hero-content { z-index: 3; }
@media (max-width:900px){
  .hero-slide-bg .hero-video { display: none; }
}
