/* ============================================================
   LogicWares Private Limited — Main Stylesheet
   Modern Tech Company Design · Blue/Indigo Theme
   ============================================================ */

/* ── CSS Custom Properties ── */
:root {
  --primary:       #2563EB;
  --primary-dark:  #1D4ED8;
  --primary-light: #EFF6FF;
  --secondary:     #4F46E5;
  --accent:        #06B6D4;
  --dark:          #0F172A;
  --text:          #334155;
  --text-light:    #64748B;
  --bg:            #FFFFFF;
  --bg-light:      #F8FAFC;
  --bg-section:    #F1F5F9;
  --border:        #E2E8F0;
  --success:       #10B981;
  --gradient:      linear-gradient(135deg, #2563EB 0%, #4F46E5 100%);
  --gradient-dark: linear-gradient(135deg, #1E3A8A 0%, #312E81 100%);
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.05);
  --shadow:        0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:     0 16px 48px rgba(0,0,0,0.12);
  --shadow-blue:   0 8px 30px rgba(37,99,235,0.25);
  --radius:        8px;
  --radius-lg:     16px;
  --radius-xl:     24px;
  --transition:    all 0.3s cubic-bezier(0.4,0,0.2,1);
  --max-width:     1200px;
  --font:          'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 {
  color: var(--dark);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; color: var(--text); }

.text-primary    { color: var(--primary) !important; }
.text-light-clr  { color: var(--text-light) !important; }
.text-white      { color: #fff !important; }
.text-center     { text-align: center; }
.text-left       { text-align: left; }

/* ── Layout Utilities ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }

.section-bg     { background: var(--bg-light); }
.section-dark   { background: var(--dark); color: #fff; }
.section-dark h1,
.section-dark h2,
.section-dark h3 { color: #fff; }

.grid-2  { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.grid-3  { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4  { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 2rem; }

.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between{ display: flex; align-items: center; justify-content: space-between; }
.flex-col    { flex-direction: column; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }

/* ── Section Header ── */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-top: 0.75rem;
  margin-bottom: 0;
}
.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37,99,235,0.35);
  color: #fff;
}
.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--primary-dark);
}
.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
  background: transparent;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}
.btn-lg { padding: 0.9rem 2.25rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }

/* ── NAVIGATION ── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
#navbar.scrolled {
  box-shadow: var(--shadow);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 70px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo-icon svg { width: 22px; height: 22px; fill: #fff; }
.nav-logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
}
.nav-logo-text span { color: var(--primary); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: var(--primary-light);
}
.nav-cta { margin-left: 0.75rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border-radius: var(--radius);
  transition: var(--transition);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── HERO SECTION ── */
