/* ===========================================================
   TechWob IT — Landing Page Styles
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root{
  --blue: #2f5bff;
  --custom-blue: #0b31c0;
  --blue-dark: #1c3fd6;
  --red: #ef4444;
  --red-dark: #dc2626;
  --orange: #f59e0b;
  --ink: #0f172a;
  --ink-soft: #334155;
  --gray: #64748b;
  --gray-light: #94a3b8;
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --bg-soft-2: #eef2fb;
  --border: #e6e9f2;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(15,23,42,0.05);
  --shadow-md: 0 10px 30px rgba(15,23,42,0.08);
  --shadow-lg: 0 20px 50px rgba(15,23,42,0.12);
  --grad-primary: linear-gradient(90deg, var(--blue), var(--red));
  --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html{ scroll-behavior: smooth; overflow-x: clip; max-width: 100%; }

body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family: inherit; cursor:pointer; }

.container{
  width:100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.first{
    height: 14px;
    width: 260px;
    max-width: 100%;
    border: 1px solid;
    padding: 10px;
    border-radius: 15px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size: 12.5px;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  color: var(--custom-blue);
  margin-bottom: 12px;
  color: var(--custom-blue);
  
}
.eyebrow::before{
  content:"";
  width:7px; height:7px;
  border-radius:50%;
  background: var(--orange);
  display:inline-block;
}

.section-div{
  width: 600px;
  max-width: 100%;
}

.section-head{
  display:flex;
  /*justify-content:space-between;*/
  align-items:flex-end;
  gap:24px;
  margin-bottom: 44px;
}
.section-head h2{
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight:800;
  line-height:1.2;
  margin:0;
  letter-spacing:-0.01em;
}
.section-head p{
  color: var(--gray);
  font-size:15px;
  max-width: 360px;
  margin-top:0;
  line-height:1.6;
}
.text-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color: var(--custom-blue);
  font-weight:700;
  font-size:14px;
  white-space:nowrap;
  /*margin-top:10px;*/
  height: 35px;
  width: 178px;
  border: 1px solid;
  border-radius: 42px;
  padding: 21px;
}
.text-link svg{ transition: transform .2s ease; }
.text-link:hover svg{ transform: translateX(3px); }

