/* ── Anddox Private Limited — Main Stylesheet ─────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=DM+Mono:wght@400;500&display=swap');

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

:root {
  --blue-50:  #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --indigo-700: #4338ca;
  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #ffffff;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'DM Mono', monospace;
  --radius-sm: 6px;
  --radius:    8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow:    0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.10);
  --shadow-xl: 0 16px 48px rgba(0,0,0,.12);
}

html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--slate-800); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Layout ─────────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section   { padding: 88px 0; }
.section-sm { padding: 56px 0; }

/* ── Typography helpers ──────────────────────────────────────────────────── */
.font-display { font-family: var(--font-display); }
.font-mono    { font-family: var(--font-mono); }

/* ── Section label pill ─────────────────────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-50); border: 1px solid var(--blue-100);
  color: #1d4ed8; font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
.section-label::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-600); }
.section-label--light {
  background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: #bfdbfe;
}
.section-label--light::before { background: var(--blue-400); }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: .875rem;
  padding: 12px 28px; border-radius: var(--radius-lg); border: 2px solid transparent;
  cursor: pointer; transition: all .2s; white-space: nowrap;
}
.btn-primary   { background: var(--blue-600); color: var(--white); border-color: var(--blue-600); }
.btn-primary:hover { background: #1d4ed8; border-color: #1d4ed8; }
.btn-outline   { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-outline:hover { background: rgba(255,255,255,.15); }
.btn-white     { background: var(--white); color: var(--blue-700); border-color: var(--white); }
.btn-white:hover { background: var(--blue-50); }
.btn-border    { background: transparent; color: var(--blue-600); border-color: var(--blue-600); }
.btn-border:hover { background: var(--blue-600); color: var(--white); }
.btn-lg { font-size: 1rem; padding: 14px 36px; }

/* ── Navbar ──────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px; display: flex; align-items: center;
  transition: background .3s, box-shadow .3s;
}
.navbar.scrolled {
  background: rgba(255,255,255,.96); backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--slate-100);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.navbar-logo { display: flex; align-items: center; gap: 10px; }
.navbar-logo-icon {
  width: 36px; height: 36px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #2563eb, #4338ca);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm);
}
.navbar-logo-icon svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 2; }
.navbar-brand {
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem;
  letter-spacing: -.01em; color: var(--slate-900);
}
.navbar-brand span { color: var(--blue-600); }
.navbar-links { display: flex; align-items: center; gap: 4px; }
.navbar-links a {
  padding: 8px 16px; border-radius: var(--radius-lg); font-size: .875rem;
  font-weight: 500; color: #bfcee3; transition: all .15s;
}
.navbar-links a:hover, .navbar-links a.active { background: var(--blue-50); color: #1d4ed8; }
.navbar-cta { display: flex; gap: 12px; }
.navbar-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; border-radius: var(--radius); }
.navbar-toggle svg { width: 22px; height: 22px; stroke: var(--slate-700); fill: none; stroke-width: 2; }
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: var(--white); border-top: 1px solid var(--slate-100);
  padding: 16px 24px; z-index: 999; flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 16px; border-radius: var(--radius-lg); font-size: .9rem; font-weight: 500; color: var(--slate-700); }
.mobile-menu a:hover { background: var(--slate-50); }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--slate-900) 0%, #1e3a8a 60%, #312e81 100%);
  position: relative; overflow: hidden; padding-top: 88px;
}
.hero-grid {
  position: absolute; inset: 0; opacity: .15;
  background-image: linear-gradient(rgba(59,130,246,.3) 1px, transparent 1px), linear-gradient(90deg, rgba(59,130,246,.3) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow-1 { position: absolute; top: 25%; left: 20%; width: 360px; height: 360px; background: rgba(37,99,235,.18); border-radius: 50%; filter: blur(80px); }
.hero-glow-2 { position: absolute; bottom: 20%; right: 20%; width: 280px; height: 280px; background: rgba(99,102,241,.18); border-radius: 50%; filter: blur(80px); }
.hero-inner { position: relative; z-index: 1; padding: 64px 0; width: 100%; }
.hero-grid-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(59,130,246,.1); border: 1px solid rgba(59,130,246,.3);
  color: #93c5fd; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 24px;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-400); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.hero-title {
  font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800; color: var(--white); line-height: 1.1;
  letter-spacing: -.02em; margin-bottom: 24px;
}
.hero-title-accent {
  display: block;
  background: linear-gradient(135deg, #60a5fa, #22d3ee);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-desc { font-size: 1.05rem; color: #94a3b8; line-height: 1.7; margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 28px; margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.1); }
.hero-stat-value { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--white); }
.hero-stat-label { font-size: .75rem; color: var(--slate-400); }
.hero-img-wrap { position: relative; }
.hero-img {
  width: 100%; height: 420px; object-fit: cover;
  border-radius: var(--radius-2xl); box-shadow: 0 32px 80px rgba(0,0,0,.4);
  ring: 1px solid rgba(255,255,255,.1);
}
.hero-card {
  position: absolute; bottom: -24px; left: -24px;
  background: var(--white); border-radius: var(--radius-xl); padding: 16px 20px;
  box-shadow: var(--shadow-xl); display: flex; align-items: center; gap: 12px;
}
.hero-card-icon { width: 40px; height: 40px; background: #dcfce7; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.hero-card-icon svg { width: 20px; height: 20px; stroke: #16a34a; fill: none; stroke-width: 2; }
.hero-card-title { font-size: .875rem; font-weight: 600; color: var(--slate-900); }
.hero-card-sub   { font-size: .75rem; color: var(--slate-500); }

/* ── Trust bar ───────────────────────────────────────────────────────────── */
.trust-bar { background: var(--slate-50); border-bottom: 1px solid var(--slate-100); padding: 24px 0; }
.trust-bar-label { text-align: center; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-400); margin-bottom: 16px; }
.trust-logos { display: flex; justify-content: center; flex-wrap: wrap; gap: 32px; }
.trust-logos span { font-family: var(--font-display); font-weight: 700; font-size: .875rem; color: var(--slate-400); letter-spacing: .04em; }