.hero {
  background: linear-gradient(135deg, #0F172A 0%, #1E3A8A 50%, #312E81 100%);
  color: #fff;
  padding: 7rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.3) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #93C5FD;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: #fff;
  margin-bottom: 1.25rem;
  font-size: clamp(2.2rem, 5vw, 3.75rem);
}
.hero h1 span {
  background: linear-gradient(135deg, #60A5FA, #A5B4FC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.15rem;
  color: #CBD5E1;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hero-stat-label { font-size: 0.85rem; color: #94A3B8; margin-top: 0.25rem; }

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-code-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  width: 100%;
  max-width: 420px;
  backdrop-filter: blur(10px);
}
.code-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.code-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.code-title {
  font-size: 0.8rem;
  color: #64748B;
  margin-left: auto;
}
.code-body { font-family: 'JetBrains Mono', 'Fira Code', monospace; font-size: 0.82rem; line-height: 1.7; }
.code-kw  { color: #C084FC; }
.code-fn  { color: #60A5FA; }
.code-str { color: #86EFAC; }
.code-cm  { color: #475569; }
.code-var { color: #F0ABFC; }
.code-num { color: #FCA5A5; }

/* Tech pills in hero visual */
.tech-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.tech-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #CBD5E1;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, #0F172A 0%, #1E3A8A 60%, #312E81 100%);
  color: #fff;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 1rem; }
.page-hero p  { color: #CBD5E1; font-size: 1.1rem; max-width: 580px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: #64748B;
}
.breadcrumb a { color: #93C5FD; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { color: #334155; }

/* ── CARDS ── */
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37,99,235,0.2);
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}
.card-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card h3 { margin-bottom: 0.75rem; }
.card p  { color: var(--text-light); font-size: 0.95rem; margin: 0; }

/* Service Card */
.service-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.service-card .card-icon { background: var(--primary-light); }
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.service-card p  { color: var(--text-light); font-size: 0.93rem; }
.service-card ul { margin-top: 1rem; }
.service-card ul li {
  font-size: 0.88rem;
  color: var(--text-light);
  padding: 0.3rem 0;
  padding-left: 1.2rem;
  position: relative;
}
.service-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 0.8rem;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
}
.card-link:hover { gap: 0.7rem; }

/* Tech Card */
.tech-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  text-align: center;
}
.tech-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.tech-card-logo {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  border-radius: 12px;
  font-size: 2rem;
}
.tech-bar-wrap { background: var(--bg-section); border-radius: 100px; height: 6px; margin-top: 1rem; overflow: hidden; }
.tech-bar      { height: 6px; background: var(--gradient); border-radius: 100px; transition: width 1s ease; }

/* Portfolio Card */
.portfolio-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.portfolio-img {
  height: 200px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.portfolio-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.portfolio-card:hover .portfolio-img-overlay { opacity: 1; }
.portfolio-body { padding: 1.5rem; }
.portfolio-tag  {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}
.portfolio-body h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.portfolio-body p  { font-size: 0.88rem; color: var(--text-light); }
.portfolio-results {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.portfolio-result-item { text-align: center; }
.portfolio-result-value { font-size: 1.25rem; font-weight: 700; color: var(--primary); }
.portfolio-result-label { font-size: 0.72rem; color: var(--text-light); }

/* Testimonial Card */
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.testimonial-stars { color: #F59E0B; font-size: 1rem; margin-bottom: 1rem; }
.testimonial-text  { font-size: 0.95rem; color: var(--text); font-style: italic; margin-bottom: 1.5rem; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial-name    { font-weight: 600; font-size: 0.9rem; color: var(--dark); }
.testimonial-company { font-size: 0.8rem; color: var(--text-light); }

/* Blog Card */
.blog-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.blog-img {
  height: 180px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.blog-body { padding: 1.5rem; }
.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}
.blog-tag {
  background: var(--primary-light);
  color: var(--primary);
  padding: 0.15rem 0.6rem;
  border-radius: 100px;
  font-weight: 600;
}
.blog-body h3 { font-size: 1.05rem; margin-bottom: 0.5rem; line-height: 1.4; }
.blog-body p  { font-size: 0.88rem; color: var(--text-light); }
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

/* Job Card */
.job-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: var(--transition);
}
.job-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.job-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--success);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  margin-bottom: 0.5rem;
}
.job-card h3 { font-size: 1.1rem; margin-bottom: 0.35rem; }
.job-meta    { display: flex; gap: 1rem; flex-wrap: wrap; }
.job-meta-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ── STATS / COUNTERS ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2rem;
}
.stat-item { text-align: center; padding: 2rem 1rem; }
.stat-value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.stat-label { font-size: 0.9rem; color: var(--text-light); margin-top: 0.5rem; }

/* ── WHY CHOOSE US ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-features { display: flex; flex-direction: column; gap: 1.5rem; }
.why-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.why-feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why-feature h4 { margin-bottom: 0.3rem; }
.why-feature p  { font-size: 0.9rem; color: var(--text-light); margin: 0; }

.why-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--gradient);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-image-inner { color: #fff; text-align: center; padding: 3rem; }
.why-image-inner h3 { color: #fff; font-size: 2rem; margin-bottom: 1rem; }
.why-image-inner p { color: rgba(255,255,255,0.8); }
.why-float-card {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background: #fff;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  min-width: 180px;
}
.why-float-card .wfc-value { font-size: 1.75rem; font-weight: 800; color: var(--primary); }
.why-float-card .wfc-label { font-size: 0.8rem; color: var(--text-light); }

/* ── CTA SECTION ── */
.cta-section {
  background: var(--gradient-dark);
  color: #fff;
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(79,70,229,0.4) 0%, transparent 70%);
  top: -200px;
  left: -100px;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,0.3) 0%, transparent 70%);
  bottom: -150px;
  right: -50px;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: #fff; margin-bottom: 1rem; }
.cta-section p  { color: #CBD5E1; font-size: 1.1rem; max-width: 580px; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── INDUSTRIES ── */
.industry-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
  background: var(--primary-light);
}
.industry-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.industry-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.industry-card p  { font-size: 0.88rem; color: var(--text-light); margin: 0; }

/* ── PROCESS / STEPS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-blue);
}
.process-step h4 { margin-bottom: 0.5rem; }
.process-step p  { font-size: 0.88rem; color: var(--text-light); }

/* ── VALUES ── */
.value-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.value-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card h3 { margin-bottom: 0.5rem; }
.value-card p  { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* ── TEAM ── */
.team-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-avatar {
  height: 180px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
.team-body { padding: 1.5rem; }
.team-name   { font-weight: 700; font-size: 1.05rem; margin-bottom: 0.25rem; }
.team-role   { font-size: 0.85rem; color: var(--primary); font-weight: 600; margin-bottom: 0.5rem; }
.team-bio    { font-size: 0.85rem; color: var(--text-light); }
.team-social { display: flex; justify-content: center; gap: 0.75rem; margin-top: 1rem; }
.team-social a {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--bg-section);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
}
.team-social a:hover { background: var(--primary); color: #fff; }

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: var(--gradient);
}
.timeline-item { position: relative; margin-bottom: 2.5rem; }
.timeline-dot {
  position: absolute;
  left: -2.5rem;
  top: 0.25rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gradient);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--primary);
}
.timeline-year { font-size: 0.8rem; font-weight: 700; color: var(--primary); margin-bottom: 0.25rem; }
.timeline-item h4 { margin-bottom: 0.4rem; }
.timeline-item p  { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p  { color: var(--text-light); }
.contact-details { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-detail-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-detail-label { font-size: 0.8rem; font-weight: 600; color: var(--text-light); margin-bottom: 0.15rem; }
.contact-detail-value { font-size: 0.95rem; color: var(--dark); font-weight: 500; }
.contact-detail-value a { color: var(--dark); }
.contact-detail-value a:hover { color: var(--primary); }

.map-placeholder {
  height: 200px;
  background: var(--bg-section);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-light);
  gap: 0.5rem;
}
.map-placeholder .map-icon { font-size: 2rem; }

.contact-form-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.contact-form-card h3 { margin-bottom: 0.5rem; }
.contact-form-card > p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 1.75rem; }

.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.93rem;
  color: var(--dark);
  background: var(--bg);
  transition: var(--transition);
  outline: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.75rem;
  text-align: center;
}
.form-success {
  display: none;
  background: rgba(16,185,129,0.1);
  border: 1px solid var(--success);
  color: #065F46;
  padding: 1rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
}

