/* ============================================================
   MS PCB DESIGN — style.css
   Global styles, components, layout, utilities
   ============================================================ */

/* ─── GOOGLE FONTS ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ─── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; }

/* ─── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --blue:        #0077B6;
  --cyan:        #00B4D8;
  --accent:      #48CAE4;
  --dark:        #03045E;
  --bg-light:    #F8FAFC;
  --text:        #1E293B;
  --text-muted:  #475569;
  --white:       #ffffff;
  --gradient:    linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
  --gradient-dark: linear-gradient(135deg, #03045E 0%, #0077B6 100%);
  --shadow:      0 4px 24px rgba(0,119,182,0.12);
  --shadow-lg:   0 12px 48px rgba(0,119,182,0.18);
  --radius:      16px;
  --radius-sm:   10px;
  --transition:  all 0.35s cubic-bezier(0.22,1,0.36,1);
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: 'Poppins', sans-serif; line-height: 1.2; }
p { line-height: 1.8; }

/* ─── UTILITIES ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* Section Labels */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,180,216,0.1);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(0,180,216,0.25);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
}

/* Section Titles */
.section-title {
  font-size: 36px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
}
.section-title span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 620px;
  margin-top: 12px;
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: #03045E;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,119,182,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,119,182,0.45); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }

.btn-white {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }

/* ─── TAGS / BADGES ──────────────────────────────────────────── */
.tag {
  background: rgba(0,119,182,0.08);
  color: #000;
  border: 1px solid rgba(0,119,182,0.2);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 0.78rem;
  font-weight: 500;
}

/* ─── STAT CARDS ────────────────────────────────────────────── */
.stat-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(0,119,182,0.1);
  box-shadow: var(--shadow);
  text-align: center;
}
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
}

/* ─── ANIMATIONS ────────────────────────────────────────────── */
@keyframes fadeUp    { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes float     { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-12px); } }
@keyframes pulse     { 0%,100%{ opacity:1; } 50%{ opacity:0.5; } }
@keyframes shimmer   { 0%{ background-position:-400px 0; } 100%{ background-position:400px 0; } }

.animate-fade-up { animation: fadeUp 0.7s ease forwards; }
.animate-float   { animation: float 4s ease-in-out infinite; }

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.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; }