/* ── Services grid ───────────────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  background: var(--slate-50); border: 1px solid var(--slate-100);
  border-radius: var(--radius-xl); padding: 24px; cursor: pointer;
  transition: all .2s; display: block; color: inherit;
}
.service-card:hover { background: var(--white); border-color: var(--blue-100); box-shadow: 0 8px 32px rgba(37,99,235,.08); transform: translateY(-2px); }
.service-icon {
  width: 44px; height: 44px; border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.service-icon svg { width: 22px; height: 22px; stroke: white; fill: none; stroke-width: 2; }
.service-card h3 { font-family: var(--font-display); font-size: .9rem; font-weight: 700; color: var(--slate-900); margin-bottom: 8px; }
.service-card p  { font-size: .8rem; color: var(--slate-500); line-height: 1.6; margin-bottom: 12px; }
.si-web-develop{
   background: linear-gradient(-90deg, rgb(67 45 215), rgb(21 93 252));
}
.si-mobile-app{
   background: linear-gradient(-90deg, rgb(130 0 219), rgb(127 34 254));
}
.si-cloud-solution{
    background: linear-gradient(-90deg, rgb(21 93 252), rgb(0 146 184));
}
.si-database{
    background: linear-gradient(-90deg, rgb(0 150 137), rgb(0 153 102));
}
.si-cyber{
    background: linear-gradient(-90deg, oklch(51.4% 0.222 16.935), oklch(57.7% 0.245 27.325));
}
.si-data-analytics{
    background: linear-gradient(-90deg, oklch(64.6% 0.222 41.116), oklch(66.6% 0.179 58.318));
}
.si-custom{
  background: linear-gradient(-90deg, rgb(20 71 230), rgb(79 57 246));
}
.si-consulting{
   background: linear-gradient(-90deg, oklch(27.9% 0.041 260.031), oklch(44.6% 0.043 257.281));
}

.service-link    { font-size: .78rem; font-weight: 600; color: var(--blue-600); display: flex; align-items: center; gap: 4px; }
.service-link svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2.5; transition: transform .2s; }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ── Why section ─────────────────────────────────────────────────────────── */
.why-section { background: linear-gradient(135deg, var(--blue-600), #4338ca); color: var(--white); }
.why-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-title  { font-family: var(--font-display); font-size: 2.25rem; font-weight: 700; margin-bottom: 20px; }
.why-desc   { color: rgba(219,234,254,.85); line-height: 1.7; margin-bottom: 32px; }
.why-list   { display: flex; flex-direction: column; gap: 16px; }
.why-list li { display: flex; align-items: center; gap: 12px; font-size: .9rem; color: rgba(219,234,254,.9); }
.why-list li svg { width: 20px; height: 20px; stroke: #93c5fd; fill: none; stroke-width: 2; flex-shrink: 0; }
.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-card  { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-xl); padding: 20px; backdrop-filter: blur(8px); }
.why-card svg { width: 28px; height: 28px; stroke: #bfdbfe; fill: none; stroke-width: 2; margin-bottom: 12px; }
.why-card h4 { font-family: var(--font-display); font-size: .875rem; font-weight: 700; margin-bottom: 6px; }
.why-card p  { font-size: .78rem; color: rgba(191,219,254,.85); line-height: 1.5; }

/* ── Tech stack ──────────────────────────────────────────────────────────── */
.tech-section { background: var(--slate-900); }
.tech-section .section-title, .tech-section .section-sub { color: var(--white); }
.tech-section .section-sub { color: var(--slate-400); }
.tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tech-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-xl); padding: 24px; }
.tech-cat  { font-family: var(--font-mono); font-size: .7rem; font-weight: 500; color: var(--blue-400); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.tech-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tech-tag  { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); color: #e2e8f0; font-size: .78rem; font-weight: 500; padding: 6px 12px; border-radius: var(--radius-lg); }

/* ── Case studies ────────────────────────────────────────────────────────── */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.case-card { background: var(--slate-50); border: 1px solid var(--slate-100); border-radius: var(--radius-2xl); overflow: hidden; transition: box-shadow .2s; }
.case-card:hover { box-shadow: var(--shadow-lg); }
.case-img  { width: 100%; height: 200px; object-fit: cover; }
.case-body { padding: 24px; }
.case-pills { display: flex; gap: 8px; margin-bottom: 12px; }
.case-pill { font-size: .72rem; font-weight: 600; padding: 4px 10px; border-radius: 999px; }
.case-pill-blue   { background: var(--blue-50); color: var(--blue-600); }
.case-pill-slate  { background: var(--slate-100); color: var(--slate-500); }
.case-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--slate-900); margin-bottom: 8px; }
.case-text { font-size: .78rem; color: var(--slate-500); line-height: 1.6; margin-bottom: 6px; }
.case-text strong { color: var(--slate-700); }
.case-results { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.case-result {
  background: #f0fdf4; border: 1px solid #bbf7d0; color: #15803d;
  font-size: .72rem; font-weight: 700; padding: 4px 10px; border-radius: 999px;
  display: flex; align-items: center; gap: 4px;
}
.case-result svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2.5; }