/* ── FOOTER ── */
#footer {
  background: var(--dark);
  color: #fff;
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.footer-logo-icon {
  width: 34px;
  height: 34px;
  background: var(--gradient);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-icon svg { width: 20px; height: 20px; fill: #fff; }
.footer-logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}
.footer-logo-text span { color: #60A5FA; }
.footer-desc { font-size: 0.88rem; color: #94A3B8; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  color: #94A3B8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: #fff; }
.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.85rem;
  color: #94A3B8;
  transition: var(--transition);
}
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}
.footer-contact-item .fc-icon { font-size: 0.9rem; color: #60A5FA; flex-shrink: 0; margin-top: 0.1rem; }
.footer-contact-item p { font-size: 0.85rem; color: #94A3B8; margin: 0; }
.footer-contact-item a { color: #94A3B8; }
.footer-contact-item a:hover { color: #fff; }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-bottom p  { font-size: 0.82rem; color: #475569; margin: 0; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.82rem; color: #475569; }
.footer-bottom-links a:hover { color: #94A3B8; }

/* ── LOGOS / CLIENTS ── */
.clients-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2rem 0;
}
.client-logo {
  opacity: 0.4;
  filter: grayscale(1);
  transition: var(--transition);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.03em;
}
.client-logo:hover { opacity: 0.7; filter: grayscale(0); }

/* ── ACCORDION (FAQ) ── */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.accordion-btn {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  background: var(--bg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
.accordion-btn:hover { background: var(--bg-light); color: var(--primary); }
.accordion-icon { font-size: 1.25rem; transition: var(--transition); }
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: var(--bg-light);
}
.accordion-content p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.93rem;
  color: var(--text-light);
  margin: 0;
}
.accordion-item.open .accordion-content { max-height: 500px; }

/* ── CHIPS / TAGS ── */
.tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag {
  background: var(--bg-section);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  border: 1px solid var(--border);
}
.tag-primary { background: var(--primary-light); color: var(--primary); border-color: transparent; }

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
.animate-fade-up  { animation: fadeInUp 0.6s ease forwards; }
.animate-fade     { animation: fadeIn   0.6s ease forwards; }
.animate-float    { animation: float   4s ease-in-out infinite; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── ALERT / NOTICE ── */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.alert-info { background: var(--primary-light); color: #1D4ED8; border: 1px solid #BFDBFE; }

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--border); margin: 2rem 0; }

/* ── MEDIA QUERIES ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .nav-menu.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    gap: 0.25rem;
  }
  .nav-menu.mobile-open .nav-link { padding: 0.75rem 1rem; border-radius: var(--radius); }
  .nav-cta  { width: 100%; margin-left: 0; margin-top: 0.5rem; }
  .nav-cta .btn { width: 100%; justify-content: center; }

  .hero { padding: 4rem 0 3rem; }
  .hero-content { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { display: none; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat-value { font-size: 1.5rem; }

  .why-grid     { grid-template-columns: 1fr; }
  .why-image-wrap { min-height: 280px; }
  .why-float-card { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom   { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .job-card { flex-direction: column; align-items: flex-start; }

  .page-hero { padding: 3.5rem 0; }
  .section { padding: 3rem 0; }
  .section-lg { padding: 4rem 0; }
}

@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* ── MISC UTILITIES ── */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.w-full { width: 100%; }
.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }
.shadow { box-shadow: var(--shadow); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* Gradient Text */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Highlight number/accent in headings */
.accent { color: var(--primary); }