.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight:700;
  font-size:14.5px;
  border:none;
  transition: all .2s ease;
}
.btn-primary{
  background: var(--custom-blue);
  color:#fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover{ background: var(--custom-blue); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary .icn{
  width:26px; height:26px;
  border-radius:50%;
  background: #fff;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.btn-ghost{
  background: transparent;
  color: var(--ink);
  border:1.5px solid var(--border);
}
.btn-ghost:hover{ border-color: var(--custom-blue); color: var(--custom-blue); }
.btn-ghost .icn{
  width:24px;height:24px;border-radius:50%;
  border:1.5px solid var(--border);
  display:flex;align-items:center;justify-content:center;
}
.btn-white{
  background:#fff; color: var(--ink);
}
.btn-white:hover{ transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-white .icn{
  width:26px; height:26px;
  border-radius:50%;
  background:#eef2ff;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}

/* ===================== HEADER ===================== */
.site-header{
  position: sticky; top:0; z-index:100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  /*border-bottom:1px solid var(--border);*/
}
.site-header .container{
  display:flex; align-items:center; justify-content:space-between;
  height: 70px;
}
.logo{
  display:flex; align-items:center; gap:10px; width:430px;
}
.logo .mark{
  width:38px;height:38px;
  flex-shrink:0;
}
.logo .word{
  font-family: var(--font-display);
  font-weight:800;
  font-size:27px;
  line-height:1.1;
  color: var(--ink);
}
.logo .word span{ color: var(--red); }
.logo .tag{
  font-size:14.5px;
  color: var(--gray);
  font-weight:500;
  letter-spacing:.01em;
}

.nav-main{
  display:flex; align-items:center; gap:35px; margin-top: 10px;
}
.nav-main a{
  font-size:15px;
  /*font-weight:600;*/
  color: var(--ink-soft);
  position:relative;
  padding-bottom:6px;
}
.nav-main a.active{ color: #082fc0; }
.nav-main a.active::after{
  content:"";
  position:absolute; left:0; right:0; bottom:0;
  height:2px; background: var(--custom-blue); border-radius:2px;
}
.nav-main a:hover{ color: var(--custom-blue); }

/* ---------- Services / Technology dropdown (desktop hover) ---------- */
.nav-item{
  position: relative;
  display: flex;
  align-items: center;
}
.nav-item > a.nav-top-link{
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-caret{
  color: var(--gray-light);
  transition: transform .2s ease, color .2s ease;
}
.nav-item:hover .nav-caret,
.nav-item:focus-within .nav-caret{
  transform: rotate(180deg);
  color: var(--custom-blue);
}
.nav-dropdown{
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  /* transparent bridge: keeps the hover chain unbroken while the
     cursor travels from the trigger link down into the panel */
  padding-top: 5px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, visibility .18s ease;
  z-index: 150;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-dropdown-inner{
  min-width: 250px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  transform: translateY(-6px);
  transition: transform .18s ease;
}
.nav-item:hover .nav-dropdown-inner,
.nav-item:focus-within .nav-dropdown-inner{
  transform: translateY(0);
}
.nav-dropdown-inner a{
  display: block;
  padding: 11px 14px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
  border-radius: 10px;
  white-space: nowrap;
}
.nav-dropdown-inner a:hover{
  background: var(--bg-soft-2);
  color: var(--custom-blue);
}

.header-actions{ display:flex; align-items:center; gap:14px; }
.hamburger{
  display:none;
  width:42px;height:42px;
  border-radius:50%;
  border:1.5px solid var(--border);
  background:#fff;
  align-items:center; justify-content:center;
  flex-shrink:0;
}
.hamburger span, .hamburger span::before, .hamburger span::after{
  content:""; display:block;
  width:18px; height:2px; background: var(--ink);
  border-radius:2px; position:relative;
  transition: all .25s ease;
}
.hamburger span::before{ position:absolute; top:-6px; }
.hamburger span::after{ position:absolute; top:6px; }
.hamburger.open span{ background: transparent; }
.hamburger.open span::before{ top:0; transform: rotate(45deg); }
.hamburger.open span::after{ top:0; transform: rotate(-45deg); }

.mobile-nav{
  display:none;
  position:fixed; inset:70px 0 0 0;
  background:#fff;
  z-index:99;
  padding: 20px 24px 40px;
  overflow-y:auto;
  border-top:1px solid var(--border);
}
.mobile-nav.open{ display:block; }
.mobile-nav a{
  display:block;
  padding: 16px 4px;
  font-size:17px;
  font-weight:700;
  border-bottom:1px solid var(--border);
  color: var(--ink);
  transition: color .15s ease, padding-left .15s ease;
}
.mobile-nav a.active{
  color: var(--custom-blue);
  padding-left: 12px;
  border-left: 3px solid var(--custom-blue);
}
/*.mobile-nav .btn{ margin-top:24px; width:100%; justify-content:center; }*/
.mobile-nav .btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:52px;
  margin-top:24px;
  padding:0 20px;
  border:0;
  border-radius:999px;
  font-size:15px;
  font-weight:700;
  color:#fff;
  background:var(--custom-blue);
  box-shadow:var(--shadow-sm);
  box-sizing:border-box;
}

.mobile-nav .btn:hover{
  background:var(--blue-dark);
  transform:none;
}

.mobile-nav .btn .icn{
  width:26px;
  height:26px;
  margin-left:2px;
  border-radius:50%;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  display: none;
}

.mobile-nav .btn .icn svg{
  display:block;
}
/* ===================== HERO ===================== */
.hero{
  padding: 30px 0 0px;
  overflow:hidden;
  position:relative;
}
.hero .container{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  /*align-items:center;*/
  margin-top: 20px;
  margin-bottom: -100px;
}
.hero h1{
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 54px);
  font-weight:800;
  line-height:1.12;
  letter-spacing:-0.02em;
  margin: 0 0 20px;
}

.real-blue{
  color: var(--custom-blue);
}

.real-red{
  color: var(--red);
}

.hero h1 .grad{
  background: var(--grad-primary);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero p{
  color: var(--gray);
  font-size:16px;
  line-height:1.7;
  max-width:480px;
  margin: 0 0 30px;
}
.hero .cta-row{
  display:flex; align-items:center; gap:16px; flex-wrap:wrap;
}

.hero-art{
  position:relative;
  aspect-ratio: 1/1;
  display:flex; align-items:center; justify-content:center;
}
.hero-art svg{ width:100%; height:100%; }
.floater{
  position:absolute;
  border-radius:8px;
  animation: float 5s ease-in-out infinite;
}
.floater.f1{ top:8%; left:2%; width:34px; height:34px; background:#dbe3ff; transform:rotate(12deg); animation-delay:.2s;}
.floater.f2{ top:0%; right:20%; width:22px; height:22px; background: var(--custom-blue); animation-delay:1s;}
.floater.f3{ bottom:25%; left:0; width:26px; height:26px; background:#ffd7d9; transform:rotate(20deg); animation-delay:1.6s;}
.floater.f4{ top:40%; right:15%; width:20px; height:20px; background: var(--orange); border-radius:50%; animation-delay:.8s;}
.floater.f5{ bottom:26%; right:14%; width:30px;height:30px; background:#ffe3b8; transform:rotate(-10deg); animation-delay:2s;}
@keyframes float{
  0%,100%{ transform: translateY(0) rotate(var(--r,0deg)); }
  50%{ transform: translateY(-14px) rotate(var(--r,0deg)); }
}

/* ===================== LOGO STRIP ===================== */
.logo-strip{ padding: 10px 0 25px; }

.logo-strip .container{
  max-width: 1200px;
  /*border-top: 1px solid var(--border);*/
  /*border-bottom: 1px solid var(--border);*/
  padding: 10px 0 25px;
}

.logo-strip .label{
  text-align:center;
  font-size:11.5px;
  font-weight:700;
  letter-spacing:.08em;
  color: var(--gray-light);
  margin-bottom:24px;
  text-transform:uppercase;
}
.logo-strip .row{
  display:flex;
  /*align-items:center;
  justify-content:center;*/
  flex-wrap:wrap;
  gap: 145px;
  font-size: 17px;
  margin-left: 35px;
}
.logo-strip .brand{
  display:flex; align-items:center; gap:8px;
  font-weight:700; font-size:15px;
  color: var(--ink-soft);
  opacity:.7;
}
.logo-strip .brand .dot{
  width:20px;height:20px;border-radius:50%;
  border:2px solid var(--ink-soft);
  flex-shrink:0;
}

/* ===================== PROFILES & REVIEWS BAR ===================== */
.profiles-bar{
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

img.profile-img {
    height: 40px;
    /* width: 121px; */
}

span.profile-sub.freelance {
    margin-left: 10px;
}
.profiles-bar-repeat{
  border: 2.5px solid #878080;
  border-radius: var(--radius-lg);
  margin: 0 auto 30px;
  max-width: 1200px;
  padding: 16px 24px;
}
.profiles-bar-repeat .container{ padding: 0; max-width: none; }
.profiles-label{
  text-align:center;
  font-size:15px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color: var(--gray-light);
  margin-bottom: 25px;
}
.profiles-row{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0px;
}
.profile-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  text-align:center;
  padding: 0 8px;
  position:relative;
}
.profile-item + .profile-item::before{
  content:"";
  position:absolute;
  left:0; top:4px; bottom:4px;
  width:1px;
  background: var(--border);
}
.profile-top{
  display:flex;
  align-items:center;
  gap:30px;
  flex-wrap:wrap;
  justify-content:center;
}
.profile-logo{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-weight:800;
  font-size:19px;
  margin-left: -53px;
}
.profile-brand-text{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  line-height:1.3;
}
.profile-sub{
  font-size:11.5px;
  font-weight:600;
  color: var(--gray);
  letter-spacing:.02em;
}
.profile-link{
  display:inline-flex;
  align-items:center;
  gap:4px;
  font-size:12.5px;
  font-weight:700;
  color: var(--custom-blue);
  white-space:nowrap;
}
.profile-rating{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:13px;
  margin-left: 66px;
}
.profile-rating .rating-num{ font-weight:800; color: var(--ink); }
.profile-rating .stars{ color: var(--orange); letter-spacing:1px; font-size:12px; }
.profile-rating .stars-trustpilot{ color:#00b67a; }
.profile-rating .rating-count{ color: var(--gray); }

/* ===================== SERVICES ===================== */
.services{ padding: 20px 0; }
.svc-track-wrap{ position:relative; }
.svc-viewport{
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.svc-viewport::-webkit-scrollbar{ display:none; }
.svc-track{
  display:flex;
  gap: 6px;
  width: max-content;
}
.svc-track-mobile {
    display: flex;
    gap: 37px;
    /* width: max-content; */
}
/*.svc-card{*/
/*  background: #fff;*/
/*  border:1.5px solid var(--border);*/
/*  border-radius: var(--radius-md);*/
/*  padding: 26px 22px;*/
/*  transition: all .2s ease;*/
/*  flex: 0 0 auto;*/
/*  width: 232px;*/
/*  scroll-snap-align: start;*/
/*}*/

.svc-card{
  background: #fff;
  border:1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: all .2s ease;
  flex: 0 0 auto;
  width: 232px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}

.svc-card:hover, .svc-card.active{
  background:#fff;
  border-color: var(--custom-blue);
  box-shadow: var(--shadow-md);
  /*transform: translateY(-4px);*/
}
/*.svc-card .ic{*/
/*  width:46px;height:46px;*/
/*  border-radius:12px;*/
/*  background:#e7ecff;*/
/*  display:flex; align-items:center; justify-content:center;*/
/*  margin-bottom:20px;*/
/*}*/
/*.svc-card h3{ font-size:16px; font-weight:700; margin:0 0 8px; }*/

.svc-card .ic{
  width:46px;height:46px;
  border-radius:12px;
  background:#e7ecff;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:20px;
}

.svc-card h3{ font-size:16px; font-weight:700; margin:0 0 8px; }

.svc-card p{
  font-size:13.5px;
  color: var(--gray);
  line-height:1.6;
  margin:0 0 20px;
  flex: 1;              /* fills remaining space instead of min-height */
}

.svc-card .num{
  font-size:13px;
  font-weight:800;
  color: var(--custom-blue);
  margin-top: auto;     /* pushes number to the bottom, same row for all cards */
}

/*.svc-card p{ font-size:13.5px; color: var(--gray); line-height:1.6; margin:0 0 20px; min-height:60px; }*/
/*.svc-card .num{ font-size:13px; font-weight:800; color: var(--custom-blue); }*/

.slider-arrows{ display:flex; gap:10px; }
.arrow-btn{
  width:40px;height:40px;
  border-radius:50%;
  border:1.5px solid var(--border);
  background:#fff;
  display:flex; align-items:center; justify-content:center;
  transition: all .2s ease;
}
.arrow-btn:hover{ background: var(--ink); border-color: var(--ink); color:#fff; }
.svc-nav{ position:static; }
.side-arrow{
  position:absolute; top:50%; transform:translateY(-50%);
  z-index:5;
}
.side-arrow.prev{ left:-54px; }
.side-arrow.next{ right:-54px; }

/* ===================== CASE STUDIES ===================== */
/*.cases{ padding: 0px 0; background: var(--bg-soft); }*/
.case-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card{
  background:#fff;
  border-radius: var(--radius-md);
  overflow:hidden;
  box-shadow: var(--shadow-sm);
  transition: all .25s ease;
}
.case-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.case-media{
  position:relative;
  height: 200px;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.case-media img{ width:100%; height:100%; object-fit:cover; }
.case-tag{
  position:absolute; top:14px; left:14px;
  background:#fff;
  padding: 5px 12px;
  border-radius:999px;
  font-size:11.5px;
  font-weight:700;
}
.case-tag.fintech{ background:#0f172a; color:#fff; }
.case-tag.health{ background: var(--custom-blue); color:#fff; }
.case-tag.ecom{ background: var(--orange); color:#fff; }
.case-body{ padding: 22px 22px 26px; }
.case-body h3{ font-size:17px; font-weight:700; margin:0 0 8px; }
.case-body p{ font-size:13.5px; color: var(--gray); line-height:1.6; margin:0 0 16px; }

/* ===================== STATS ===================== */
.stats-bar{
  background:#fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  /*margin: -30px auto 0;*/
  /*max-width: 1100px;*/
  position:relative;
  /*z-index:3;*/
  display:grid;
  grid-template-columns: repeat(4,1fr);
  padding-top: 10px;
  margin-top: 25px;
}
.stat-item{
  padding: 20px 8px;
  display:flex; align-items:center; gap:14px;
  border-right:1px solid var(--border);
  justify-content:center;
}
.stat-item:last-child{ border-right:none; }
.stat-item .ic{
  width:42px;height:42px;
  border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.stat-item .num{ font-size:30px; font-weight:800; font-family: var(--font-display); line-height:1.1; color: var(--custom-blue) }
.stat-item .lbl{ font-size:12.5px; color: var(--gray); font-weight:600; }

/* ===================== TESTIMONIAL VIDEOS ===================== */
.video-testi{ padding: 25px 0 0px; }
.vt-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vt-card{
  background:#fff;
  border-radius: var(--radius-md);
  overflow:hidden;
  box-shadow: var(--shadow-sm);
  border:1.5px solid var(--border);
}
.vt-media{
  position:relative;
  height: 220px;
  overflow:hidden;
}
.vt-media img{ width:100%; height:100%; object-fit:cover; }

.vt-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
    border-radius: 14px;
}

.vt-media iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}
.play-btn{
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:56px;height:56px;
  border-radius:50%;
  background: rgba(255,255,255,0.95);
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-md);
}
.vt-media.yt-facade{ cursor:pointer; }

.yt-play{
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:56px; height:56px;
  border-radius:50%;
  border:none;
  background: rgba(255,255,255,0.95);
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-md);
  font-size:18px;
  color: var(--blue, #2f5bff);
  cursor:pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.yt-play:hover{
  background:#fff;
  transform: translate(-50%,-50%) scale(1.08);
}

.vt-time{
  position:absolute; bottom:12px; right:12px;
  background: rgba(15,23,42,0.7);
  color:#fff; font-size:11.5px; font-weight:700;
  padding: 3px 9px; border-radius:6px;
}
.vt-body{ padding: 20px; }
.stars{ color: var(--orange); font-size:13px; 
  /*margin-bottom:10px; */
  letter-spacing:2px; }
.vt-body .quote{ font-size:14px; color: var(--ink-soft); line-height:1.6; margin:0 0 16px; }
.vt-person{ display:flex; align-items:center; gap:10px; }
.vt-person .av{
  width:34px;height:34px;border-radius:8px;
  display:flex;align-items:center;justify-content:center;
  color:#fff; font-weight:800; font-size:13px; flex-shrink:0;
}
.vt-person .name{ font-size:13.5px; font-weight:700; }
.vt-person .role{ font-size:12px; color: var(--gray); }

.dots{ display:flex; justify-content:center; gap:8px; margin-top:34px; }
.dots .dot{ width:7px;height:7px;border-radius:50%; background: var(--border); transition: all .2s ease; }
.dots .dot.active{ width:22px; border-radius:4px; background: var(--custom-blue); }

/* ===================== SPECIALTY / DIFFERENT ===================== */
.specialty{ padding: 10px 0; }

.specialty .container{ padding: 15px 30px; border-bottom: 1px solid var(--border); }
.spec-grid{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  text-align:center;
}


/*.spec-item {
    border-right: 1px solid;
    padding-right: 16px;
}*/

.spec-item:not(:last-child) {
    /*border-right: 1px solid;*/
    border-right: 1px solid var(--border);
    padding-right: 16px;
    color: var(--gray);
}

.spec-item .ic{
  width:56px;height:56px;
  border-radius:50%;
  background:#fff;
  display:flex; align-items:center; justify-content:center;
  margin: 0 auto 18px;
  box-shadow: var(--shadow-sm);
}
.spec-item h3{ font-size:14.5px; font-weight:700; margin:0 0 8px; }
.spec-item p{ font-size:12.5px; color: var(--gray); line-height:1.6; margin:0; }

/* ===================== WHY CHOOSE US ===================== */
.why-us{ padding: 40px 0; }
.why-head{
  display:flex; 
  /*justify-content:space-between; */
  align-items:flex-start; gap:50px;
  margin-bottom: 44px; flex-wrap:wrap;
}
.why-head p{ color: var(--gray); font-size:14.5px; max-width:340px; margin:0; line-height:1.6; }
.why-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card{
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  transition: all .2s ease;
  display:flex;
  align-items:flex-start;
  gap:16px;
}
.why-card:hover{ border-color: var(--custom-blue); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-card .ic{
  width:44px;height:44px;
  border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  color:#fff;
  flex-shrink:0;
}
.why-text{ min-width:0; }
.why-card h3{ font-size:15.5px; font-weight:700; margin:0 0 8px; }
.why-card p{ font-size:13px; color: var(--gray); line-height:1.6; margin:0; }

/* ===================== TRUSTED TESTIMONIALS ===================== */
.trusted{ padding: 0px 0; }
.tw-slider-wrap{ position:relative; }
.tw-viewport{
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tw-viewport::-webkit-scrollbar{ display:none; }
.tw-grid{
  display:flex;
  gap: 24px;
  width: max-content;
  margin-bottom: 15px;
}
.tw-card{
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position:relative;
  flex: 0 0 auto;
  width: 380px;
  scroll-snap-align: start;
}
.tw-arrow{ position:absolute; top:40%; transform:translateY(-50%); z-index:5; }
.tw-arrow.prev{ left:-54px; }
.tw-arrow.next{ right:-54px; }
.tw-card .qmark{
  font-family: var(--font-display);
  font-size:40px; color: var(--custom-blue); opacity:.25; line-height:1;
  margin-bottom:6px;
}
.tw-card p{ font-size:14.5px; color: var(--ink-soft); line-height:1.7; margin:0 0 20px; }
.tw-person{ display:flex; align-items:center; gap:12px; }
.tw-person img{ width:44px;height:44px; border-radius:50%; object-fit:cover; }
.tw-person .name{ font-size:14px; font-weight:700; }
.tw-person .role{ font-size:12.5px; color: var(--gray); }

/* ===========================================================
   CASE STUDY DETAIL PAGE
   =========================================================== */

/* ---------- Breadcrumb ---------- */
.cs-breadcrumb{ padding: 22px 0 6px; }
.cs-breadcrumb .container{
  display:flex; align-items:center; gap:8px;
  font-size:13px; color: var(--gray-light);
}
.cs-breadcrumb a{ color: var(--gray); font-weight:600; }
.cs-breadcrumb a:hover{ color: var(--custom-blue); }
.cs-breadcrumb .sep{ color: var(--gray-light); }
.cs-breadcrumb .current{ color: var(--ink-soft); font-weight:600; }

/* ---------- Hero ---------- */
.cs-hero{ padding: 22px 0 10px; overflow:hidden; position:relative; }
.cs-hero .container{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items:center;
}
.cs-tag{
  display:inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--bg-soft-2);
  color: var(--custom-blue);
  font-size:12.5px;
  font-weight:700;
  margin-bottom:16px;
}
.cs-hero h1{
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 42px);
  font-weight:800;
  line-height:1.15;
  letter-spacing:-0.02em;
  color: var(--blue-dark);
  margin: 0 0 18px;
}
.cs-hero p{
  color: var(--gray);
  font-size:15.5px;
  line-height:1.75;
  max-width:460px;
  margin: 0 0 28px;
}
.cs-hero .cta-row{ display:flex; align-items:center; gap:14px; flex-wrap:wrap; }

/* ---------- Device mockup ---------- */
.cs-device{
  position:relative;
  display:flex; align-items:center; justify-content:center;
  min-height: 320px;
}
.cs-laptop{
  position:relative;
  width: 100%;
  max-width: 530px;
  /*background: #12172b;*/
  border-radius: 14px;
  /*padding: 10px 10px 34px;*/
  box-shadow: var(--shadow-lg);
}
.cs-laptop::after{
  content:"";
  position:absolute;
  left:50%; bottom:10px; transform:translateX(-50%);
  width:64px; height:5px; border-radius:3px;
  background:#2a3150;
}
.cs-laptop-screen{
  background:#fff;
  border-radius:8px;
  padding:14px;
  overflow:hidden;
}
.cs-screen-topbar{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:14px;
}
.cs-screen-topbar .title{ font-size:12.5px; font-weight:800; color: var(--ink); display:flex; align-items:center; gap:6px; }
.cs-screen-topbar .title .dot{ width:8px;height:8px; border-radius:50%; background:var(--custom-blue); display:inline-block; }
.cs-screen-topbar .bell{ width:20px;height:20px; border-radius:50%; background: var(--bg-soft-2); display:flex; align-items:center; justify-content:center; }
.cs-screen-body{ display:grid; grid-template-columns: 34px 1fr; gap:12px; }
.cs-screen-nav{ display:flex; flex-direction:column; gap:10px; padding-top:2px; }
.cs-screen-nav span{ width:20px; height:6px; border-radius:3px; background: var(--border); }
.cs-screen-nav span:first-child{ background: var(--custom-blue); width:20px; }
.cs-screen-main{ background: var(--bg-soft); border-radius:10px; padding:12px; position:relative; }
.cs-kpi-label{ font-size:9.5px; color: var(--gray); text-transform:uppercase; letter-spacing:.03em; margin-bottom:4px; }
.cs-kpi-value{ font-size:16px; font-weight:800; color: var(--ink); margin-bottom:10px; }
.cs-ring{
  position:absolute; top:10px; right:10px;
  width:44px; height:44px; border-radius:50%;
  background: conic-gradient(var(--custom-blue) 0% 60%, var(--border) 60% 100%);
  display:flex; align-items:center; justify-content:center;
}
.cs-ring::after{
  content:"60%";
  width:32px; height:32px; border-radius:50%;
  background:#fff;
  font-size:8px; font-weight:800; color: var(--custom-blue);
  display:flex; align-items:center; justify-content:center;
}
.cs-chart-line{ display:block; margin-top:4px; }

.cs-phone{
  position:absolute;
  right:-6%; bottom:-12%;
  width: 118px;
  background:#12172b;
  border-radius:20px;
  padding:8px 8px 14px;
  box-shadow: var(--shadow-lg);
}
.cs-phone-screen{ background:#fff; border-radius:12px; padding:10px; }
.cs-phone-screen .title{ font-size:9px; font-weight:800; color: var(--custom-blue); margin-bottom:6px; }
.cs-phone-screen .bal{ font-size:12px; font-weight:800; color: var(--ink); margin-bottom:8px; }

.cs-floater{ position:absolute; border-radius:6px; animation: float 5s ease-in-out infinite; }
.cs-floater.c1{ top:2%; left:17%; width:24px; height:24px; background: var(--custom-blue); transform:rotate(14deg); animation-delay:.2s; }
.cs-floater.c2{ top:20%; right:16%; width:20px; height:20px; background: var(--red); border-radius:50%; animation-delay:1s; }
.cs-floater.c3{ bottom:8%; left:24%; width:22px; height:22px; background:#dbe3ff; transform:rotate(24deg); animation-delay:1.5s; }
.cs-floater.c4{ top:66%; right:24%; width:18px; height:18px; background: var(--gray-light); opacity:.5; transform:rotate(-10deg); animation-delay:.9s; }

/* ---------- Info bar ---------- */
.cs-info-bar{
  border:1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.cs-info-item{ display:flex; align-items:flex-start; gap:10px; }
.cs-info-item .ic{
  width:34px; height:34px; border-radius:9px;
  background: var(--bg-soft-2);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.cs-info-item .lbl{ font-size:12px; color: var(--gray); margin-bottom:3px; }
.cs-info-item .val{ font-size:13.5px; font-weight:700; color: var(--ink); line-height:1.4; }

/* ---------- Overview: challenge / solution / results ---------- */
.cs-overview{ padding: 60px 0 10px; }
.cs-overview-grid{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}
.cs-ov-card h3{
  display:flex; align-items:center; gap:10px;
  font-size:17px; font-weight:800; margin: 0 0 16px;
}
.cs-ov-icon{
  width:32px; height:32px; border-radius:9px;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.cs-ov-icon.warn{ background:#fee2e2; }
.cs-ov-icon.ok{ background:#dcfce7; }
.cs-ov-icon.win{ background:#fef3c7; }
.cs-ov-card ul{ display:flex; flex-direction:column; gap:12px; }
.cs-ov-card ul li{
  font-size:14px; color: var(--ink-soft); line-height:1.6;
  padding-left:16px; position:relative;
}
.cs-ov-card ul li::before{
  content:""; position:absolute; left:0; top:8px;
  width:5px; height:5px; border-radius:50%; background: var(--gray-light);
}
.cs-results{ display:flex; flex-direction:column; gap:18px; }
.cs-result-item .num{
  font-family: var(--font-display);
  font-size:28px; font-weight:800; color: var(--custom-blue);
  line-height:1;
}
.cs-result-item .lbl{ font-size:13.5px; color: var(--gray); margin-top:4px; }

/* ---------- Key features ---------- */
.cs-features{ padding: 56px 0 10px; }
.cs-features h2{
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight:800;
  margin: 0 0 28px;
}
.cs-feat-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.cs-feat-card{
  border:1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}
.cs-feat-card .ic{
  width:38px; height:38px; border-radius:10px;
  background: var(--bg-soft-2);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:14px;
}
.cs-feat-card h4{ font-size:14.5px; font-weight:700; margin:0 0 6px; }
.cs-feat-card p{ font-size:12.5px; color: var(--gray); line-height:1.6; margin:0; }

/* ---------- Screenshots slider ---------- */
.cs-shots{ padding: 56px 0 10px; }
.cs-shots .section-head{ margin-bottom: 26px; }
.shot-card{
  flex: 0 0 auto;
  width: 294px;
  border:1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow:hidden;
  background:#fff;
  scroll-snap-align: start;
}

.shot-card-mobile
 {
    flex: 0 0 auto;
    width: 202px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #fff;
    scroll-snap-align: start;
}
.shot-card .shot-topbar{
  display:flex; align-items:center; gap:5px;
  padding: 9px 10px;
  border-bottom:1px solid var(--border);
}
.shot-card .shot-topbar span{ width:6px;height:6px; border-radius:50%; background: var(--border); }
.shot-card .shot-topbar .name{ font-size:10.5px; font-weight:700; color: var(--gray); margin-left:4px; }
.shot-card .shot-body{ padding:14px; }
.shot-trio{ display:flex; gap:6px; padding:14px; justify-content:center; }
.shot-trio .mini-phone{
  width:44px; height:82px; border-radius:8px;
  background:#12172b; padding:4px;
}
.shot-trio .mini-phone .mini-screen{ width:100%; height:100%; border-radius:5px; background:#fff; padding:5px; }
.shot-trio .mini-screen .bar{ height:4px; border-radius:2px; background: var(--bg-soft-2); margin-bottom:4px; }
.shot-trio .mini-screen .bar.blue{ background: var(--custom-blue); width:70%; }

/* ---------- Testimonial ---------- */
.cs-quote-wrap{ padding: 56px 0 10px; }
.cs-quote{
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 34px 36px;
  display:flex; align-items:center; justify-content:space-between;
  gap:32px;
  flex-wrap:wrap;
}
.cs-quote .qmark{
  font-family: var(--font-display);
  font-size:34px; color: var(--custom-blue); opacity:.35; line-height:1;
  margin-bottom:10px;
}
.cs-quote p{ font-size:15.5px; color: var(--ink-soft); line-height:1.7; margin:0; max-width:600px; }
.cs-quote-person{ display:flex; align-items:center; gap:12px; flex-shrink:0; }
.cs-quote-person img{ width:52px;height:52px; border-radius:50%; object-fit:cover; }
.cs-quote-person .name{ font-size:14.5px; font-weight:700; color: var(--custom-blue); }
.cs-quote-person .role{ font-size:12.5px; color: var(--gray); }

/* ===========================================================
   CONTACT PAGE
   =========================================================== */

/* ---------- Hero ---------- */
.ct-hero{ padding: 30px 0 10px; overflow:hidden; }
.ct-hero .container{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items:center;
}
.ct-hero h1{
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight:800;
  line-height:1.15;
  letter-spacing:-0.02em;
  margin: 6px 0 16px;
}
.ct-hero h1 .grad{
  background: var(--grad-primary);
  -webkit-background-clip:text;
  background-clip:text;
  color:var(--custom-blue);
  display:block;
}
.ct-hero p{
  color: var(--gray);
  font-size:15.5px;
  line-height:1.75;
  max-width:460px;
  margin: 0 0 24px;
}
.ct-response{
  display:flex; align-items:center; gap:12px;
}
.ct-response .ic{
  width:38px; height:38px; border-radius:10px;
  background: var(--bg-soft-2);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.ct-response .lbl{ font-size:13px; color: var(--gray); line-height:1.4; }
.ct-response .val{ font-size:13.5px; font-weight:700; color: var(--custom-blue); }

/* Hero cube art */
.ct-art{
  position:relative;
  display:flex; align-items:center; justify-content:center;
  min-height: 280px;
}
.ct-cube-main{
  width: 220px; height:220px;
  position:relative;
  z-index:2;
}
.ct-floater{ position:absolute; border-radius:6px; animation: float 5s ease-in-out infinite; z-index:1; }
.ct-floater.c1{ top:6%; left:6%; width:26px; height:26px; background: var(--custom-blue); transform:rotate(12deg); animation-delay:.2s; }
.ct-floater.c2{ top:10%; left:26%; width:20px; height:20px; background: var(--red); transform:rotate(-8deg); animation-delay:.9s; }
.ct-floater.c3{ bottom:16%; right:8%; width:22px; height:22px; background: var(--orange); border-radius:50%; animation-delay:1.4s; }
.ct-floater.c4{ bottom:4%; right:20%; width:20px; height:20px; background: var(--gray-light); opacity:.5; transform:rotate(20deg); animation-delay:.6s; }
.ct-dots{
  position:absolute; top:2%; right:0%;
  width:70px; height:70px;
  background-image: radial-gradient(var(--border) 1.6px, transparent 1.6px);
  background-size: 12px 12px;
  opacity:.8;
}

/* ---------- Get in touch + form panels ---------- */
.ct-panels{ padding: 38px 0 0; }
.ct-panels .container{
  display:grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items:start;
}
.ct-panel{
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  background:#fff;
}
.ct-panel h3{ font-size:19px; font-weight:800; margin: 0 0 20px; }
.ct-info-list{ display:flex; flex-direction:column; gap:20px; margin-bottom: 24px; }
.ct-info-row{ display:flex; align-items:flex-start; gap:14px; }
.ct-info-row .ic{
  width:44px; height:44px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.ct-info-row .ic.blue{ background: var(--custom-blue); }
.ct-info-row .ic.red{ background: var(--red); }
.ct-info-row .ic.orange{ background: var(--orange); }
.ct-info-row .ic.teams{ background: #464eb8; }
.ct-info-row h4{ font-size:14.5px; font-weight:700; margin:0 0 3px; }
.ct-info-row .main{ font-size:13.5px; color: var(--ink-soft); font-weight:600; }
.ct-info-row .sub{ font-size:12.5px; color: var(--gray); margin-top:2px; }
.ct-follow-label{ font-size:13.5px; font-weight:700; margin: 0 0 12px; }
.ct-social{ display:flex; gap:10px; }
.ct-social a{
  width:36px; height:36px; border-radius:50%;
  border:1.5px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  color: var(--custom-blue);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.ct-social a:hover{ background: var(--custom-blue); color:#fff; border-color: var(--custom-blue); }

/* ---------- Form ---------- */
.ct-form-desc{ font-size:13.5px; color: var(--gray); margin: -12px 0 22px; }
.ct-form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:14px; margin-bottom:14px; }
.ct-field{ position:relative; }
.ct-field .ic{
  position:absolute; left:14px; top:50%; transform:translateY(-50%);
  color: var(--gray-light);
  display:flex; pointer-events:none;
}

span.ic.msg {
    top: 20%;
}

.ct-field input,
.ct-field select,
.ct-field textarea{
  width:100%;
  border:1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 14px 13px 42px;
  font-family: inherit;
  font-size:13.5px;
  color: var(--ink);
  background:#fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.ct-field select{ appearance:none; -webkit-appearance:none; padding-right:36px; cursor:pointer; }
.ct-field .sel-caret{
  position:absolute; right:14px; top:50%; transform:translateY(-50%);
  pointer-events:none; color: var(--gray);
}
.ct-field textarea{ padding-left:42px; padding-top:13px; resize:vertical; min-height:110px; }
.ct-field textarea + .ic{ top:20px; transform:none; }
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus{
  outline:none;
  border-color: var(--custom-blue);
  box-shadow: 0 0 0 3px rgba(47,91,255,0.12);
}
.ct-field.full{ margin-bottom:14px; }
.ct-field .req{ color: var(--red); }

/* field-level validation state */
.ct-field.error input,
.ct-field.error select,
.ct-field.error textarea{
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}
.ct-error-msg{
  display:none;
  align-items:center; gap:6px;
  font-size:12px; color: var(--red-dark); font-weight:600;
  margin-top:6px;
}
.ct-field.error .ct-error-msg{ display:flex; }

.ct-consent{
  display:flex; align-items:flex-start; gap:10px;
  font-size:12.5px; color: var(--gray);
  margin: 4px 0 20px;
  line-height:1.6;
}
.ct-consent input{
  margin-top:2px;
  width:16px; height:16px;
  accent-color: var(--custom-blue);
  flex-shrink:0;
  cursor:pointer;
}
.ct-consent a{ color: var(--custom-blue); font-weight:600; }
.ct-consent.error{ color: var(--red-dark); }
.ct-consent.error a{ color: var(--red-dark); }

.ct-submit-btn{
  width:100%;
  justify-content:center;
  padding: 15px 20px;
  font-size:14.5px;
}
.ct-submit-btn[disabled]{ opacity:.7; cursor:not-allowed; }
.ct-submit-btn .spinner{
  width:16px; height:16px;
  border-radius:50%;
  border:2px solid rgba(255,255,255,.4);
  border-top-color:#fff;
  animation: ct-spin .7s linear infinite;
  display:none;
}
.ct-submit-btn.loading .spinner{ display:inline-block; }
.ct-submit-btn.loading .btn-label,
.ct-submit-btn.loading .icn{ display:none; }
@keyframes ct-spin{ to{ transform:rotate(360deg); } }

/* form-level status banner */
.ct-form-status{
  display:none;
  align-items:flex-start; gap:12px;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size:13.5px;
  line-height:1.55;
  margin-top:16px;
}
.ct-form-status .ic{ flex-shrink:0; margin-top:1px; }
.ct-form-status.show{ display:flex; }
.ct-form-status.success{ background:#ecfdf3; color:#15803d; border:1.5px solid #bbf3cf; }
.ct-form-status.error{ background:#fef2f2; color:#b91c1c; border:1.5px solid #fecaca; }

/* ---------- Trust strip ---------- */
.ct-trust{ padding: 44px 0 0; }
.ct-trust-grid{
  border:1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 30px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ct-trust-item{ display:flex; align-items:flex-start; gap:12px; }
.ct-trust-item .ic{ flex-shrink:0; margin-top:2px; }
.ct-trust-item h4{ font-size:13.5px; font-weight:700; margin:0 0 3px; }
.ct-trust-item p{ font-size:12px; color: var(--gray); margin:0; line-height:1.5; }

/* ---------- Map + office ---------- */
.ct-map-wrap{ padding: 44px 0 25px; }
.ct-map-wrap .container{
  display:grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 24px;
  align-items:stretch;
}
.ct-map{
  border:1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow:hidden;
  min-height: 280px;
  position:relative;
  background: var(--bg-soft);
}
.ct-map iframe{ width:100%; height:100%; min-height:280px; border:0; display:block; }
.ct-map .ct-map-placeholder{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  flex-direction:column; gap:8px;
  color: var(--gray);
  font-size:13px;
  text-align:center;
  padding: 20px;
}
.ct-office{
  border:1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
}
.ct-office h3{ font-size:17px; font-weight:800; margin:0 0 6px; }
.ct-office .addr{ font-size:13.5px; color: var(--ink-soft); line-height:1.6; margin-bottom:18px; padding-bottom:18px; border-bottom:1px solid var(--border); }
.ct-office-row{ display:flex; align-items:center; gap:10px; font-size:13px; color: var(--ink-soft); margin-bottom:12px; }
.ct-office-row .ic{ color: var(--custom-blue); flex-shrink:0; display:flex; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px){
  .ct-trust-grid{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 960px){
  .ct-hero .container{ grid-template-columns: 1fr; }
  .ct-art{ order:-1; max-width: 320px; margin: 0 auto; min-height:220px; }
  .ct-cube-main{ width:170px; height:170px; }

  /* Form-first on mobile: reorder the grid so "Send Us a Message" appears
     above "Get in Touch" without changing the source order (keeps the
     panels' natural DOM order intact for accessibility/tab flow). */
  .ct-panels .container{ grid-template-columns: 1fr; }
  .ct-panels .ct-panel.ct-form-panel{ order:-1; }

  .ct-map-wrap .container{ grid-template-columns: 1fr; }
}
@media (max-width: 680px){
  .ct-form-row{ grid-template-columns: 1fr; gap:0; }
  .ct-field{ margin-bottom: 15px; }
  .ct-form-row {margin-bottom: 0px;}
  .ct-trust-grid{ grid-template-columns: 1fr; padding:20px; gap:18px; }
  .ct-panel{ padding:20px; }
  .ct-hero{ padding: 20px 0 6px; }
}

.cta-banner{ padding: 0 0 25px; }
.cta-inner{
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 26px 200px 26px 56px;
  display:flex; align-items:center; justify-content:space-between;
  gap:24px;
  position:relative;
  overflow:visible;
  flex-wrap:wrap;
}
.cta-text h2{
  font-family: var(--font-display);
  font-size: clamp(22px,2.6vw,30px);
  font-weight:800;
  margin:0 0 8px;
  color:blue;
}
.cta-text p{ margin:0; color: var(--ink-soft); font-size:15px; }
.cta-inner .btn{ position:relative; z-index:2; }
.cta-inner .btn-white .icn.icn-dark{
  background:#eef2ff;
}
.cta-cube{
  position:absolute; right:19px; bottom:-4px;
  width:130px;
  pointer-events:none;
}

/* ===================== FOOTER ===================== */
.site-footer{ color: var(--ink-soft); padding: 0px 0 26px; }
.footer-top{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr;
  gap: 30px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--border);
}
.f-brand .logo .word{ color: var(--ink); }
.f-brand .logo .tag{ color: var(--gray); }
.f-brand p{ font-size:13.5px; line-height:1.7; color: var(--gray); margin: 16px 0 20px; max-width:280px; }
.f-social{ display:flex; gap:10px; }
.f-social a{
  width:34px;height:34px; border-radius:50%;
  border:1px solid var(--border);
  background:#fff;
  display:flex; align-items:center; justify-content:center;
  transition: all .2s ease;
}
.f-social a:hover{ background: var(--custom-blue); border-color: var(--custom-blue); }
.f-social a:hover svg{ fill: #fff !important; stroke: #fff !important; }
.footer-col h4{ font-size:14.5px; font-weight:700; color: var(--ink); margin:0 0 18px; }
.footer-col ul li{ margin-bottom:12px; }
.footer-col ul li a{ font-size:13.5px; color: var(--gray); }
.footer-col ul li a:hover{ color: var(--custom-blue); }
.f-contact li{ font-size:13.5px; color: var(--gray); margin-bottom:12px; }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding-top: 22px; flex-wrap:wrap; gap:12px;
}
.footer-bottom p{ margin:0; font-size:12.5px; color: var(--gray-light); }
.footer-bottom .legal{ display:flex; gap:20px; }
.footer-bottom .legal a{ font-size:12.5px; color: var(--gray-light); }
.footer-bottom .legal a:hover{ color: var(--custom-blue); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px){
  .side-arrow{ display:none; }
  .tw-arrow{ display:none; }
  .spec-grid{ grid-template-columns: repeat(3,1fr); }
  .cs-info-bar{ grid-template-columns: repeat(3,1fr); }
  .cs-feat-grid{ grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 960px){
  .nav-main{ display:none; }
  .header-actions .btn-primary{ display:none; }
  .hamburger{ display:flex; }
  .hero .container{ grid-template-columns: 1fr; }
  .hero-art{ max-width: 380px; margin: 0 auto; order:-1; }
  .footer-top{ grid-template-columns: 1fr 1fr; }
  .case-grid, .vt-grid{ grid-template-columns: 1fr 1fr; }
  .tw-arrow{ display:none; }
  .tw-card{ width: 320px; }
  .why-grid{ grid-template-columns: 1fr 1fr; }
  .stats-bar{ grid-template-columns: 1fr 1fr; }
  .stat-item{ border-right:none; border-bottom:1px solid var(--border); }
  .cs-hero .container{ grid-template-columns: 1fr; }
  .cs-device{ order:-1; max-width: 420px; margin: 0 auto 20px; }
  .cs-overview-grid{ grid-template-columns: 1fr; gap:36px; }
}

@media (max-width: 680px){
  .container{ padding:0 18px; }
  .site-header .container{ height:70px; }
  .specialty .container{ padding: 19px 20px; }
  .mobile-nav{ inset:70px 0 0 0; }
  .hero{ padding: 0px 0 115px; }
  .hero .container{ gap: 0; }
  .hero h1{ font-size: 30px; }
  .section-head{ flex-direction:column; align-items:flex-start; gap:12px; }
  .section-head p{ max-width:100%; }
  .svc-viewport{ overflow-x: visible; overflow-y: visible; scroll-snap-type: none; }
  .svc-track{ flex-direction: column; width: 100%; gap: 16px; }
  .svc-card{ width: 100%; scroll-snap-align: none; }

  /* The "Mobile" case-study template (the one with Android/iOS URL
     buttons) uses its own slider classes — .svc-track-mobile /
     .shot-card-mobile — instead of the standard .svc-track / .shot-card
     used everywhere else. They were missing this same stacking fix,
     which is why that page's screenshots overflowed off-screen on
     phones instead of stacking like every other slider on the site. */
  .svc-track-mobile{ flex-direction: column; width: 100%; gap: 16px; }
  .shot-card-mobile{ max-width: 320px; margin: 0 auto; scroll-snap-align: none; }
  .mob-slider{  height: 350px;margin: auto; }
  .case-grid, .vt-grid, .why-grid{ grid-template-columns: 1fr; }
  .tw-viewport{ overflow-x: visible; overflow-y: visible; scroll-snap-type: none; }
  .tw-grid{ flex-direction: column; width: 100%; gap: 16px; }
  .tw-card{ width: 100%; scroll-snap-align: none; }
  .spec-grid{ grid-template-columns: 1fr 1fr; }
  .stats-bar{ grid-template-columns: 1fr 1fr; margin-top: 20px; }
  .logo-strip .row{ gap:24px; }
  .cta-inner{ padding: 34px 24px; flex-direction:column; text-align:center; }
  .cta-cube{ display:none; }
  .footer-top{ grid-template-columns: 1fr; gap:34px; }
  .footer-bottom{ flex-direction:column; text-align:center; }
  .profiles-row{ grid-template-columns: 1fr; gap:22px; }
  .profile-item + .profile-item::before{ display:none; }
  .profile-item + .profile-item{ padding-top:18px; border-top:1px solid var(--border); }
  .profiles-bar-repeat{ padding:22px 18px; margin:0 8px 38px; }
  .profiles-bar-repeat .container { padding:0 17px;}
  .profile-link { margin-right: -33px;}
  .cs-info-bar{ grid-template-columns: 1fr 1fr; padding:18px; }
  .cs-feat-grid{ grid-template-columns: 1fr; }
  .cs-quote{ flex-direction:column; align-items:flex-start; text-align:left; padding:26px; }
  .cs-quote-person{ flex-direction:row; }
}

/* new add*/

/* =========================================
   MOBILE SERVICES & TECHNOLOGY ACCORDION
   ========================================= */

@media (max-width: 960px) {

  .mobile-nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }

  /* Main button */
  .mobile-nav-toggle {
    width: 100%;
    min-height: 54px;
    padding: 0 4px;

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

    border: 0;
    background: transparent;

    color: var(--ink);
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;

    cursor: pointer;
    text-align: left;
  }

  .mobile-nav-toggle:active {
    background: rgba(47, 91, 255, 0.05);
  }

  /* Arrow */
  .mobile-caret {
    flex-shrink: 0;
    transition: transform 0.25s ease;
  }

  /* Closed by default */
  .mobile-submenu {
    display: none;
    width: 100%;
    padding: 0 0 8px;
  }

  /* Open submenu */
  .mobile-nav-item.open .mobile-submenu {
    display: block;
  }

  /* Rotate arrow */
  .mobile-nav-item.open .mobile-caret {
    transform: rotate(180deg);
  }

  /* Submenu links */
  .mobile-submenu a {
    display: flex;
    align-items: center;

    width: 100%;
    min-height: 42px;

    padding: 9px 12px 9px 18px;

    border: 0;
    border-radius: 8px;

    color: var(--muted);
    font-size: 14px;
    font-weight: 500;

    text-decoration: none;
    box-sizing: border-box;

    transition:
      background 0.2s ease,
      color 0.2s ease,
      padding-left 0.2s ease;
  }

  .mobile-submenu a:hover,
  .mobile-submenu a:active {
    color: var(--custom-blue);
    background: rgba(47, 91, 255, 0.06);
    padding-left: 22px;
  }

  /* Small blue indicator */
  .mobile-submenu a::before {
    content: "";
    width: 5px;
    height: 5px;
    margin-right: 10px;

    border-radius: 50%;
    background: var(--custom-blue);

    flex-shrink: 0;
  }

  /* Don't apply normal mobile-nav link styles
     to submenu links */
  .mobile-nav .mobile-submenu a {
    border-bottom: 0;
  }

}

@media (max-width: 960px) {
  .mobile-submenu a::before {
    display: none;
  }

  .mobile-submenu a {
    padding-left: 12px;
  }

  .mobile-submenu a:hover,
  .mobile-submenu a:active {
    padding-left: 16px;
  }
}

a.text-link.all-clients {
    display: flex;
    margin: 16px auto;
}

.stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    white-space: nowrap;
}

.stars .star {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 1;
}

.stars .full {
    color: #f59e0b;
}

.stars .empty {
    color: #d1d5db;
}

/* Half star */
.stars .half {
    color: #d1d5db;
}

.stars .half::before {
    content: "★";
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    overflow: hidden;
    color: #f59e0b;
}

/* ===========================================================
   ABOUT US PAGE  (about.html)
   All rules below are scoped with an "ab-" prefix so they never
   collide with classes used elsewhere on the site.
   =========================================================== */

/* ---------- Hero ---------- */
/* Two-column intro: copy + CTA on the left, isometric cube
   illustration (AI cube + code cube + floating chips) on the right. */
.ab-hero{ padding: 30px 0 10px; overflow:hidden; }
.ab-hero .container{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items:center;
}
.ab-hero h1{
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 42px);
  font-weight:800;
  line-height:1.16;
  letter-spacing:-0.02em;
  margin: 10px 0 16px;
}
.ab-hero h1 .grad{
  background: var(--custom-blue);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  display:block;
}
.ab-hero p{
  color: var(--gray);
  font-size:15.5px;
  line-height:1.75;
  max-width:460px;
  margin: 0 0 26px;
}

/* Hero art: two overlapping isometric cubes ("AI" + "</>") with small
   floating chip cubes and label call-outs, echoing the reference design. */
.ab-art{
  position:relative;
  display:flex; align-items:center; justify-content:center;
  min-height: 300px;
}
.ab-art-callout{
  position:absolute;
  font-size:11.5px;
  line-height:1.4;
}
.ab-art-callout .lbl{ font-weight:800; color: var(--custom-blue); text-transform:uppercase; letter-spacing:.03em; font-size:11px; }
.ab-art-callout .sub{ color: var(--gray); }
.ab-art-callout.innovate{ top:12%; left:20%; text-align:left; }
.ab-art-callout.integrate{ bottom:4%; left:-17%; text-align:left; }
.ab-art-callout.inspire{ bottom:20%; right:5%; text-align:left; }
.ab-cube-blue{ position:relative; z-index:2; }
.ab-cube-red{ position:absolute; z-index:3; left:9%; top:33%; width:42%; }
.ab-floater{ position:absolute; border-radius:6px; animation: float 5s ease-in-out infinite; }
.ab-floater.f1{ top:6%; right:22%; width:20px; height:20px; background: var(--gray-light); opacity:.5; transform:rotate(12deg); animation-delay:.2s; }
.ab-floater.f2{ top:28%; right:16%; width:24px; height:24px; background: var(--custom-blue); transform:rotate(-8deg); animation-delay:.9s; }
.ab-floater.f3{ top:53%; right:24%; width:20px; height:20px; background: var(--custom-blue); animation-delay:1.4s; }
.ab-floater.f4{ bottom:2%; right:26%; width:22px; height:22px; background: var(--red); transform:rotate(18deg); animation-delay:.6s; }
.ab-floater.f5{ top:38%; left:0%; width:18px; height:18px; background: var(--custom-blue); opacity:.9; transform:rotate(-14deg); animation-delay:1.1s; }
.ab-floater.f6{ top:67%; left:0%; width:18px; height:18px; background: var(--red); opacity:.9; transform:rotate(-14deg); animation-delay:1.1s; }
.ab-dots{
  position:absolute; top:4%; right:0%;
  width:64px; height:64px;
  background-image: radial-gradient(var(--border) 1.6px, transparent 1.6px);
  background-size: 12px 12px;
  opacity:.8;
}

/* ---------- Story image + timeline ---------- */
.ab-story{ padding: 46px 0 10px; }
.ab-story .container{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items:center;
}
.ab-story-img{
  border-radius: var(--radius-md);
  overflow:hidden;
  box-shadow: var(--shadow-md);
}
.ab-story-img img{ width:100%; height:100%; object-fit:cover; display:block; }
.ab-story-copy h2{
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight:800;
  line-height:1.25;
  margin: 8px 0 16px;
}
.ab-story-copy p{ font-size:14.5px; color: var(--gray); line-height:1.75; margin:0 0 24px; }
.ab-timeline{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.ab-tl-item{ text-align:center; }
.ab-tl-item .ic{
  width:38px; height:38px; border-radius:50%;
  border:1.5px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  margin: 0 auto 10px;
}
.ab-tl-item .yr{ font-family: var(--font-display); font-size:15px; font-weight:800; margin-bottom:2px; }
.ab-tl-item .lbl{ font-size:11.5px; color: var(--gray); }

/* ---------- What Drives Us ---------- */
.ab-drives{ padding: 54px 0 10px; }
.ab-drives .section-head{ text-align:center; margin: 0 0 30px; }
.ab-drives .section-head h2{
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight:800;
  position:relative;
  display:inline-block;
  padding-bottom:12px;
  margin: 0 auto;
}
.ab-drives .section-head h2::after{
  content:"";
  position:absolute; left:50%; bottom:0; transform:translateX(-50%);
  width:56px; height:3px; border-radius:2px; background: var(--grad-primary);
}
.ab-drives-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ab-drives-card{
  border:1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  text-align:center;
  transition: box-shadow .2s ease, transform .2s ease;
}
.ab-drives-card:hover{ box-shadow: var(--shadow-md); transform: translateY(-3px); }
.ab-drives-card .ic{
  width:48px; height:48px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  margin: 0 auto 16px;
}
.ab-drives-card h3{ font-size:15px; font-weight:700; margin:0 0 8px; }
.ab-drives-card p{ font-size:13px; color: var(--gray); line-height:1.65; margin:0; }

/* ---------- Mission / Vision / Expertise ---------- */
.ab-mve{ padding: 46px 0 10px; }
.ab-mve-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ab-mve-card{
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 28px;
  position:relative;
  overflow:hidden;
  min-height:190px;
}
.ab-mve-card h3{ font-size:17px; font-weight:800; margin:0 0 12px; }
.ab-mve-card p{ font-size:13.5px; color: var(--ink-soft); line-height:1.7; margin:0; max-width:88%; }
.ab-mve-card ul{ display:flex; flex-direction:column; gap:10px; }
.ab-mve-card ul li{
  display:flex; align-items:center; gap:8px;
  font-size:13.5px; color: var(--ink-soft); font-weight:600;
}
.ab-mve-card ul li svg{ flex-shrink:0; }
.ab-mve-deco{ position:absolute; opacity:.9; pointer-events:none; }
.ab-mve-card.mission .ab-mve-deco{ right:-18px; bottom:-14px; width:120px; }
.ab-mve-card.vision .ab-mve-deco{ right:-10px; bottom:-16px; width:110px; opacity:.5; }

/* ---------- Founders ---------- */
.ab-founders{ padding: 50px 0 10px; }
.ab-founders .section-head{ text-align:center; margin: 0 0 28px; margin:0 auto; }
.ab-founders .section-head h2{
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight:800;
  margin:0 auto;
  letter-spacing:.02em;

}
.ab-founders .section-head p{ font-size:13.5px; color: var(--gray); margin:0; }
.ab-founders-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ab-founder-card{
  border:1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  display:flex;
  gap: 18px;
}
.ab-founder-card img{
  width:74px; height:74px; border-radius:50%; object-fit:cover; flex-shrink:0;
}
.ab-founder-card h3{ font-size:16px; font-weight:800; margin:0 0 3px; }
.ab-founder-card .role{ font-size:12.5px; font-weight:700; color: var(--custom-blue); margin-bottom:10px; }
.ab-founder-card p{ font-size:13px; color: var(--gray); line-height:1.65; margin:0 0 12px; }
.ab-founder-card .li-link{
  width:30px; height:30px; border-radius:8px;
  background: #eef2fb;
  display:flex; align-items:center; justify-content:center;
  color: var(--custom-blue);
}

/* ---------- Dark "Why Partner" banner ---------- */
.ab-why{ padding: 50px 0 10px; }
.ab-why-inner{
  background: linear-gradient(120deg, #0b1230, #101a45);
  border-radius: var(--radius-lg);
  padding: 34px 36px;
  display:grid;
  grid-template-columns: 0.85fr 2fr;
  gap: 28px;
  align-items:center;
  color:#fff;
}
.ab-why-head .eyebrow{ color:#8fa6ff; }
.ab-why-head .eyebrow::before{ background: #8fa6ff; }
.ab-why-head h2{
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight:800;
  line-height:1.25;
  margin: 8px 0 0;
}
.ab-why-head h2 .u{ display:block; text-decoration: underline; text-decoration-color: var(--custom-blue); text-underline-offset:6px; }
.ab-why-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.ab-why-item{ display:flex; flex-direction:column; gap:10px; }
.ab-why-item .ic{
  width:38px; height:38px; border-radius:10px;
  background: rgba(255,255,255,0.08);
  display:flex; align-items:center; justify-content:center;
}
.ab-why-item h4{ font-size:13.5px; font-weight:700; margin:0; }
.ab-why-item p{ font-size:12px; color:#aab4d4; line-height:1.6; margin:0; }

/* ---------- Quote + Tech stack (two columns) ---------- */
.ab-quote-tech{ padding: 20px 0 10px; }
.ab-quote-tech .container{
  /*display:grid;*/
  grid-template-columns: 1fr 1.15fr;
  gap: 20px;
  align-items:stretch;
}
.ab-quote-box{
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 26px;
  display:flex;
  flex-direction:column;
}
.ab-quote-box h3{ font-size:16px; font-weight:800; margin:0 0 16px; }
.ab-quote-box .qmark{ font-family: var(--font-display); font-size:30px; color: var(--custom-blue); opacity:.4; line-height:1; margin-bottom:6px; }
.ab-quote-box p{ font-size:13.5px; color: var(--ink-soft); line-height:1.7; margin:0 0 16px; flex:1; }
.ab-quote-box .person{ display:flex; align-items:center; gap:10px; }
.ab-quote-box .person img{ width:38px; height:38px; border-radius:50%; object-fit:cover; }
.ab-quote-box .person .name{ font-size:13px; font-weight:700; color: var(--custom-blue); }
.ab-quote-box .person .role{ font-size:11.5px; color: var(--gray); }
.ab-quote-dots{ display:flex; gap:6px; margin-top:16px; }
.ab-quote-dots span{ width:6px; height:6px; border-radius:50%; background: var(--border); }
.ab-quote-dots span.active{ background: var(--custom-blue); width:16px; border-radius:3px; }

.ab-tech-box{
  border:1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
}
.ab-tech-box h3{ font-size:25px; font-weight:800; margin:0 0 30px; text-align: center; }
.ab-tech-grid{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px 10px;
}
.ab-tech-item{ display:flex; flex-direction:column; align-items:center; gap:8px; text-align:center; }
.ab-tech-item .ic{
  width:40px; height:40px; border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  background: var(--bg-soft-2);
}
.ab-tech-item span{ font-size:11.5px; font-weight:600; color: var(--ink-soft); }

/* ---------- Life at TechWob ---------- */
.ab-life{ padding: 20px 0 10px; }
.ab-life-inner{
  border:1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  display:grid;
  grid-template-columns: 0.9fr 1.6fr 1.1fr;
  gap: 24px;
  align-items:center;
}
.ab-life-head h2{ font-size:24px; font-weight:800; margin:0 0 6px; letter-spacing:.02em; }
.ab-life-head p{ font-size:12.5px; color: var(--gray); margin:0; line-height:1.6; }
.ab-life-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ab-life-item{ text-align:center; }
.ab-life-item .ic{
  width:40px; height:40px; border-radius:50%;
  border:1.5px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  margin: 0 auto 8px;
}
.ab-life-item span{ font-size:12px; font-weight:600; color: var(--ink-soft); line-height:1.4; display:block; }
.ab-life-img{
  border-radius: var(--radius-md);
  overflow:hidden;
  height:100%;
  min-height:110px;
}
.ab-life-img img{ width:100%; height:100%; object-fit:cover; display:block; }

.mob-slider{  height: 450px;width: 200px;margin: auto; }

.logo-wrapper {
  display: flex;
  align-items: center;
}

img.logo-imgs {
    width: 240px;
}

.logo-img1 {
  display: block;
  max-width: 60px;
  height: auto;
  margin-bottom: 5px;
}
.logo-img2 {
  display: block;
  max-width: 275px;
  height: auto;
}

.hero-art-img{ margin-top:-170px; }

/* ---------- Responsive ---------- */

@media (max-width: 680px){
  .ab-drives-grid{ grid-template-columns: 1fr; }
  .ab-timeline{ grid-template-columns: repeat(2,1fr); gap:20px; }
  .ab-why-grid{ grid-template-columns: 1fr; }
  .ab-why-inner{ padding:26px 22px; }
  .ab-tech-grid{ grid-template-columns: repeat(3,1fr); }
  .ab-life-grid{ grid-template-columns: repeat(2,1fr); }
  .ab-founder-card{ flex-direction:column; text-align:center; }
  .ab-founder-card .li-link{ margin: 0 auto; }
  .ab-art-callout.innovate { top: 0%; left: -1%;text-align: left;}
  .ab-art-callout.inspire { bottom: -7%;right: -22%;text-align: left;}
  .ab-cube-red {position: absolute;z-index: 3;left: 6%;top: 34%;width: 61%;}
  .ab-founder-card img{margin:auto;}
  .mob-slider{  height: 350px;margin: auto; }
  .logo-img1 {display: block;max-width: 40px;height: auto;margin-bottom: 5px;}
  .logo-img2 {display: block;max-width: 180px;height: auto;}
   img.logo-imgs {width: 180px; margin-top: 0px;}
   .hero-art-img{  margin-top:-50px;height: 240px; }
   .main-img{ margin-left:-25px; }
   .f-contact li{ max-width: 257px; }
}

@media (max-width: 960px){
  .ab-hero .container{ grid-template-columns: 1fr; }
  .ab-art{ order:-1; max-width: 380px; margin: 0 auto; min-height:240px; }
  .ab-story .container{ grid-template-columns: 1fr; }
  .ab-story-img{ order:-1; max-height:320px; }
  .ab-mve-grid{ grid-template-columns: 1fr; }
  .ab-founders-grid{ grid-template-columns: 1fr; }
  .ab-why-inner{ grid-template-columns: 1fr; }
  .ab-quote-tech .container{ grid-template-columns: 1fr; }
  .ab-art-callout.innovate { top: 0%; left: -1%;text-align: left;}
  .ab-art-callout.inspire { bottom: -7%;right: -22%;text-align: left;}
  .ab-cube-red {position: absolute;z-index: 3;left: 5%;top: 40%;width: 56%;}
  .ab-art-callout.integrate { bottom: -4%;left: -20%;text-align: left;}
  .ab-founder-card img{margin:auto;}
  .mob-slider{  height: 350px;margin: auto; }
  .logo-img1 {display: block;max-width: 40px;height: auto;margin-bottom: 5px;}
  .logo-img2 {display: block;max-width: 180px;height: auto;}
  img.logo-imgs {width: 180px; margin-top: 0px;}
  .hero-art-img{ margin-top:-50px;height: 240px; }
  .main-img{ margin-left:-25px; }
  .f-contact li{ max-width: 257px; }
}
@media (max-width: 1100px){
  .ab-drives-grid{ grid-template-columns: repeat(1,1fr); }
  .ab-why-grid{ grid-template-columns: repeat(2,1fr); }
  .ab-tech-grid{ grid-template-columns: repeat(5,1fr); }
  .ab-life-inner{ grid-template-columns: 1fr; }
  .ab-life-img{ min-height:160px; order:-1; }
  .ab-founder-card img{margin:auto;}
  .mob-slider{  height: 350px;margin: auto; }
  .specialty .container {border-bottom: 0px;}
  .logo-img1 {display: block;max-width: 40px;height: auto;margin-bottom: 5px;}
  .logo-img2 {display: block;max-width: 220px;height: auto;}
  img.logo-imgs {width: 180px; margin-top: 0px;}
  .hero-art-img{  margin-top:-50px;height: 240px; }
  .main-img{ margin-left:-25px; }
  .f-contact li{ max-width: 257px; }
    
}