/* ── Testimonials ────────────────────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card { background: var(--white); border: 1px solid var(--slate-100); border-radius: var(--radius-xl); padding: 28px; box-shadow: var(--shadow-sm); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testi-star { width: 16px; height: 16px; fill: #fbbf24; stroke: #fbbf24; }
.testi-text { font-size: .875rem; color: var(--slate-600); line-height: 1.75; margin-bottom: 20px; }
.testi-name { font-size: .875rem; font-weight: 600; color: var(--slate-900); }
.testi-role { font-size: .75rem; color: var(--slate-500); }

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 780px; margin: 0 auto; }
.faq-item { border: 1px solid var(--slate-200); border-radius: var(--radius-xl); overflow: hidden; background: var(--white); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-display); font-size: .9rem; font-weight: 600; color: var(--slate-900);
  transition: background .15s;
}
.faq-question:hover { background: var(--slate-50); }
.faq-question svg { width: 18px; height: 18px; stroke: var(--slate-400); fill: none; stroke-width: 2; flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-question svg { transform: rotate(45deg); stroke: var(--blue-600); }
.faq-answer { display: none; padding: 0 24px 20px; font-size: .875rem; color: var(--slate-600); line-height: 1.75; border-top: 1px solid var(--slate-100); padding-top: 16px; }
.faq-item.open .faq-answer { display: block; }

/* ── Blog cards ──────────────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { display: block; color: inherit; }
.blog-img-wrap { border-radius: var(--radius-xl); overflow: hidden; height: 200px; background: var(--slate-100); margin-bottom: 16px; }
.blog-img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.blog-card:hover .blog-img { transform: scale(1.05); }
.blog-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.blog-cat  { background: var(--blue-50); color: var(--blue-600); font-size: .72rem; font-weight: 600; padding: 4px 10px; border-radius: 999px; }
.blog-readtime { font-size: .75rem; color: var(--slate-400); }
.blog-title { font-family: var(--font-display); font-size: .95rem; font-weight: 700; color: var(--slate-900); line-height: 1.4; margin-bottom: 8px; transition: color .2s; }
.blog-card:hover .blog-title { color: var(--blue-600); }
.blog-excerpt { font-size: .8rem; color: var(--slate-500); line-height: 1.65; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-author { display: flex; align-items: center; gap: 6px; margin-top: 12px; font-size: .75rem; color: var(--slate-400); }
.blog-author svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ── Blog featured ───────────────────────────────────────────────────────── */
.blog-featured { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--radius-2xl); overflow: hidden; background: var(--slate-100); margin-bottom: 40px; }
.blog-featured .blog-img-wrap { height: auto; border-radius: 0; margin-bottom: 0; }
.blog-featured .blog-img { height: 320px; }
.blog-featured-body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.blog-featured .blog-title { font-size: 1.5rem; }

/* ── Section head ────────────────────────────────────────────────────────── */
.section-head { text-align: center; margin-bottom: 56px; }
.section-head-row { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; }
.section-title { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.4rem); font-weight: 700; color: var(--slate-900); margin-bottom: 12px; }
.section-sub   { color: var(--slate-500); max-width: 520px; margin: 0 auto; font-size: .95rem; }
.section-link  { font-size: .875rem; font-weight: 600; color: var(--blue-600); display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.section-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform .2s; }
.section-link:hover svg { transform: translateX(4px); }