/* ─── HEADER / NAVIGATION ───────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #00B4D8;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
 
}
.header.scrolled {
  background: #00B4D8;
  
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 66px; width: auto; display: block; }

/* Desktop Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav a {
  color: #F0FDFF;
  font-weight: 500;
  font-size: 20px;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s;
  border-radius: 2px;
}
.nav a:hover,
.nav a.active { color: var(--blue); }
.nav a:hover::after,
.nav a.active::after { transform: scaleX(1); }

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 12px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98);
  z-index: 999;
  flex-direction: column;
  padding: 32px 24px;
  gap: 4px;
  overflow-y: auto;
  backdrop-filter: blur(20px);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--blue); }
.mobile-nav .btn { margin-top: 20px; justify-content: center; }

/* ─── PAGE HERO (inner pages) ───────────────────────────────── */
.page-hero {
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding-top: 72px;
  background: linear-gradient(160deg, #EFF9FF 0%, #fff 60%, #F0FDFF 100%);
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.page-hero-blob {
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,180,216,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero-blob-2 {
  position: absolute;
  bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(0,119,182,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 64px 0 56px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 21px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--blue); transition: opacity 0.2s; }
.breadcrumb a:hover { opacity: 0.75; }
.breadcrumb span { color: #ffffff; }
.page-hero-title {
  font-size: 45px;
  font-weight: 700;
  
  margin-bottom: 14px;
}
.page-hero-title span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero-sub {
  font-size: 1.05rem;
  color: #F0FDFF;
  line-height: 1.8;
  max-width: 560px;
}

/* ─── SERVICE CARDS ─────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  background: #fff;
  border: 1px solid rgba(0,119,182,0.1);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--cyan);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(0,119,182,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s;
}
.service-card:hover .service-icon { background: var(--gradient); }
.service-icon svg {
  width: 26px; height: 26px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
  transition: stroke 0.3s;
}
.service-card:hover .service-icon svg { stroke: #fff; }
.service-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 12px;
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.service-features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-features li::before {
  content: '›';
  color: var(--cyan);
  font-weight: 700;
  font-size: 1rem;
}

/* ─── WHY CARDS ─────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.why-card {
  background: var(--bg-light);
  border: 1px solid rgba(0,119,182,0.08);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.why-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); background: #fff; }
.why-card:hover::after { transform: scaleX(1); }
.why-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-icon svg { width: 27px; height: 27px; fill: none; stroke: #fff; stroke-width: 2; }
.why-title { font-weight: 700; font-size: 1rem; color: var(--text); margin-bottom: 8px; }
.why-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ─── COUNTER / HIGHLIGHT CARDS ─────────────────────────────── */
.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.counter-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(0,119,182,0.1);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.counter-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.counter-val {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.counter-label { font-size: 0.88rem; color: var(--text-muted); margin-top: 4px; }

/* ─── INDUSTRY TAGS ─────────────────────────────────────────── */
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.industry-tag {
  background: #fff;
  border: 1px solid rgba(0,119,182,0.15);
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  cursor: default;
}
.industry-tag:hover { background: var(--gradient); color: #fff; border-color: transparent; transform: scale(1.04); }
.ind-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; transition: background 0.3s; }
.industry-tag:hover .ind-dot { background: rgba(255,255,255,0.6); }

/* ─── REDESIGN CARDS ────────────────────────────────────────── */
.redesign-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.redesign-card {
  background: var(--bg-light);
  border: 1px solid rgba(0,119,182,0.1);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}
.redesign-card:hover { background: var(--gradient); transform: translateY(-4px); box-shadow: var(--shadow); }
.redesign-card:hover .redesign-icon { stroke: #fff; }
.redesign-card:hover .redesign-title,
.redesign-card:hover .redesign-desc { color: #fff; }
.redesign-card:hover .redesign-icon-wrap { background: rgba(255,255,255,0.2); }
.redesign-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(0,119,182,0.1);
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.redesign-icon { width: 24px; height: 24px; fill: none; stroke: var(--blue); stroke-width: 2; transition: stroke 0.3s; }
.redesign-title { font-weight: 700; font-size: 0.92rem; color: var(--text); margin-bottom: 6px; transition: color 0.3s; }
.redesign-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; transition: color 0.3s; }

/* ─── E2E DARK SECTION ──────────────────────────────────────── */
.e2e {
  background: var(--gradient-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.e2e-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,0.5) 40px, rgba(255,255,255,0.5) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,0.5) 40px, rgba(255,255,255,0.5) 41px);
}
.e2e .section-label { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.2); }
.e2e .section-title { color: #fff; }
.e2e .section-title span { background: linear-gradient(135deg,#48CAE4,#90E0EF); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.e2e .section-sub { color: rgba(255,255,255,0.7); }
.e2e-services {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.e2e-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
}
.e2e-item:hover { background: rgba(255,255,255,0.16); transform: translateY(-4px); }
.e2e-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg,#48CAE4,#90E0EF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.e2e-label { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.85); line-height: 1.4; }

/* ─── CTA SECTION ───────────────────────────────────────────── */
.cta-section {
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}
.cta-section .section { padding: 80px 0; }
.cta-pattern {
  position: absolute;
  inset: 0;
 
}
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-title { font-size: clamp(1.8rem,4vw,3rem); font-weight: 500; color: #fff; margin-bottom: 16px; }
.cta-sub { color: rgba(255,255,255,0.82); font-size: 1.05rem; line-height: 1.8; max-width: 620px; margin: 0 auto 36px; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ─── CONTACT FORM SECTION ──────────────────────────────────── */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
}
.contact-info-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 8px;
}
.contact-info-sub { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 36px; line-height: 1.7; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-item-icon {
  width: 42px; height: 42px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 2; }
.contact-item-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 3px;
}
.contact-item-val {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.7;
}
.contact-item-val a { color: var(--blue); transition: opacity 0.2s; }
.contact-item-val a:hover { opacity: 0.75; }

/* Contact Form */
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid rgba(0,119,182,0.1);
  box-shadow: var(--shadow);
}
.form-title { font-weight: 700; font-size: 1.2rem; color: var(--text); margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(0,119,182,0.15);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--bg-light);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-control:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,119,182,0.1);
}
textarea.form-control { resize: vertical; min-height: 110px; }
select.form-control { appearance: none; cursor: pointer; }
.form-submit { margin-top: 10px; }
.form-success {
  display: none;
  background: rgba(0,119,182,0.08);
  border: 1px solid rgba(0,119,182,0.2);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.92rem;
  text-align: center;
}

/* ─── PROCESS TIMELINE ──────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 24px;
  box-shadow: 0 0 0 6px var(--bg-light), 0 4px 20px rgba(0,119,182,0.2);
  position: relative;
  transition: var(--transition);
}
.process-step:hover .step-num {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
  transform: scale(1.1);
}
.step-badge {
  position: absolute;
  bottom: -6px; right: -8px;
  width: 24px; height: 24px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-badge svg { width: 13px; height: 13px; fill: none; stroke: #fff; stroke-width: 2.5; }
.step-title { font-weight: 700; font-size: 1rem; color: var(--text); margin-bottom: 10px; }
.step-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* ─── JOURNEY TIMELINE ──────────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: 32px;
  margin-top: 0;
  display: flex;
  flex-direction: column;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 15px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--blue), var(--cyan));
}
.tl-item { position: relative; padding-left: 40px; padding-bottom: 48px; }
.tl-dot {
  position: absolute;
  left: -33px; top: 0;
  width: 32px; height: 32px;
  background: var(--gradient);
  border-radius: 50%;
  border: 3px solid var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 3px rgba(0,119,182,0.2);
}
.tl-dot svg { width: 14px; height: 14px; fill: none; stroke: #fff; stroke-width: 2.5; }
.tl-year { font-size: 0.78rem; font-weight: 700; color: var(--cyan); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.tl-title { font-weight: 600; font-size: 24px; color: var(--text); margin-bottom: 12px; }
.tl-items { display: flex; flex-direction: column; gap: 8px; }
.tl-bullet { font-size: 0.9rem; color: var(--text-muted); display: flex; gap: 10px; align-items: flex-start; }
.tl-bullet::before { content:'→'; color: var(--blue); font-weight: 700; flex-shrink: 0; }

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer {
  background:
  linear-gradient(
    rgba(7, 3, 52, 0.899),
    rgba(4, 18, 88, 0.915)
  ),
  url("../images/event-one-shape-1.png");
  color: rgba(26, 132, 129, 0.75);
  padding: 64px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo img { height: 56px; width: auto;  }
.footer-desc {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin: 16px 0 24px;
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.social-btn:hover { background: var(--gradient); border-color: transparent; }
.social-btn svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.8); }
.footer-col-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ─── WHATSAPP BUTTON ───────────────────────────────────────── */
.whatsapp {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
}
.whatsapp-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  animation: float 3s ease-in-out infinite;
  transition: transform 0.3s;
  text-decoration: none;
}
.whatsapp-btn:hover { transform: scale(1.12); }
.whatsapp-btn svg { width: 28px; height: 28px; fill: #fff; }
.whatsapp-tooltip {
  position: absolute;
  right: 68px; top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.whatsapp:hover .whatsapp-tooltip { opacity: 1; }

/* ─── PCB HERO VISUAL ───────────────────────────────────────── */
.hero-card-main {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0,119,182,0.15);
  padding: 32px;
  width: 100%;
  max-width: 400px;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(0,119,182,0.1);
}
.hero-card-main-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.pcb-icon {
  width: 48px; height: 48px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pcb-icon svg { width: 26px; height: 26px; fill: none; stroke: #fff; stroke-width: 2; }
.card-meta-title { font-weight: 700; font-size: 1rem; color: var(--text); }
.card-meta-sub { font-size: 0.8rem; color: var(--text-muted); }
.pcb-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 6px; margin-bottom: 20px; }
.pcb-cell {
  aspect-ratio: 1;
  border-radius: 4px;
  background: var(--bg-light);
  border: 1px solid rgba(0,119,182,0.15);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.pcb-cell.active { background: linear-gradient(135deg,rgba(0,119,182,0.15),rgba(0,180,216,0.15)); border-color: var(--cyan); }
.pcb-cell.active::after { content:''; position:absolute; inset:0; background:var(--gradient); opacity:0.3; border-radius:3px; }
.metric-row { display: flex; gap: 10px; }
.metric { flex:1; background: var(--bg-light); border-radius: 10px; padding: 10px 14px; border: 1px solid rgba(0,119,182,0.08); }
.metric-val { font-weight: 700; font-size: 1.1rem; color: var(--blue); }
.metric-key { font-size: 0.72rem; color: var(--text-muted); }
.floating-chip {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,119,182,0.12);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float 4s ease-in-out infinite;
}
.floating-chip svg { width: 16px; height: 16px; flex-shrink: 0; }
.chip-1 { top: -20px; left: -75px; animation-delay: 0s; }
.chip-2 { bottom: -20px; right: -133px; animation-delay: 1.5s; }
.chip-dot { width: 8px; height: 8px; border-radius: 50%; }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .e2e-services   { grid-template-columns: repeat(3,1fr); }
  .footer-inner   { grid-template-columns: 1fr 1fr; }
  .redesign-grid  { grid-template-columns: repeat(2,1fr); }
}

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

  /* Header */
  .nav { display: none; }
  .header-cta .btn-primary { display: none; }
  .hamburger { display: flex; }

  /* Grids */
  .services-grid  { grid-template-columns: 1fr; }
  .process-steps  { grid-template-columns: repeat(2,1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .e2e-services   { grid-template-columns: repeat(2,1fr); }
  .counter-grid   { grid-template-columns: repeat(2,1fr); }
  .why-grid       { grid-template-columns: 1fr; }
  .redesign-grid  { grid-template-columns: 1fr; }
  .contact-inner  { grid-template-columns: 1fr; }
  .footer-inner   { grid-template-columns: 1fr; gap: 32px; }

  /* Footer bottom */
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Form */
  .form-grid { grid-template-columns: 1fr; }

  /* Page hero */
  .page-hero-title { font-size: 2rem; }
}

@media (max-width: 480px) {
  .counter-grid  { grid-template-columns: 1fr; }
  .e2e-services  { grid-template-columns: 1fr; }
  .chip-1, .chip-2 { display: none; }
}


/* =========================================
   ADVANCED SERVICES SECTION - MS PCB
========================================= */

.services-grid{
  display:grid !important;
  grid-template-columns:repeat(3,1fr) !important;
  gap:30px !important;
  margin-top:70px !important;
}

/* CARD */
.service-card{
  position:relative !important;
  background:#ffffff !important;
  padding:38px 30px !important;

  /* UNIQUE RADIUS */
  border-radius:12px 50px 12px 50px !important;

  overflow:hidden !important;

  /* BORDER */
  border:1.5px solid rgba(37,99,235,0.12) !important;

  /* SHADOW */
  box-shadow:
  0 10px 35px rgba(15,23,42,0.06),
  0 2px 8px rgba(15,23,42,0.04) !important;

  transition:all .45s ease !important;

  z-index:1 !important;
}

/* TOP GLOW */
.service-card::before{
  content:"" !important;
  position:absolute !important;
  top:-100px !important;
  right:-100px !important;
  width:220px !important;
  height:220px !important;
  background:radial-gradient(circle,
  rgba(37,99,235,0.18),
  transparent 70%) !important;
  transition:.5s ease !important;
}

/* BOTTOM LINE */
.service-card::after{
  content:"" !important;
  position:absolute !important;
  left:0 !important;
  bottom:0 !important;
  width:0% !important;
  height:5px !important;
  background:linear-gradient(90deg,#2563eb,#06b6d4) !important;
  transition:.5s ease !important;
}

/* HOVER */
.service-card:hover{
  transform:translateY(-14px) !important;

  border-radius:50px 12px 50px 12px !important;

  box-shadow:
  0 25px 50px rgba(37,99,235,0.14),
  0 8px 20px rgba(15,23,42,0.08) !important;
}

.service-card:hover::after{
  width:100% !important;
}

.service-card:hover::before{
  transform:scale(1.2) !important;
}

/* ICON */
.service-icon{
  width:82px !important;
  height:82px !important;

  border-radius:24px 50% 24px 50% !important;

  background:#00B4D8 !important;

  display:flex !important;
  align-items:center !important;
  justify-content:center !important;

  margin-bottom:28px !important;

  box-shadow:0 14px 35px rgba(37,99,235,0.28) !important;

  transition:.45s ease !important;
}

.service-icon svg{
  width:38px !important;
  height:38px !important;
  stroke:#fff !important;
  fill:none !important;
  stroke-width:1.7 !important;
}


/* TITLE */
.service-title{
  font-size:24px !important;
  font-weight:600!important;
  color:#0f172a !important;
  margin-bottom:22px !important;
  line-height:1.3 !important;
}

/* FEATURES */
.service-features{
  list-style:none !important;
  padding:0 !important;
  margin:0 !important;

  display:flex !important;
  flex-direction:column !important;
  gap:16px !important;
}

.service-features li{
  position:relative !important;
  padding-left:34px !important;

  color:#475569 !important;
  font-size:15px !important;
  line-height:1.7 !important;
  font-weight:500 !important;

  transition:.35s ease !important;
}

/* CUSTOM ICON */
.service-features li::before{
  content:"◆" !important;

  position:absolute !important;
  left:0 !important;
  top:2px !important;

  color:#2563eb !important;
  font-size:14px !important;

  transition:.35s ease !important;
}

.service-card:hover .service-features li{
  transform:translateX(4px) !important;
}

.service-card:hover .service-features li::before{
  color:#06b6d4 !important;
}

/* SECTION TITLE */
.section-title{
  font-size:54px !important;
  font-weight:800 !important;
  color:#0f172a !important;
  margin-bottom:18px !important;
}

.section-title span{
  color:#2563eb !important;
}

.section-sub{
  max-width:760px !important;
  margin:auto !important;
  color:#64748b !important;
  line-height:1.9 !important;
  font-size:16px !important;
}

/* LABEL */
.section-label{
  display:inline-block !important;
  padding:10px 20px !important;
  background:#eff6ff !important;
  color:#2563eb !important;
  border-radius:50px !important;
  font-size:13px !important;
  font-weight:700 !important;
  margin-bottom:22px !important;
}

/* BUTTON */
.btn-outline{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;

  padding:16px 36px !important;

 

  border:2px solid #2563eb !important;

  color:#2563eb !important;
  background:#fff !important;

  text-decoration:none !important;
  font-weight:700 !important;

  transition:.4s ease !important;
}



/* RESPONSIVE */
@media(max-width:1100px){

  .services-grid{
    grid-template-columns:repeat(2,1fr) !important;
  }

}

@media(max-width:768px){

  .services-grid{
    grid-template-columns:1fr !important;
  }

  .section-title{
    font-size:38px !important;
  }

  .service-card{
    padding:32px 24px !important;
  }

}




/* =========================================
   ADVANCED WHY CHOOSE US SECTION
========================================= */

.why-grid{
  display:grid !important;
  grid-template-columns:repeat(3,1fr) !important;
  gap:30px !important;
  margin-top:70px !important;
}

/* CARD */
.why-card{
  position:relative !important;
  background:#ffffff !important;

  padding:38px 30px !important;

  border-radius:18px 55px 18px 55px !important;

  border:1.5px solid rgba(37,99,235,0.10) !important;

  overflow:hidden !important;

  transition:all .45s ease !important;

  box-shadow:
  0 10px 35px rgba(15,23,42,0.05),
  0 2px 10px rgba(15,23,42,0.03) !important;
}

/* RIGHT LIGHT EFFECT */
.why-card::before{
  content:"" !important;
  position:absolute !important;

  top:0 !important;
  right:-120% !important;

  width:80% !important;
  height:100% !important;

  background:linear-gradient(
    120deg,
    transparent,
    rgba(37,99,235,0.07),
    rgba(6,182,212,0.14),
    transparent
  ) !important;

  transform:skewX(-25deg) !important;

  transition:1s ease !important;

  z-index:0 !important;
}

/* BOTTOM LINE */
.why-card::after{
  content:"" !important;
  position:absolute !important;
  left:0 !important;
  bottom:0 !important;

  width:0% !important;
  height:5px !important;

  background:linear-gradient(90deg,#2563eb,#06b6d4) !important;

  transition:.45s ease !important;
}

/* HOVER */
.why-card:hover{
  transform:translateY(-14px) scale(1.02) !important;

  border-radius:55px 18px 55px 18px !important;

  box-shadow:
  0 25px 60px rgba(37,99,235,0.16),
  0 8px 25px rgba(15,23,42,0.08) !important;
}

.why-card:hover::before{
  right:120% !important;
}

.why-card:hover::after{
  width:100% !important;
}

/* CONTENT */
.why-card *{
  position:relative !important;
  z-index:2 !important;
}

/* ICON */
.why-icon{
  width:82px !important;
  height:82px !important;

  border-radius:24px 50% 24px 50% !important;

  background:#00B4D8!important;

  display:flex !important;
  align-items:center !important;
  justify-content:center !important;

  margin-bottom:26px !important;

  transition:.45s ease !important;

  box-shadow:0 14px 35px rgba(37,99,235,0.24) !important;
}

.why-icon svg{
  width:36px !important;
  height:36px !important;

  stroke:#fff !important;
  fill:none !important;
  stroke-width:1.7 !important;
}



/* TITLE */
.why-title{
  font-size:24px !important;
  font-weight:600 !important;

  color:#0f172a !important;

  margin-bottom:16px !important;

  transition:.35s ease !important;
}

.why-card:hover .why-title{
  color:#03045E!important;
}

/* DESCRIPTION */
.why-desc{
  color:#64748b !important;
  line-height:1.9 !important;
  font-size:15px !important;
  font-weight:500 !important;

  transition:.35s ease !important;
}

.why-card:hover .why-desc{
  color:#03045E !important;
}

/* SECTION STYLING */
.section-label{
  display:inline-block !important;

  padding:10px 20px !important;

  background:#eff6ff !important;
  color:#2563eb !important;

  border-radius:50px !important;

  font-size:13px !important;
  font-weight:700 !important;

  margin-bottom:22px !important;
}

.section-title{
  font-size:42px !important;
  font-weight:600 !important;

  color:#000 !important;
}

.section-title span{
  color:#2563eb !important;
}

/* RESPONSIVE */
@media(max-width:1100px){

  .why-grid{
    grid-template-columns:repeat(2,1fr) !important;
  }

}

@media(max-width:768px){

  .why-grid{
    grid-template-columns:1fr !important;
  }

  .section-title{
    font-size:38px !important;
  }

  .why-card{
    padding:32px 24px !important;
  }

}


/*  process */

.e2e-services{
  display: grid !important;
  grid-template-columns: repeat(3,320px) !important;
  justify-content: center !important;
  gap: 28px !important;
  margin-top: 70px !important;
  position: relative !important;
}

/* CARD */
.e2e-item{
  position: relative !important;
  background: rgba(255,255,255,.96) !important;
  backdrop-filter: blur(10px) !important;
  border-radius: 26px !important;
  padding: 34px 28px !important;
  overflow: hidden !important;
  transition: .4s ease !important;
  border: 1px solid rgba(0,191,255,.10) !important;
  box-shadow:
    0 12px 30px rgba(0,0,0,.05) !important;
}

/* DIFFERENT CARD HEIGHTS */
.e2e-item:nth-child(1){
  margin-top: 35px !important;
}

.e2e-item:nth-child(2){
  margin-top: 0 !important;
}

.e2e-item:nth-child(3){
  margin-top: 50px !important;
}

.e2e-item:nth-child(4){
  margin-top: -15px !important;
}

.e2e-item:nth-child(5){
  margin-top: 40px !important;
}

.e2e-item:nth-child(6){
  margin-top: 10px !important;
}

.e2e-item:nth-child(7){
  margin-top: 55px !important;
}

.e2e-item:nth-child(8){
  margin-top: 0 !important;
}

.e2e-item:nth-child(9){
  margin-top: 35px !important;
}

/* CREATIVE TOP BORDER */
.e2e-item::before{
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 5px !important;
  background: linear-gradient(
    90deg,
    #2b849d,
    #0072ff,
    #00c6ff
  ) !important;
}

/* SIDE LIGHT */
.e2e-item::after{
  content: "" !important;
  position: absolute !important;
  width: 180px !important;
  height: 180px !important;
  border-radius: 50% !important;
  background: rgba(0,191,255,.06) !important;
  top: -80px !important;
  right: -80px !important;
  transition: .4s ease !important;
}

/* HOVER */
.e2e-item:hover{
  transform: translateY(-10px) scale(1.02) !important;
  border-color: rgba(0,191,255,.22) !important;
  box-shadow:
    0 18px 45px rgba(0,114,255,.14) !important;
}

.e2e-item:hover::after{
  transform: scale(1.2) !important;
}

/* NUMBER */
.e2e-num{
  width: 72px !important;
  height: 72px !important;
  border-radius: 22px !important;
  
  color: #fff !important;
  font-size: 24px !important;
  font-weight: 800 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 24px !important;
  box-shadow:
    0 12px 25px rgba(0,114,255,.20) !important;
  transition: .35s ease !important;
}

/* NUMBER HOVER */
.e2e-item:hover .e2e-num{
  transform: rotate(-6deg) scale(1.08) !important;
}

/* LABEL */
.e2e-label{
  font-size: 24px !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  color: #111 !important;
  position: relative !important;
  z-index: 2 !important;
}

/* SMALL BOTTOM LINE */
.e2e-label::after{
  content: "" !important;
  display: block !important;
  width: 55px !important;
  height: 3px !important;
  margin-top: 16px !important;
  border-radius: 20px !important;
  background: linear-gradient(
    90deg,
    #00c6ff,
    #0072ff
  ) !important;
  transition: .3s ease !important;
}

.e2e-item:hover .e2e-label::after{
  width: 85px !important;
}

/* =========================
   TABLET
========================= */

@media(max-width:1100px){

  .e2e-services{
    grid-template-columns: repeat(2,1fr) !important;
    gap: 22px !important;
  }

  .e2e-item{
    margin-top: 0 !important;
  }

}

/* =========================
   MOBILE
========================= */

@media(max-width:576px){

  .e2e-services{
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    margin-top: 45px !important;
  }

  .e2e-item{
    padding: 28px 22px !important;
    border-radius: 22px !important;
    margin-top: 0 !important;
  }

  .e2e-num{
    width: 62px !important;
    height: 62px !important;
    font-size: 20px !important;
    border-radius: 18px !important;
    margin-bottom: 18px !important;
  }

  .e2e-label{
    font-size: 19px !important;
    line-height: 1.4 !important;
  }

}





/* lets work together  */ 

.work-section{
  padding: 100px 20px;
  background: #ffffff !important;
  overflow: hidden;
  position: relative;
}

/* LIGHT BLUE GLOW */
.work-section::before{
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(0,140,255,0.08);
  border-radius: 50%;
  top: -150px;
  right: -150px;
  filter: blur(80px);
}

/* CONTAINER */
.work-container{
  max-width: 1250px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* BADGE */
.work-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 60px;
  background: #f4f9ff;
  border: 1px solid rgba(0,119,255,0.12);
  color: #0077ff;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 25px;
}


/* TITLE */
.work-title{
  font-size: 42px;
  line-height: 1.1;
  font-weight: 600;
  color: #111111;
  max-width: 750px;
  margin-bottom: 20px;
}

.work-title span{
  color: #0077ff;
}

/* SUBTITLE */
.work-subtitle{
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  max-width: 760px;
  margin-bottom: 70px;
}

/* GRID */
.work-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
  gap: 28px;
}

/* CARD */
.work-card{
  position: relative;
  display: flex;
  gap: 20px;
  padding: 32px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #e7eef7;
  transition: 0.4s ease;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0,0,0,0.05);
}

/* HOVER EFFECT */
.work-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,119,255,0.08),
    transparent
  );
  opacity: 0;
  transition: 0.4s ease;
}

.work-card:hover{
  transform: translateY(-10px);
  border-color: rgba(0,119,255,0.25);
  box-shadow: 0 20px 45px rgba(0,119,255,0.12);
}

.work-card:hover::before{
  opacity: 1;
}

/* ICON */
.icon{
  min-width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,#0099ff,#005eff);
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  box-shadow: 0 12px 25px rgba(0,119,255,0.25);
}

/* TEXT */
.work-card h3{
  font-size: 24px;
  color: #111;
  margin-bottom: 10px;
  font-weight: 600;
}

.work-card p{
  color: #555;
  line-height: 1.7;
  font-size: 15px;
}

/* RESPONSIVE */
@media(max-width:768px){

  .work-title{
    font-size: 40px;
  }

  .work-subtitle{
    font-size: 16px;
  }

  .work-card{
    padding: 25px;
  }

}


/* mildstone */
/* =========================
   MODERN MILESTONE DESIGN
========================= */

.milestone-section{

  background: #ffffff;
  overflow: hidden;
  position: relative;
}

/* WRAPPER */
.milestone-wrapper{
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT */
.milestone-left{
  position: sticky;
  top: 0px;
}

.milestone-tag{
  margin-top: 14px;
  display: inline-block;
  padding: 10px 22px;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: 50px;
  color: #2563eb;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.milestone-heading{
  font-size: 42px;
  line-height: 1.1;
  font-weight: 600;
  color: #000;
  margin-bottom: 28px;
}

.milestone-heading span{
  color: #2563eb;
}

.milestone-text{
  font-size: 17px;
  line-height: 1.9;
  color: #6b7280;
  max-width: 520px;
  margin-bottom: 40px;
}

.milestone-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  border-radius: 14px;
  background: linear-gradient(135deg,#2563eb,#1e40af);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: .4s ease;
  box-shadow: 0 12px 30px rgba(37,99,235,0.25);
}

.milestone-btn:hover{
  transform: translateY(-5px);
}

/* RIGHT */
.milestone-right{
  position: relative;
  padding-left: 70px;
}

/* LINE */
.timeline-line{
  position: absolute;
  left: 20px;
  top: 29px;
  width: 3px;
  height: 68%;
  background: linear-gradient(to bottom,#2563eb,#dbeafe);
  border-radius: 50px;
}

/* CARD */
.timeline-card{
  position: relative;
  margin-bottom: 40px;
}

.timeline-dot{
  position: absolute;
  left: -60px;
  top: 28px;
  width: 22px;
  height: 22px;
  background: #2563eb;
  border-radius: 50%;
  border: 5px solid #fff;
  box-shadow: 0 0 0 6px rgba(37,99,235,0.12);
  z-index: 2;
}

.timeline-content{
  
padding: 13px;
  
  transition: .4s ease;
  margin-left: -18px;
}

.timeline-content:hover{
  transform: translateY(-8px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
}

.timeline-year{
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 14px;
}

.timeline-content h3{
  font-size: 18px;
  color: #000;
  margin-bottom: 16px;
  font-weight: 700;
}

.timeline-content p{
  color: #6b7280;
  line-height: 1.8;
  font-size: 12px;
}

/* RESPONSIVE */
@media(max-width:991px){

  .milestone-wrapper{
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .milestone-left{
    position: relative;
    top: 0;
  }

  .milestone-heading{
    font-size: 42px;
  }

}

@media(max-width:600px){

  .milestone-section{
    padding: 80px 6%;
  }

  .milestone-right{
    padding-left: 50px;
  }

  .timeline-dot{
    left: -40px;
  }

  .timeline-content{
    padding: 28px;
  }

  .milestone-heading{
    font-size: 34px;
  }

}

/* projects */

/* =========================
   GROWTH MASTERY SECTION
========================= */

.growth-mastery{
  padding: 50px;
  background: #ffffff;
  overflow: hidden;
}

.growth-container{
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* LEFT SIDE */

.growth-tag{
  display: inline-block;
  padding: 12px 22px;
  border-radius: 50px;
  background: #eef6ff;
  color: #0077ff;
  font-size: 12 px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.growth-title{
  font-size: 45px;
  line-height: 1.1;
  font-weight: 600;
  color: #111;
  margin-bottom: 25px;
}

.growth-title span{
  color: #00B4D8;
}

.growth-text{
  font-size: 18px;
  line-height: 1.9;
  color: #555;
  max-width: 650px;
  margin-bottom: 50px;
}

/* POINTS */

.growth-points{
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.point-card{
  display: flex;
  gap: 22px;
  padding: 28px;
  background: #fff;
  border: 1px solid #e6edf7;
  border-radius: 24px;
  transition: 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.point-card:hover{
  transform: translateY(-8px);
  border-color: rgba(0,119,255,0.25);
  box-shadow: 0 18px 40px rgba(0,119,255,0.08);
}

.point-icon{
  min-width: 70px;
  height: 70px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,#00a2ff,#005eff);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 12px 25px rgba(0,119,255,0.25);
}

.point-card h3{
  font-size: 24px;
  color: #111;
  margin-bottom: 10px;
  font-weight: 500;
}

.point-card p{
  color: #555;
  line-height: 1.7;
  font-size: 15px;
}

/* RIGHT SIDE */

.growth-right{
  display: flex;
  justify-content: center;
}

.circle-wrap{
  position: relative;
  width: 500px;
  height: 500px;
}

/* CENTER */

.center-circle{
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg,#0099ff,#005eff);
  display: flex;
  align-items: center;
  justify-content: center;
  top: 140px;
  left: 140px;
  box-shadow: 0 25px 60px rgba(0,119,255,0.25);
}

.center-circle span{
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 2px;
}

/* SMALL CIRCLES */

.small{
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #dce9f8;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

.small span{
  color: #111;
  font-size: 18px;
  font-weight: 700;
}

.one{
  top: 0;
  left: 180px;
}

.two{
  bottom: 30px;
  left: 0;
}

.three{
  bottom: 30px;
  right: 0;
}

/* LINES */

.line{
  position: absolute;
  background: linear-gradient(90deg,#00a2ff,#005eff);
  height: 4px;
  border-radius: 10px;
}

.line1{
  width: 120px;
  top: 140px;
  left: 185px;
  transform: rotate(90deg);
}

.line2{
  width: 150px;
  bottom: 149px;
  left: 103px;
  transform: rotate(-28deg);
}

.line3{
  width: 150px;
  bottom: 150px;
  right: 115px;
  transform: rotate(28deg);
}

/* RESPONSIVE */

@media(max-width:991px){

  .growth-container{
    grid-template-columns: 1fr;
  }

  .growth-right{
    margin-top: 40px;
  }

}

@media(max-width:768px){

  .growth-title{
    font-size: 42px;
  }

  .circle-wrap{
    transform: scale(.75);
  }

}




/* home */

.section{
    padding:100px 0;
    background:#fff;
}

.about-home-grid{
    display:grid;
    grid-template-columns:500px 1fr;
    gap:80px;
    align-items:center;
}

/* LEFT CARD */

.tech-card{
    position:relative;
    width:450px;
    height:450px;
    margin:auto;

    border-radius:40px;

    background:#fff;

    border:1px solid #e5e7eb;

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

    overflow:hidden;

    transition:.5s;
}

.tech-card:hover{
    transform:
    translateY(-12px)
    rotateX(6deg)
    rotateY(-6deg);
}

/* Glow */

.tech-card::before{
    content:"";

    position:absolute;

    width:250px;
    height:250px;

    background:
    radial-gradient(
    rgba(59,130,246,.25),
    transparent 70%);

    top:-100px;
    right:-100px;
}

.card-center{
    position:absolute;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    text-align:center;

    z-index:5;
}

.chip-icon{
    width:90px;
    height:90px;

    margin:auto;

    border-radius:24px;

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

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

    font-size:38px;

    color:#fff;

    box-shadow:
    0 15px 35px rgba(37,99,235,.35);
}

.card-center h3{
    margin-top:20px;

    font-size:32px;

    color:#111827;

    font-weight:700;
}

.card-center p{
    color:#64748b;
    margin-top:10px;
}

.location{
    margin-top:14px;
    color:#94a3b8;
    font-size:14px;
}

/* ORBIT TAGS */

.orbital{
    position:absolute;

    inset:0;

    animation:
    rotateOrbit 14s linear infinite;
}

.orbital span{
    position:absolute;

    padding:10px 18px;

    background:#fff;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

    color:#2563eb;

    border:1px solid #dbeafe;

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

.orbital-1 span{
    top:20px;
    left:50%;
    transform:translateX(-50%);
}

.orbital-2{
    animation-duration:18s;
}

.orbital-2 span{
    right:15px;
    top:50%;
}

.orbital-3{
    animation-duration:20s;
}

.orbital-3 span{
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
}

.orbital-4{
    animation-duration:24s;
}

.orbital-4 span{
    left:15px;
    top:50%;
}

@keyframes rotateOrbit{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}


/* marquee tag  */
.marquee-wrapper{
    width:100%;
    overflow:hidden;
    padding:12px 0;
}

.marquee-track{
    display:flex;
    gap:18px;
    width:max-content;
}

/* Dark Blue Row */
.dark-track span{
    white-space:nowrap;
    padding:12px 24px;
    border-radius:10px;
    background:#03045E;
    color:#fff;
    font-weight:600;
    
}

/* Light Blue Row */
.light-track span{
    white-space:nowrap;
    padding:12px 24px;
    border-radius:10px;
    background:#00c6ff;
    color:#fff;
    font-weight:600;
   
}

/* Animation */
.dark-track{
    animation:moveRight 30s linear infinite;
}

.reverse-track{
    animation:moveLeft 35s linear infinite;
}

@keyframes moveRight{
    from{
        transform:translateX(-50%);
    }
    to{
        transform:translateX(0);
    }
}

@keyframes moveLeft{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

@media(max-width:768px){

    .dark-track,
    .reverse-track{
        animation-duration:20s;
    }

    .marquee-track span{
        padding:10px 18px;
        font-size:14px;
    }
}


/* cta section */

/* ======================
   SIMPLE CTA SECTION
====================== */


.cta-inner{
    max-width: 900px !important;
    margin: 0 auto !important;
    text-align: center !important;
    padding: 60px 40px !important;
    background: #ffffff !important;
    border-radius: 20px !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08) !important;
}

.cta-title{
    font-size: 42px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    color: #111827 !important;
    margin-bottom: 20px !important;
}

.cta-sub{
    font-size: 17px !important;
    line-height: 1.8 !important;
    color: #6b7280 !important;
    max-width: 700px !important;
    margin: 0 auto 35px !important;
}

.cta-actions{
    display: flex !important;
    justify-content: center !important;
    gap: 15px !important;
    flex-wrap: wrap !important;
}

.cta-actions .btn{
    padding: 14px 30px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: 0.3s ease !important;
}

.btn-white{
    background: #0077b6 !important;
    color: #fff !important;
}

.btn-white:hover{
    background: #005f8f !important;
    transform: translateY(-3px) !important;
}

.btn-ghost{
    border: 2px solid #0077b6 !important;
    color: #0077b6 !important;
    background: transparent !important;
}

.btn-ghost:hover{
    background: #0077b6 !important;
    color: #fff !important;
    transform: translateY(-3px) !important;
}

/* Responsive */

@media (max-width:768px){

    .cta-section{
        padding: 70px 0 !important;
    }

    .cta-inner{
        padding: 40px 20px !important;
    }

    .cta-title{
        font-size: 32px !important;
    }

    .cta-sub{
        font-size: 15px !important;
    }

    .cta-actions{
        flex-direction: column !important;
    }

    .cta-actions .btn{
        width: 100% !important;
    }
}

/* galery */

/* =========================
   MODERN SWIPE GALLERY
========================= */

.gallery-section{
    padding:80px 0;
    background:#f8fafc;
    overflow:hidden;
}

.gallery-header{
    text-align:center;
    margin-bottom:40px;
}

.gallery-header h2{
    font-size:42px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:10px;
}

.gallery-header p{
    font-size:16px;
    color:#64748b;
    max-width:600px;
    margin:auto;
}

.gallery-slider{
    display:flex;
    gap:24px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    padding:10px 20px 20px;
    scrollbar-width:none;
    -ms-overflow-style:none;
}

.gallery-slider::-webkit-scrollbar{
    display:none;
}

.gallery-item{
    flex:0 0 380px;
    height:450px;
    border-radius:24px;
    overflow:hidden;
    scroll-snap-align:center;
    position:relative;
    background:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s ease;
}

.gallery-item:hover{
    transform:translateY(-8px);
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.6s ease;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

/* Tablet */
@media(max-width:991px){

    .gallery-header h2{
        font-size:34px;
    }

    .gallery-item{
        flex:0 0 300px;
        height:380px;
    }
}

/* Mobile */
@media(max-width:767px){

    .gallery-section{
        padding:60px 0;
    }

    .gallery-header h2{
        font-size:28px;
    }

    .gallery-header p{
        font-size:14px;
    }

    .gallery-slider{
        gap:16px;
        padding-left:15px;
        padding-right:15px;
    }

    .gallery-item{
        flex:0 0 85%;
        height:320px;
        border-radius:18px;
    }
}


/* auto play */


.hero-slider{
    position:relative;
    width:100%;
    overflow:hidden;
}

.slides{
    position:relative;
    width:100%;
    height:550px;
}

.slide{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    opacity:0;
    visibility:hidden;
    transition:all .8s ease;
}

.slide.active{
    opacity:1;
    visibility:visible;
}

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

/* Dark Overlay */
.slide::after{
    content:"";
    position:absolute;
    inset:0;
    
}

/* Dots */
.slider-dots{
    position:absolute;
    left:50%;
    bottom:25px;
    transform:translateX(-50%);
    display:flex;
    gap:12px;
    z-index:10;
}

.dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:rgba(255,255,255,.5);
    cursor:pointer;
    transition:.4s;
}

.dot.active{
    width:10px;
    border-radius:30px;
    background:#fff;
}

/* Tablet */
@media(max-width:991px){

    .slides{
        height:400px;
    }

    .slider-dots{
        bottom:18px;
    }

    .dot{
        width:12px;
        height:12px;
    }

    .dot.active{
        width:32px;
    }
}

/* Mobile */
@media(max-width:576px){

    .slides{
        height:250px;
    }

    .slider-dots{
        gap:8px;
        bottom:12px;
    }

    .dot{
        width:10px;
        height:10px;
    }

    .dot.active{
        width:24px;
    }
}


  /* about home images */

.page-hero{
    position:relative;
    min-height:500px;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.hero-bg-img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

.hero-overlay{
    position:absolute;
    inset:0;
   
    z-index:2;
}

.page-hero .container{
    position:relative;
    z-index:3;
}

.page-hero-content{
    max-width:700px;
    color:#fff;
}

.breadcrumb{
    display:flex;
    gap:10px;
    margin-bottom:20px;
    font-size:14px;
}

.breadcrumb a{
    color:#fff;
    text-decoration:none;
}

.page-hero-title{
    font-size:40px;
    font-weight:700;
    line-height:1.1;
    margin-bottom:20px;
}

.page-hero-title span{
    color:#ff7b00;
}

.page-hero-sub{
    font-size:15px;
    line-height:1.8;
    max-width:600px;
}

/* Tablet */
@media(max-width:991px){

    .page-hero{
        min-height:400px;
    }

    .page-hero-title{
        font-size:42px;
    }
}

/* Mobile */
@media(max-width:576px){

    .page-hero{
        min-height:320px;
        text-align:center;
    }

    .page-hero-content{
        max-width:100%;
    }

    .breadcrumb{
        justify-content:center;
    }

    .page-hero-title{
        font-size:30px;
    }

    .page-hero-sub{
        font-size:15px;
        line-height:1.6;
    }
}

/* who we are */

.why-choose-section{
     
    padding:100px 0 !important;
    position:relative !important;
    overflow:hidden !important;
}

.why-choose-section .container{
    max-width:1300px !important;
    margin:auto !important;
    padding:0 20px !important;
}

.top-label{
    display:table !important;
    margin:0 auto 25px !important;
    padding:10px 20px !important;
    border:1.5px solid #a9d8ff !important;
    border-radius:50px !important;
    background:#f5f8fb !important;
    color:#1f5cff !important;
    font-size:13px !important;
    font-weight:700 !important;
    letter-spacing:3px !important;
    text-transform:uppercase !important;
}

.main-heading{
    text-align:center !important;
    color:#000 !important;
    font-size:42px !important;
    line-height:1.2 !important;
    font-weight:600!important;
    max-width:900px !important;
    margin:0 auto 70px !important;
}

.main-heading span{
    color: #00B4D8;
}

.why-grid{
    display:grid !important;
    grid-template-columns:1fr 420px 1fr !important;
    gap:60px !important;
    align-items:center !important;
}

.features-column{
    display:flex !important;
    flex-direction:column !important;
    gap:70px !important;
}

.feature-box{
    text-align:center !important;
}

.feature-box .icon{
    width:80px !important;
    height:80px !important;
    margin:0 auto 25px !important;
    border:2px solid #005eff !important;
    border-radius:50% !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    color:#f4c247 !important;
    font-size:35px !important;
}

.feature-box h3{
    color:#000 !important;
    font-size:24px !important;
    margin-bottom:18px !important;
    font-weight:600 !important;
}

.feature-box p{
    color:#64748b  !important;
    line-height:1.8 !important;
    font-size:15px !important;
    max-width:340px !important;
    margin:auto !important;
    font-weight: 500;
}

.center-image{
    position:relative !important;
}

.center-image img{
    width:100% !important;
    height:650px !important;
    object-fit:cover !important;
    border-radius:35px !important;
    display:block !important;
    box-shadow:0 25px 60px rgba(0,0,0,.35) !important;
}

/* Tablet */
@media(max-width:991px){

    .why-grid{
        grid-template-columns:1fr !important;
        gap:40px !important;
    }

    .center-image{
        order:-1 !important;
    }

    .main-heading{
        font-size:42px !important;
    }

    .center-image img{
        height:500px !important;
    }
}

/* Mobile */
@media(max-width:576px){

    .why-choose-section{
        padding:70px 0 !important;
    }

    .main-heading{
        font-size:32px !important;
        margin-bottom:40px !important;
    }

    .feature-box h3{
        font-size:22px !important;
    }

    .feature-box p{
        font-size:15px !important;
    }

    .center-image img{
        height:400px !important;
        border-radius:25px !important;
    }
}



  /* images service  important */


.service-card-large{
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 40px 30px;
    min-height: 380px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

   
}

/* Background Image */
.service-card-large img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 0.60; /* image opacity */
    z-index: 1;
}

/* Dark Overlay */
.service-card-large::before{
    content: "";
    position: absolute;
    inset: 0;

  
    z-index: 2;
}

/* Content Above Image */
.service-card-large > *:not(img){
    position: relative;
    z-index: 3;
}

.service-card-large h3{
    color: #fff;
    margin: 15px 0 10px;
}

.service-card-large p{
    color:#000 !important;
    font-weight: 500  !important;
    font-size: 15px !important;
}

.service-card-large .tag{
    background: rgba(255,255,255,0.15);
    color: #000;
    backdrop-filter: blur(10px);
    
}


/* process */
/* =========================
   WORKFLOW SECTION
========================= */

.workflow-section{
    background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
    padding:35px 0;
    overflow:hidden;
    position:relative;
     background: url(../images/ChatGPT\ Image\ Jun\ 6\,\ 2026\,\ 10_20_27\ AM.png);
}

.workflow-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:radial-gradient(circle,rgba(37,99,235,.08),transparent 70%);
    top:-150px;
    left:-150px;
    border-radius:50%;
}

.workflow-section::after{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:radial-gradient(circle,rgba(59,130,246,.08),transparent 70%);
    bottom:-150px;
    right:-150px;
    border-radius:50%;
}

/* =========================
   HEADING
========================= */

.workflow-heading{
    text-align:center;
    margin-bottom:100px;
}

.workflow-heading span{
    display:inline-block;
    color:#2563eb;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:15px;
    position:relative;
}

.workflow-heading span::before,
.workflow-heading span::after{
    content:'';
    width:50px;
    height:2px;
    background:#2563eb;
    position:absolute;
    top:50%;
}

.workflow-heading span::before{
    right:100%;
    margin-right:15px;
}

.workflow-heading span::after{
    left:100%;
    margin-left:15px;
}

.workflow-heading h2{
    color:#000;
    font-size:42px;
    font-weight:600;
    margin:0;
}

.workflow-heading h3{
    color:#005f8f;
    font-size:42px;
    font-weight:600;
    margin-top:15px;
}

/* =========================
   WRAPPER
========================= */

.workflow-wrapper{
    max-width:1400px;
    height:626px;
    margin:auto;
    position:relative;
}

/* =========================
   STEP CARD
========================= */

.step{
    position:absolute;
    width:320px;
    text-align:center;
}

.circle{
    width:90px;
    height:90px;
    border-radius:50%;
    margin:auto;
    background:#03045E;
    color:#fff;
    font-size:30px;
    font-weight:600;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:
    0 10px 30px rgba(37,99,235,.25),
    0 0 0 10px rgba(37,99,235,.08);
    animation:float 4s ease-in-out infinite;
    position:relative;
}

.circle::before{
    content:'';
    position:absolute;
    inset:-10px;
    border:1px solid rgba(37,99,235,.25);
    border-radius:50%;
}

.pink{
    background:#03045E;
}

.step h4{
    color:#111827;
    font-size:24px;
    font-weight:600;
    margin:25px 0 15px;
}

.step p{
    color:#4b5563;
    line-height:1.8;
    font-size:16px;
}

/* =========================
   POSITIONS
========================= */

.step1{
    left:0;
    top:250px;
}

.step2{
    left:50%;
    top:20px;
    transform:translateX(-50%);
}

.step3{
    right:0;
    top:250px;
}

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

/* =========================
   ARROWS
========================= */

.arrow{
    position:absolute;
    fill:none;
    stroke:#03045E;
    stroke-width:3;
    opacity:1;
}

.arrow path{
    fill:none;
    stroke:#03045E;
    stroke-width:3;
    stroke-linecap:round;
    stroke-dasharray:600;
    stroke-dashoffset:600;
    animation:draw 5s linear infinite;
}

/* 01 → 02 */
.arrow1{
    width:320px;
    left:230px;
    top:170px;
}

/* 02 → 03 */
.arrow2{
    width:320px;
    right:230px;
    top:170px;
}

/* 03 → 04 */
.arrow3{
    width:320px;
    left:50%;
    transform:translateX(-50%);
    top:350px;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes draw{
    0%{
        stroke-dashoffset:600;
    }
    100%{
        stroke-dashoffset:0;
    }
}

@keyframes float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-15px);
    }
}

/* =========================
   HOVER EFFECT
========================= */

.step:hover .circle{
    transform:scale(1.08);
    transition:.4s;
}

.step:hover h4{
    color:#2563eb;
    transition:.4s;
}

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

@media(max-width:1200px){

    .workflow-wrapper{
        height:auto;
    }

    .step{
        position:relative;
        width:100%;
        max-width:500px;
        margin:60px auto;
        left:auto !important;
        right:auto !important;
        top:auto !important;
        bottom:auto !important;
        transform:none !important;
    }

    .arrow{
        display:none;
    }
}

@media(max-width:768px){

    .workflow-section{
        padding:80px 20px;
    }

    .workflow-heading h2{
        font-size:40px;
    }

    .workflow-heading h3{
        font-size:30px;
    }

    .circle{
        width:90px;
        height:90px;
        font-size:38px;
    }

    .step h4{
        font-size:24px;
    }

    .step p{
        font-size:15px;
    }
}





/* add new hero  */


/* ==========================
   SMART TECH SECTION
========================== */

.smart-tech-section{
    padding-top: 50px !important;   /* Top Padding */
    padding-bottom: 20px !important;
}

.smart-tech-heading{
    max-width: 750px !important;
    margin: 0 auto 50px !important;
    text-align: center !important;
}

.smart-tech-heading span{
    display: inline-block !important;
    color: #0d47a1 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    margin-bottom: 12px !important;
}

.smart-tech-heading h2{
    font-size: 42px !important;
    font-weight: 600 !important;
    color: #000!important;
    line-height: 1.2 !important;
    margin: 0 0 18px !important;
}

.smart-tech-heading p{
    margin: 0 !important;
    font-size: 16px !important;
    line-height: 1.8 !important;
    color: #6b7280 !important;
}

/* ==========================
   CARDS GRID
========================== */

.smart-tech-grid{
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
}

/* ==========================
   SINGLE CARD
========================== */

.smart-tech-card{
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px 50px !important;
    padding: 40px 30px !important;
    text-align: center !important;
    transition: all .35s ease !important;
    box-shadow: 0 8px 25px rgba(0,0,0,.05) !important;
    position: relative !important;
    overflow: hidden !important;
}

.smart-tech-card::before{
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 4px !important;
    background: linear-gradient(90deg,#0d47a1,#1e88e5) !important;
    transform: scaleX(0) !important;
    transition: .35s ease !important;
}

.smart-tech-card:hover{
    transform: translateY(-8px) !important;
    box-shadow: 0 18px 40px rgba(0,0,0,.12) !important;
}

.smart-tech-card:hover::before{
    transform: scaleX(1) !important;
}

/* ==========================
   ICON
========================== */

.smart-tech-icon{
    width: 75px !important;
    height: 75px !important;
    margin: 0 auto 22px !important;
    border-radius: 50% !important;
    background: #eef5ff !important;
    color: #0d47a1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 34px !important;
    transition: all .35s ease !important;
}

.smart-tech-card:hover .smart-tech-icon{
    background: #0d47a1 !important;
    color: #ffffff !important;
    transform: scale(1.08) rotate(-8deg) !important;
}

/* ==========================
   CARD TEXT
========================== */

.smart-tech-card h3{
    font-size: 24px !important;
    font-weight: 600 !important;
    color: #0b1c39 !important;
    margin: 0 0 15px !important;
    line-height: 1.3 !important;
}

.smart-tech-card p{
    margin: 0 !important;
    color: #666 !important;
    font-size:18px !important;
    line-height: 1.8 !important;
}

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

@media (max-width: 768px){

    .smart-tech-section{
        padding-top: 20px !important;
        padding-bottom: 10px !important;
    }

    .smart-tech-heading{
        margin-bottom: 35px !important;
    }

    .smart-tech-heading h2{
        font-size: 30px !important;
    }

    .smart-tech-heading p{
        font-size: 15px !important;
    }

    .smart-tech-grid{
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .smart-tech-card{
        padding: 30px 22px !important;
    }

    .smart-tech-card h3{
        font-size: 22px !important;
    }

    .smart-tech-icon{
        width: 65px !important;
        height: 65px !important;
        font-size: 30px !important;
    }
}