/* ── CTA ─────────────────────────────────────────────────────────────────── */
.cta-section { background: var(--slate-900); padding: 80px 0; text-align: center; }
.cta-title   { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.4rem); font-weight: 700; color: var(--white); margin-bottom: 16px; }
.cta-sub     { color: var(--slate-400); margin-bottom: 36px; font-size: .95rem; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer { background: var(--slate-900); color: var(--slate-300); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: .85rem; color: var(--slate-400); line-height: 1.7; margin: 16px 0 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social  { width: 32px; height: 32px; background: #1e293b; border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; transition: background .2s; }
.footer-social:hover { background: var(--blue-600); }
.footer-social svg { width: 15px; height: 15px; stroke: var(--slate-400); fill: none; stroke-width: 2; }
.footer-social:hover svg { stroke: var(--white); }
.footer-col h4 { color: var(--white); font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: .85rem; color: var(--slate-400); display: flex; align-items: center; gap: 6px; transition: color .15s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-col ul li a svg { width: 12px; height: 12px; stroke: var(--blue-500); fill: none; stroke-width: 2; flex-shrink: 0; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-size: .85rem; color: var(--slate-400); }
.footer-contact li svg { width: 16px; height: 16px; stroke: var(--blue-400); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid #1e293b; padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .75rem; color: var(--slate-500); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .75rem; color: var(--slate-500); transition: color .15s; }
.footer-bottom-links a:hover { color: var(--white); }

/* ── Back to top ─────────────────────────────────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  width: 44px; height: 44px; background: var(--blue-600); color: var(--white);
  border: none; border-radius: 50%; cursor: pointer; display: none;
  align-items: center; justify-content: center; box-shadow: var(--shadow-lg);
  transition: background .2s;
}
.back-to-top.show { display: flex; }
.back-to-top:hover { background: #1d4ed8; }
.back-to-top svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 2.5; }

/* ── Page hero ───────────────────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--slate-900) 0%, #1e3a8a 100%);
  color: var(--white); padding: 140px 0 80px; text-align: center;
}
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; margin-bottom: 20px; }
.page-hero p  { font-size: 1.05rem; color: #bfdbfe; max-width: 600px; margin: 0 auto; line-height: 1.7; }
.page-hero-search { position: relative; max-width: 480px; margin: 28px auto 0; }
.page-hero-search input {
  width: 100%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: var(--white); border-radius: var(--radius-xl); padding: 12px 20px 12px 44px;
  font-size: .875rem; outline: none; transition: border-color .2s;
}
.page-hero-search input::placeholder { color: #93c5fd; }
.page-hero-search input:focus { border-color: var(--blue-400); }
.page-hero-search svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; stroke: var(--slate-400); fill: none; stroke-width: 2; }

/* ── About ───────────────────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img  { width: 100%; height: 440px; object-fit: cover; border-radius: var(--radius-2xl); box-shadow: var(--shadow-xl); }
.about-text h2 { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--slate-900); margin-bottom: 20px; }
.about-text p  { font-size: .9rem; color: var(--slate-600); line-height: 1.75; margin-bottom: 16px; }
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mvv-card { background: var(--white); border: 1px solid var(--slate-100); border-radius: var(--radius-xl); padding: 32px; box-shadow: var(--shadow-sm); }
.mvv-icon { width: 48px; height: 48px; background: var(--blue-50); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.mvv-icon svg { width: 24px; height: 24px; stroke: var(--blue-600); fill: none; stroke-width: 2; }
.mvv-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--slate-900); margin-bottom: 12px; }
.mvv-card p  { font-size: .875rem; color: var(--slate-600); line-height: 1.7; }
.stats-bar { background: var(--blue-600); padding: 56px 0; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-value { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.stat-label { color: #bfdbfe; font-size: .875rem; }
.team-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.team-card  { text-align: center; }
.team-img   { width: 96px; height: 96px; border-radius: var(--radius-xl); object-fit: cover; margin: 0 auto 16px; box-shadow: var(--shadow); }
.team-name  { font-family: var(--font-display); font-weight: 600; color: var(--slate-900); margin-bottom: 4px; }
.team-role  { font-size: .85rem; color: var(--blue-600); }

/* ── Services list ───────────────────────────────────────────────────────── */
.services-list-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.services-list-card {
  display: flex; align-items: flex-start; gap: 20px; padding: 24px;
  background: var(--white); border: 1px solid var(--slate-100); border-radius: var(--radius-xl);
  transition: all .2s; cursor: pointer;
}
.services-list-card:hover { border-color: var(--blue-200); box-shadow: var(--shadow); }
.services-list-card-body { flex: 1; min-width: 0; }
.services-list-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.services-list-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--slate-900); }
.services-list-card p  { font-size: .85rem; color: var(--slate-500); line-height: 1.6; margin-bottom: 12px; }
.services-list-card-arrow { width: 20px; height: 20px; stroke: #cbd5e1; fill: none; stroke-width: 2; flex-shrink: 0; transition: all .2s; }
.services-list-card:hover .services-list-card-arrow { stroke: var(--blue-600); transform: translateX(4px); }
.service-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.service-pill  { background: var(--slate-50); border: 1px solid var(--slate-200); color: var(--slate-600); font-size: .72rem; padding: 3px 10px; border-radius: 999px; }

/* ── Service detail ──────────────────────────────────────────────────────── */
.service-detail-hero { background: linear-gradient(135deg, var(--slate-900), #1e3a8a); color: var(--white); padding: 140px 0 80px; }
.service-detail-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.service-detail-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .875rem; color: #93c5fd; margin-bottom: 20px; }
.service-detail-breadcrumb a:hover { color: var(--white); }
.service-detail-breadcrumb svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }
.service-hero-icon { width: 56px; height: 56px; border-radius: var(--radius-2xl); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; box-shadow: var(--shadow-lg); }
.service-hero-icon svg { width: 28px; height: 28px; stroke: white; fill: none; stroke-width: 2; }
.service-detail-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 700; margin-bottom: 12px; }
.service-hero-tagline { color: #bfdbfe; font-size: 1.1rem; margin-bottom: 12px; }
.service-hero-desc { color: #94a3b8; font-size: .9rem; line-height: 1.7; margin-bottom: 32px; max-width: 500px; }
.service-hero-img { width: 100%; height: 360px; object-fit: cover; border-radius: var(--radius-2xl); box-shadow: var(--shadow-xl); }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.benefit-card  { background: var(--slate-50); border: 1px solid var(--slate-100); border-radius: var(--radius-xl); padding: 24px; text-align: center; }
.benefit-icon  { width: 48px; height: 48px; background: var(--blue-50); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.benefit-icon svg { width: 24px; height: 24px; stroke: var(--blue-600); fill: none; stroke-width: 2; }
.benefit-card h4 { font-family: var(--font-display); font-weight: 700; color: var(--slate-900); margin-bottom: 8px; }
.benefit-card p  { font-size: .8rem; color: var(--slate-500); line-height: 1.6; }
.included-tech-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.included-list { display: flex; flex-direction: column; gap: 12px; }
.included-list li { display: flex; align-items: center; gap: 12px; font-size: .9rem; color: var(--slate-700); }
.included-list li svg { width: 20px; height: 20px; stroke: var(--blue-600); fill: none; stroke-width: 2; flex-shrink: 0; }
.tech-pill-set { display: flex; flex-wrap: wrap; gap: 10px; }
.tech-pill { background: var(--white); border: 1px solid var(--slate-200); color: var(--slate-700); font-size: .85rem; font-weight: 500; padding: 8px 16px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step-num { font-family: var(--font-mono); font-size: 3rem; font-weight: 500; color: var(--slate-100); margin-bottom: 10px; }
.process-step h4  { font-family: var(--font-display); font-weight: 700; color: var(--slate-900); margin-bottom: 8px; }
.process-step p   { font-size: .85rem; color: var(--slate-500); line-height: 1.6; }
.case-study-banner {
  background: linear-gradient(135deg, var(--blue-600), #4338ca);
  border-radius: var(--radius-2xl); padding: 48px; display: flex;
  align-items: center; gap: 48px; color: var(--white);
}
.case-study-banner-metric { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; margin-bottom: 8px; }
.case-study-banner-client { font-size: .85rem; color: #bfdbfe; margin-bottom: 6px; }
.case-study-banner p { font-size: .875rem; color: #bfdbfe; line-height: 1.6; }
.related-services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.related-service { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1px solid var(--slate-100); border-radius: var(--radius-xl); transition: all .2s; }
.related-service:hover { border-color: var(--blue-200); box-shadow: var(--shadow-sm); }
.related-service-icon { width: 36px; height: 36px; border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.related-service-icon svg { width: 16px; height: 16px; stroke: white; fill: none; stroke-width: 2; }
.related-service span { font-size: .875rem; font-weight: 600; color: var(--slate-800); transition: color .2s; }
.related-service:hover span { color: var(--blue-600); }

/* ── Contact ─────────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 48px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-info-icon { width: 40px; height: 40px; background: var(--blue-50); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon svg { width: 20px; height: 20px; stroke: var(--blue-600); fill: none; stroke-width: 2; }
.contact-info-title { font-size: .875rem; font-weight: 600; color: var(--slate-900); margin-bottom: 4px; }
.contact-info-text  { font-size: .85rem; color: var(--slate-500); line-height: 1.6; }
.contact-form-wrap { background: var(--slate-50); border: 1px solid var(--slate-100); border-radius: var(--radius-2xl); padding: 36px; }
.contact-form-wrap h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--slate-900); margin-bottom: 24px; }
.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .875rem; font-weight: 500; color: var(--slate-700); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; border: 1px solid var(--slate-200); background: var(--white);
  border-radius: var(--radius-lg); padding: 10px 14px; font-size: .875rem;
  color: var(--slate-900); font-family: var(--font-body); outline: none; transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(59,130,246,.12); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-success { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: var(--radius-2xl); padding: 48px; text-align: center; }
.form-success svg { width: 52px; height: 52px; stroke: #16a34a; fill: none; stroke-width: 2; margin: 0 auto 20px; }
.form-success h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--slate-900); margin-bottom: 10px; }
.form-success p  { font-size: .9rem; color: var(--slate-600); }

/* ── Blog detail ─────────────────────────────────────────────────────────── */
.blog-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; }
.blog-detail-hero-img { width: 100%; max-height: 420px; object-fit: cover; border-radius: var(--radius-2xl); margin-bottom: 32px; }
.blog-content h2 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--slate-900); margin: 32px 0 12px; }
.blog-content p  { font-size: .9rem; color: var(--slate-600); line-height: 1.8; margin-bottom: 16px; }
.blog-content ul { margin: 12px 0 16px 20px; }
.blog-content ul li { font-size: .9rem; color: var(--slate-600); line-height: 1.7; margin-bottom: 8px; list-style: disc; }
.blog-content strong { font-weight: 600; color: var(--slate-800); }
.blog-author-bar { border-top: 1px solid var(--slate-100); padding-top: 24px; margin-top: 40px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.blog-sidebar-card { background: var(--slate-50); border: 1px solid var(--slate-100); border-radius: var(--radius-xl); padding: 24px; margin-bottom: 24px; }
.blog-sidebar-card h3 { font-family: var(--font-display); font-weight: 700; color: var(--slate-900); margin-bottom: 20px; }
.related-article { display: flex; gap: 12px; margin-bottom: 20px; }
.related-article-img { width: 64px; height: 64px; border-radius: var(--radius-lg); object-fit: cover; flex-shrink: 0; }
.related-article-cat   { font-size: .7rem; color: var(--blue-600); margin-bottom: 4px; font-weight: 600; }
.related-article-title { font-size: .82rem; font-weight: 600; color: var(--slate-900); line-height: 1.4; }
.related-article-time  { font-size: .72rem; color: var(--slate-400); margin-top: 4px; }
.blog-cta-card { background: linear-gradient(135deg, var(--blue-600), #4338ca); border-radius: var(--radius-xl); padding: 24px; color: var(--white); text-align: center; }
.blog-cta-card h3 { font-family: var(--font-display); font-weight: 700; margin-bottom: 10px; }
.blog-cta-card p  { font-size: .85rem; color: #bfdbfe; margin-bottom: 16px; line-height: 1.6; }
.blog-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.blog-tag  { background: var(--slate-100); color: var(--slate-600); font-size: .78rem; font-weight: 500; padding: 6px 12px; border-radius: 999px; }
.cat-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.cat-btn { border: none; cursor: pointer; padding: 7px 16px; border-radius: 999px; font-size: .85rem; font-weight: 500; transition: all .15s; font-family: var(--font-body); }
.cat-btn.active  { background: var(--blue-600); color: var(--white); }
.cat-btn.inactive{ background: var(--slate-100); color: var(--slate-600); }
.cat-btn.inactive:hover { background: var(--slate-200); }

/* ── Legal ───────────────────────────────────────────────────────────────── */
.legal-content { max-width: 780px; margin: 0 auto; }
.legal-section { margin-bottom: 40px; }
.legal-section h2 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--slate-900); margin-bottom: 14px; }
.legal-section p  { font-size: .9rem; color: var(--slate-600); line-height: 1.8; }
.legal-section ul { display: flex; flex-direction: column; gap: 10px; }
.legal-section ul li { display: flex; align-items: flex-start; gap: 10px; font-size: .875rem; color: var(--slate-600); line-height: 1.7; }
.legal-section ul li svg { width: 16px; height: 16px; stroke: var(--blue-500); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 3px; }
.legal-footer { border-top: 1px solid var(--slate-100); padding-top: 32px; text-align: center; margin-top: 48px; }
.legal-icon-wrap { width: 56px; height: 56px; background: rgba(255,255,255,.1); border-radius: var(--radius-2xl); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.legal-icon-wrap svg { width: 28px; height: 28px; stroke: #93c5fd; fill: none; stroke-width: 2; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid-layout, .about-grid, .why-grid, .service-detail-inner, .contact-grid, .blog-detail-grid { grid-template-columns: 1fr; }
  .hero-img-wrap, .service-hero-img { display: none; }
  .services-grid    { grid-template-columns: repeat(2, 1fr); }
  .tech-grid        { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid    { grid-template-columns: repeat(2, 1fr); }
  .process-steps    { grid-template-columns: repeat(2, 1fr); }
  .related-services { grid-template-columns: repeat(2, 1fr); }
  .stats-row        { grid-template-columns: repeat(2, 1fr); }
  .blog-featured    { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .navbar-links, .navbar-cta { display: none; }
  .navbar-toggle { display: block; }
  .hero-stats    { flex-wrap: wrap; gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-list-grid { grid-template-columns: 1fr; }
  .case-grid     { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .mvv-grid      { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: repeat(2, 1fr); }
  .blog-grid     { grid-template-columns: 1fr; }
  .tech-grid     { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .included-tech-grid { grid-template-columns: 1fr; }
  .why-cards     { grid-template-columns: 1fr; }
  .case-study-banner { flex-direction: column; gap: 24px; }
  .section { padding: 60px 0; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }

}

/*---- service web page style-----*/

.service-web-container{

width:90%;

max-width:1200px;

margin:auto;

}

.service-web-hero{

background:linear-gradient(135deg,#2563eb,#4f46e5,#7c3aed);

padding:120px 0;

color:white;

overflow:hidden;

}

.service-web-hero-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.service-web-badge{

display:inline-block;

padding:8px 18px;

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

border-radius:30px;

backdrop-filter:blur(15px);

margin-bottom:25px;

}

.service-web-hero h1{

font-size:56px;

line-height:1.2;

margin-bottom:25px;

font-weight:800;

}

.service-web-hero p{

font-size:18px;

opacity:.95;

margin-bottom:35px;

}

.service-web-hero-buttons{

display:flex;

gap:20px;

margin-bottom:30px;

}

.service-web-btn{

padding:15px 30px;

border-radius:10px;

text-decoration:none;

font-weight:600;

transition:.3s;

}

.service-web-btn-primary{

background:white;

color:#4f46e5;

}

.service-web-btn-primary:hover{

transform:translateY(-4px);

}

.service-web-btn-outline{

border:2px solid white;

color:white;

}

.service-web-hero-features{

display:flex;

gap:25px;

flex-wrap:wrap;

font-size:15px;

}

.service-web-dashboard-card{

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

backdrop-filter:blur(20px);

border-radius:20px;

padding:25px;

box-shadow:0 20px 60px rgba(0,0,0,.2);

}

.service-web-window-top{

display:flex;

gap:8px;

margin-bottom:25px;

}

.service-web-window-top span{

width:12px;

height:12px;

border-radius:50%;

background:white;

}

.service-web-chart{

height:220px;

border-radius:15px;

background:linear-gradient(135deg,#38bdf8,#6366f1);

margin-bottom:20px;

}

.service-web-small-cards{

display:flex;

gap:15px;

}

.service-web-card{

flex:1;

height:80px;

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

border-radius:12px;

}

.service-web-trusted{

padding:80px 0;

background:white;

text-align:center;

}

.service-web-trusted h2{

margin-bottom:40px;

}

.service-web-logos{

display:flex;

justify-content:center;

gap:50px;

flex-wrap:wrap;

font-size:22px;

font-weight:700;

color:#64748b;

}

.service-web-stats{

padding:90px 0;

}

.service-web-stats-grid{

display:grid;

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

gap:25px;

}

.service-web-stat-card{

background:white;

padding:40px;

border-radius:20px;

text-align:center;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.3s;

}

.service-web-stat-card:hover{

transform:translateY(-8px);

}

.service-web-counter{

font-size:55px;

color:#4f46e5;

font-weight:800;

margin-bottom:10px;

}

@media(max-width:992px){

.service-web-hero-grid{

grid-template-columns:1fr;

}

.service-web-stats-grid{

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

}

.service-web-hero h1{

font-size:40px;

}

}

@media(max-width:768px){

.service-web-stats-grid{

grid-template-columns:1fr;

}

.service-web-hero-buttons{

flex-direction:column;

}

}


/*=========================
SECTION TITLE
=========================*/

.service-web-section-title{

text-align:center;

margin-bottom:70px;

}

.service-web-section-title span{

color:#4f46e5;

font-weight:700;

letter-spacing:2px;

font-size:14px;

}

.service-web-section-title h2{

font-size:42px;

margin-top:15px;

margin-bottom:15px;

}

.service-web-section-title p{

max-width:700px;

margin:auto;

color:#64748b;

}

/*=========================
WHY US
=========================*/

.service-web-why-us{

padding:110px 0;

background:#ffffff;

}

.service-web-why-grid{

display:grid;

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

gap:30px;

}

.service-web-feature-card{

background:white;

padding:35px;

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.06);

transition:.35s;

border:1px solid #eef2f7;

}

.service-web-feature-card:hover{

transform:translateY(-10px);

box-shadow:0 25px 60px rgba(79,70,229,.15);

}

.service-web-icon{

width:70px;

height:70px;

background:#eef2ff;

display:flex;

align-items:center;

justify-content:center;

font-size:30px;

border-radius:18px;

margin-bottom:25px;

}

.service-web-feature-card h3{

margin-bottom:15px;

}

.service-web-feature-card p{

color:#64748b;

}

/*=========================
SERVICES
=========================*/

.service-web-services{

padding:110px 0;

background:#f8fafc;

}

.service-web-service-grid{

display:grid;

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

gap:30px;

}

.service-web-service-card{

background:white;

padding:35px;

border-radius:18px;

transition:.3s;

border:1px solid #e5e7eb;

}

.service-web-service-card:hover{

background:#4f46e5;

color:white;

transform:translateY(-10px);

}

.service-web-service-card:hover p{

color:#ffffffdd;

}

.service-web-service-card h3{

margin-bottom:15px;

}

.service-web-service-card p{

color:#64748b;

}

/*=========================
TECH STACK
=========================*/

.service-web-technology{

padding:110px 0;

background:white;

}

.service-web-tech-grid{

display:grid;

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

gap:25px;

}

.service-web-tech-card{

background:#f8fafc;

padding:35px;

text-align:center;

border-radius:20px;

transition:.35s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

.service-web-tech-card:hover{

transform:translateY(-8px);

box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.service-web-tech-card img{

width:60px;

height:60px;

margin-bottom:20px;

}

.service-web-tech-card h4{

font-size:18px;

}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:992px){

.service-web-why-grid{

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

}

.service-web-service-grid{

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

}

.service-web-tech-grid{

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

}

}

@media(max-width:768px){

.service-web-why-grid{

grid-template-columns:1fr;

}

.service-web-service-grid{

grid-template-columns:1fr;

}

.service-web-tech-grid{

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

}

.service-web-section-title h2{

font-size:32px;

}

}


/*=========================
PROCESS SECTION
=========================*/

.service-web-process-section{

padding:120px 0;

background:#f8fafc;

}

.service-web-timeline{

position:relative;

max-width:900px;

margin:auto;

padding-left:60px;

}

.service-web-timeline::before{

content:"";

position:absolute;

left:28px;

top:0;

width:4px;

height:100%;

background:linear-gradient(

180deg,

#4f46e5,

#2563eb

);

border-radius:20px;

}

.service-web-timeline-item{

position:relative;

margin-bottom:60px;

}

.service-web-timeline-number{

position:absolute;

left:-60px;

width:60px;

height:60px;

background:linear-gradient(

135deg,

#4f46e5,

#2563eb

);

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:18px;

font-weight:700;

color:white;

box-shadow:0 15px 35px rgba(79,70,229,.3);

transition:.35s;

}

.service-web-timeline-content{

background:white;

padding:30px;

border-radius:18px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.35s;

}

.service-web-timeline-content h3{

margin-bottom:12px;

font-size:22px;

}

.service-web-timeline-content p{

color:#64748b;

line-height:1.8;

}

.service-web-timeline-item:hover .service-web-timeline-content{

transform:translateX(15px);

box-shadow:0 25px 60px rgba(79,70,229,.15);

}

.service-web-timeline-item:hover .service-web-timeline-number{

transform:scale(1.1);

}

@media(max-width:768px){

.service-web-timeline{

padding-left:35px;

}

.service-web-timeline::before{

left:14px;

}

.service-web-timeline-number{

width:35px;

height:35px;

font-size:13px;

left:-35px;

}

.service-web-timeline-content{

padding:22px;

}

.service-web-timeline-content h3{

font-size:18px;

}

}


/*=========================
PORTFOLIO
=========================*/

.service-web-portfolio-section{

padding:120px 0;

background:white;

}

.service-web-portfolio-grid{

display:grid;

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

gap:35px;

}

.service-web-portfolio-card{

background:#fff;

border-radius:22px;

overflow:hidden;

box-shadow:0 15px 45px rgba(0,0,0,.08);

transition:.4s;

}

.service-web-portfolio-card:hover{

transform:translateY(-12px);

}

.service-web-portfolio-image{

position:relative;

overflow:hidden;

height:260px;

}

.service-web-portfolio-image img{

width:100%;

height:100%;

object-fit:cover;

transition:.5s;

}

.service-web-portfolio-card:hover img{

transform:scale(1.08);

}

.service-web-portfolio-overlay{

position:absolute;

left:0;

top:0;

width:100%;

height:100%;

background:rgba(37,99,235,.82);

display:flex;

justify-content:center;

align-items:center;

opacity:0;

transition:.4s;

}

.service-web-portfolio-card:hover .service-web-portfolio-overlay{

opacity:1;

}

.service-web-portfolio-overlay a{

padding:14px 28px;

background:white;

border-radius:40px;

text-decoration:none;

font-weight:600;

color:#2563eb;

}

.service-web-portfolio-content{

padding:28px;

}

.service-web-portfolio-category{

display:inline-block;

background:#EEF2FF;

color:#4F46E5;

padding:6px 14px;

border-radius:25px;

font-size:13px;

font-weight:600;

margin-bottom:16px;

}

.service-web-portfolio-content h3{

font-size:24px;

margin-bottom:12px;

}

.service-web-portfolio-content p{

color:#64748b;

margin-bottom:22px;

line-height:1.8;

}

.service-web-portfolio-tech{

display:flex;

flex-wrap:wrap;

gap:10px;

}

.service-web-portfolio-tech span{

background:#F8FAFC;

padding:8px 16px;

border-radius:25px;

font-size:13px;

font-weight:600;

}

@media(max-width:992px){



.service-web-portfolio-grid{

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

}

}

@media(max-width:768px){

.service-web-portfolio-grid{

grid-template-columns:1fr;

}

}

/*=========================
PRICING SECTION
=========================*/

.service-web-pricing-section{

padding:120px 0;

background:#f8fafc;

}

.service-web-pricing-grid{

display:grid;

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

gap:35px;

margin-top:60px;

}

.service-web-pricing-card{

position:relative;

background:white;

padding:45px 35px;

border-radius:24px;

box-shadow:0 20px 50px rgba(0,0,0,.08);

transition:.4s;

overflow:hidden;

}

.service-web-pricing-card:hover{

transform:translateY(-12px);

}

.service-web-featured{

background:linear-gradient(

135deg,

#4F46E5,

#2563EB

);

color:white;

transform:scale(1.05);

}

.service-web-featured ul li{

color:white !important;

}

.service-web-featured .service-web-pricing-btn{

background:white;

color:#4F46E5;

}

.service-web-popular{

position:absolute;

top:20px;

right:-45px;

background:#F59E0B;

color:white;

padding:8px 45px;

font-size:12px;

font-weight:700;

transform:rotate(45deg);

}

.service-web-pricing-header{

text-align:center;

margin-bottom:35px;

}

.service-web-pricing-header h3{

font-size:28px;

margin-bottom:10px;

}

.service-web-pricing-header p{

margin-bottom:25px;

opacity:.8;

}

.service-web-pricing-header h1{

font-size:52px;

font-weight:800;

}

.service-web-pricing-card ul{

list-style:none;

padding:0;

margin-bottom:40px;

}

.service-web-pricing-card ul li{

padding:14px 0;

border-bottom:1px solid #e5e7eb;

color:#475569;

}

.service-web-pricing-btn{

display:block;

text-align:center;

padding:16px;

background:#4F46E5;

color:white;

text-decoration:none;

border-radius:12px;

font-weight:700;

transition:.3s;

}

.service-web-pricing-btn:hover{
background:#312E81;
color: #FFF !important
}

@media(max-width:992px){

.service-web-pricing-grid{

grid-template-columns:1fr;

}

.service-web-featured{

transform:none;

}

}

/*=========================
SUCCESS METRICS
=========================*/

.service-web-success-section{

padding:120px 0;

background:
linear-gradient(
135deg,
#0F172A,
#1E3A8A,
#4F46E5);

color:white;

position:relative;

overflow:hidden;

}

.service-web-success-section::before{

content:"";

position:absolute;

width:450px;

height:450px;

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

border-radius:50%;

top:-180px;

right:-120px;

filter:blur(40px);

}

.service-web-success-section::after{

content:"";

position:absolute;

width:350px;

height:350px;

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

bottom:-150px;

left:-120px;

border-radius:50%;

filter:blur(30px);

}

.service-web-metrics-grid{

display:grid;

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

gap:30px;

margin-top:70px;

position:relative;

z-index:2;

}

.service-web-metric-card{

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

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

backdrop-filter:blur(16px);

padding:40px 30px;

border-radius:24px;

text-align:center;

transition:.35s;

}

.service-web-metric-card:hover{

transform:translateY(-12px);

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

box-shadow:0 25px 60px rgba(0,0,0,.3);

}

.service-web-metric-icon{

width:80px;

height:80px;

margin:auto;

margin-bottom:25px;

display:flex;

align-items:center;

justify-content:center;

border-radius:20px;

font-size:34px;

background:linear-gradient(
135deg,
#38BDF8,
#4F46E5);

}

.service-web-metric-card h2{

font-size:52px;

font-weight:800;

margin-bottom:10px;

}

.service-web-metric-card h4{

margin-bottom:15px;

font-size:22px;

}

.service-web-metric-card p{

opacity:.85;

line-height:1.7;

}

@media(max-width:992px){

.service-web-metrics-grid{

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

}

}

@media(max-width:768px){

.service-web-metrics-grid{

grid-template-columns:1fr;

}

}
/*---- end style --*/