/* ============================================================
   OWN SOFTWARE — Main Stylesheet
   Light + Blue Professional Theme
   ============================================================ */

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

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

:root {
  --brand: #1a5fd4;
  --brand-dark: #0f3e99;
  --brand-light: #e8f0fd;
  --brand-mid: #3a7be0;
  --accent: #f97316;
  --accent-light: #fff4ed;

  --bg: #ffffff;
  --bg-alt: #f5f7fb;
  --bg-dark: #0d1b3e;

  --text: #0f172a;
  --text-2: #475569;
  --text-3: #94a3b8;

  --border: #e2e8f0;
  --border-dark: #cbd5e1;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(26, 95, 212, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 40px rgba(26, 95, 212, 0.14), 0 4px 16px rgba(0, 0, 0, 0.06);

  --font-head: 'Sora', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --transition: 0.22s ease;
  --max-w: 1200px;
}

html {
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ── UTILITIES ────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

.text-center {
  text-align: center;
}

.mt-40 {
  margin-top: 40px;
}

.bg-alt {
  background: var(--bg-alt);
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand);
  color: #fff;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 14px rgba(26, 95, 212, 0.3);
}

.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(26, 95, 212, 0.38);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--brand);
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--brand);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.btn-outline:hover {
  background: var(--brand-light);
  transform: translateY(-2px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--brand);
  padding: 13px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

/* ── TOP BAR ──────────────────────────────────────────────── */
.top-bar {
  background: var(--brand-dark);
  padding: 8px 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.top-bar .container {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition);
}

.top-bar a:hover {
  color: #fff;
}

.top-bar span,
.top-bar a {
  font-size: 12px;
}

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(26, 95, 212, 0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}

.logo:hover .logo-icon {
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(26, 95, 212, 0.45);
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  line-height: 1;
}

.logo-wordmark {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1;
}

.logo-own {
  color: #0d1b3e;
}

.logo-software {
  color: #f97316;
}

.logo-solutions {
  color: #0d1b3e;
}

.logo-tagline {
  font-family: var(--font-body);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #0d1b3e;
  text-transform: uppercase;
  opacity: 0.55;
  text-align: center;
  width: 100%;
}

/* Footer logo variants */
.footer-logo-link {
  margin-bottom: 24px;
  display: inline-flex;
}

.logo-wordmark-footer {
  font-size: 22px;
}

.logo-own-footer {
  color: #ffffff;
}

.logo-solutions-footer {
  color: #ffffff;
}

.logo-tagline-footer {
  color: rgba(255, 255, 255, 0.45);
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand);
  background: var(--brand-light);
}

.btn-nav-cta {
  background: var(--brand);
  color: #fff !important;
  padding: 9px 22px;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  font-weight: 600;
  transition: background var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 12px rgba(26, 95, 212, 0.28);
}

.btn-nav-cta:hover {
  background: var(--brand-dark) !important;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--text);
}

/* ── SECTION COMMON ───────────────────────────────────────── */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  background: var(--brand-light);
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
  border: 1px solid rgba(26, 95, 212, 0.15);
}

.section-title {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.6px;
  line-height: 1.2;
}

.section-sub {
  font-size: 16px;
  color: var(--text-2);
  margin-top: 12px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #f0f5ff 0%, #e8f0fd 50%, #f5f7ff 100%);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(26, 95, 212, 0.06) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(58, 123, 224, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Decorative grid dots */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26, 95, 212, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  opacity: 0.6;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--brand);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 24px;
  margin-bottom: 28px;
  border: 1px solid rgba(26, 95, 212, 0.2);
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.3px;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.1);
  }
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--text);
  letter-spacing: -1.2px;
  margin-bottom: 22px;
}

.hero h1 em {
  color: var(--brand);
  font-style: normal;
  position: relative;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-mid));
  border-radius: 2px;
  opacity: 0.35;
}

.hero p {
  font-size: 17px;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(26, 95, 212, 0.12);
  flex-wrap: wrap;
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--brand);
  display: block;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--text-2);
  margin-top: 2px;
}

/* ── CLIENTS BAR ──────────────────────────────────────────── */
.clients-bar {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
  overflow: hidden;
}

.clients-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.client-logos {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.client-logo {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.5;
  transition: opacity var(--transition);
}

.client-logo:hover {
  opacity: 0.85;
}

/* ── STATS BAR ────────────────────────────────────────────── */
.stats-bar {
  background: var(--brand);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  display: block;
  letter-spacing: -1px;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 6px;
  font-weight: 500;
}

/* ── SERVICES ─────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.service-card:hover {
  border-color: rgba(26, 95, 212, 0.25);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--brand-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition);
}

.service-card:hover .service-icon {
  background: #dbeafe;
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--brand);
  font-weight: 600;
  margin-top: auto;
  padding-top: 18px;
  transition: gap var(--transition);
}

.service-card:hover .service-link {
  gap: 8px;
}

/* ── ABOUT STRIP ──────────────────────────────────────────── */
.about-strip {
  background: var(--bg-dark);
  padding: 80px 0;
  overflow: hidden;
}

.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-strip h2 {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.6px;
  margin-bottom: 18px;
}

.about-strip h2 span {
  color: #5b9dff;
}

.about-strip p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
  margin-bottom: 28px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.about-feature-icon {
  width: 30px;
  height: 30px;
  background: rgba(26, 95, 212, 0.35);
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-metric {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}

.about-metric-num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: #5b9dff;
  display: block;
}

.about-metric-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 6px;
}

/* ── PORTFOLIO ────────────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.portfolio-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.portfolio-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.portfolio-thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  position: relative;
  overflow: hidden;
}

.portfolio-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.5) 0%, transparent 60%);
}

.portfolio-info {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  background: var(--brand-light);
  color: var(--brand);
  padding: 3px 10px;
  border-radius: 12px;
  letter-spacing: 0.3px;
}

.portfolio-info h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-top: 10px;
  margin-bottom: 4px;
}

.portfolio-info p {
  font-size: 13px;
  color: var(--text-2);
}

/* ── PROCESS ──────────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 52px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-light), var(--border), var(--brand-light), transparent);
  z-index: 0;
}

.process-step {
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-num {
  width: 52px;
  height: 52px;
  background: #fff;
  border: 2px solid var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--brand);
  box-shadow: 0 0 0 6px var(--brand-light);
}

.process-step h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ── TECHNOLOGIES ─────────────────────────────────────────── */
.tech-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tech-tab {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--text-2);
  background: #fff;
  cursor: pointer;
  transition: all var(--transition);
}

.tech-tab.active,
.tech-tab:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.tech-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 12px;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: default;
}

.tech-item:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.tech-item-icon {
  font-size: 26px;
  margin-bottom: 8px;
}

.tech-item-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 80px;
  line-height: 1;
  font-family: Georgia, serif;
  color: var(--brand-light);
  font-weight: 700;
  pointer-events: none;
}

.testi-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.stars {
  color: #f59e0b;
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testi-text {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testi-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.testi-role {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 1px;
}

/* ── LEADERSHIP ───────────────────────────────────────────── */
.leadership-section {
  background: radial-gradient(circle at top left, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.leadership-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(13, 27, 62, 0.05), transparent);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 1024px) {
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .leadership-grid {
    grid-template-columns: 1fr;
  }
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 1024px) {
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.leadership-card {
  text-align: center;
  transition: all 0.4s ease;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.leader-arch-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 200px 200px 0 0;
  border: 1px solid var(--accent);
  padding: 8px;
  background: transparent;
  margin-bottom: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.leader-arch-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 20px rgba(249, 115, 22, 0.05);
  pointer-events: none;
}

.leadership-card:hover .leader-arch-wrap {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(13, 27, 62, 0.08);
  border-color: var(--brand);
}

.leader-photo {
  width: 100%;
  height: 100%;
  border-radius: 190px 190px 0 0;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.leadership-card:hover .leader-photo {
  transform: scale(1.04);
}

.leader-name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.leader-role {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.leader-bio {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 260px;
  margin: 0 auto 20px;
}

.leader-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: auto;
}

.social-link {
  color: var(--text-3);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
  padding: 4px 8px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
}

.social-link:hover {
  color: var(--brand);
  border-color: var(--brand);
  background: var(--brand-light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

@media (max-width: 1280px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.team-photo {
  background: var(--bg-alt);
}

.team-avatar {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  box-shadow: none;
  border: none;
  background: var(--bg-alt);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  padding: 16px 16px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.team-role-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.team-role-dev {
  background: var(--brand-light);
  color: var(--brand);
  border: 1px solid rgba(26, 95, 212, 0.15);
}

.team-role-qa {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid rgba(21, 128, 61, 0.15);
}

.team-info h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}

.team-info p {
  font-size: 12px;
  color: var(--text-2);
  margin-bottom: 12px;
}

.team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  margin-top: auto;
}

.team-skills span {
  font-size: 10px;
  font-weight: 600;
  background: var(--bg-alt);
  color: var(--text-2);
  padding: 3px 8px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 60%, #0a2d6e 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}

.cta-banner h2 {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.6px;
  position: relative;
}

.cta-banner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  position: relative;
}

/* ── CONTACT PAGE ─────────────────────────────────────────── */
.contact-hero {
  background: linear-gradient(135deg, #f0f5ff, #e8f0fd);
  padding: 64px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.contact-hero h1 {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}

.contact-hero p {
  font-size: 16px;
  color: var(--text-2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--brand-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.contact-detail-value {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  margin-top: 3px;
}

/* FORM */
.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(26, 95, 212, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group .error {
  color: #ef4444;
  font-size: 12px;
  margin-top: 5px;
}

.form-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #16a34a;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

/* ── ABOUT PAGE ───────────────────────────────────────────── */
.about-hero {
  background: linear-gradient(135deg, #f0f5ff, #e8f0fd);
  padding: 80px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.about-hero h1 {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.about-hero p {
  font-size: 17px;
  color: var(--text-2);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Unified team styles handled above */

/* ── SERVICES PAGE ────────────────────────────────────────── */
.services-hero {
  background: linear-gradient(135deg, #f0f5ff, #e8f0fd);
  padding: 80px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.services-hero h1 {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.services-hero p {
  font-size: 17px;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-detail-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-detail-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-detail-icon {
  width: 60px;
  height: 60px;
  background: var(--brand-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.service-detail-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.service-detail-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-2);
}

.service-feature::before {
  content: '✓';
  color: #22c55e;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

/* ── PORTFOLIO PAGE ───────────────────────────────────────── */
.portfolio-hero {
  background: linear-gradient(135deg, #f0f5ff, #e8f0fd);
  padding: 80px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.portfolio-hero h1 {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.portfolio-hero p {
  font-size: 17px;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto;
}

.portfolio-filter {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--text-2);
  background: #fff;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.portfolio-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-full-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.portfolio-full-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.portfolio-full-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.portfolio-full-body {
  padding: 24px;
}

.portfolio-full-body h4 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin: 10px 0 8px;
}

.portfolio-full-body p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 16px;
}

.portfolio-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tech-pill {
  font-size: 11px;
  font-weight: 600;
  background: var(--bg-alt);
  color: var(--text-2);
  padding: 4px 10px;
  border-radius: 10px;
  border: 1px solid var(--border);
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  padding: 72px 0 32px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.footer-logo span {
  color: #5b9dff;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: background var(--transition), color var(--transition);
}

.footer-social a:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.footer-col h5 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: #5b9dff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: #5b9dff;
}

/* ── PAGE HERO (reusable) ─────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #f0f5ff, #e8f0fd);
  padding: 72px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}

.page-hero h1 span {
  color: var(--brand);
}

.page-hero p {
  font-size: 16px;
  color: var(--text-2);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
}

.page-breadcrumb {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 16px;
}

.page-breadcrumb a {
  color: var(--brand);
}

/* ── BLOG ─────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.blog-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
}

.blog-body {
  padding: 22px;
}

.blog-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 10px;
}

.blog-cat {
  background: var(--brand-light);
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 10px;
}

.blog-body h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 8px;
}

.blog-body p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-read-more {
  font-size: 13px;
  color: var(--brand);
  font-weight: 600;
}

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

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

  .portfolio-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-strip-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .tech-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .process-grid::before {
    display: none;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* MyPG featured card */
  .mypg-featured-inner {
    grid-template-columns: 1fr !important;
  }
}

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

  .nav-links {
    display: none;
  }

  .btn-nav-cta {
    display: none;
  }

  .hamburger {
    display: block;
  }

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

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-full-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 32px;
  }

  .section-title {
    font-size: 26px;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ── FUTURISTIC ANIMATIONS & LOADER ───────────────────────── */
:root {
  --neon-blue: #00f2ff;
  --neon-purple: #bc13fe;
  --neon-glow: 0 0 15px rgba(0, 242, 255, 0.4);
}

/* PRELOADER */
.preloader-wrap {
  position: fixed;
  inset: 0;
  background: #0d1b3e;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s;
}

.preloader-wrap.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  position: relative;
  text-align: center;
}

.loader-logo {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
}

.loader-logo span { color: var(--neon-blue); }

.loader-logo::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 242, 255, 0.2), transparent);
  animation: scan 2s linear infinite;
}

.loader-bar-wrap {
  width: 240px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
  margin: 0 auto;
}

.loader-bar {
  width: 0%;
  height: 100%;
  background: var(--neon-blue);
  box-shadow: var(--neon-glow);
  transition: width 0.4s ease;
}

.loader-pct {
  font-family: var(--font-head);
  font-size: 12px;
  color: var(--neon-blue);
  margin-top: 10px;
  font-weight: 600;
  letter-spacing: 1px;
}

@keyframes scan {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* REVEAL ON SCROLL */
.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  filter: blur(5px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), 
              transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
              filter 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* STAGGERED GRID REVEAL */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-stagger.active > * {
  opacity: 1;
  transform: translateY(0);
}

/* Dynamic delays for grid items */
.reveal-stagger.active > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.active > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger.active > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.active > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-stagger.active > *:nth-child(5) { transition-delay: 0.5s; }

/* HOVER EFFECTS */
.service-card, .team-card, .leadership-card, .portfolio-card {
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
              box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
              border-color 0.4s ease !important;
}

.service-card:hover, .team-card:hover, .leadership-card:hover, .portfolio-card:hover, .testi-card:hover, .blog-card:hover {
  transform: translateY(-10px) scale(1.02) !important;
  border-color: var(--neon-blue) !important;
  box-shadow: 0 10px 30px rgba(0, 242, 255, 0.15) !important;
}

.btn-primary:hover {
  box-shadow: 0 0 20px rgba(26, 95, 212, 0.4);
  animation: glitch-flicker 0.3s linear infinite alternate;
}

@keyframes glitch-flicker {
  0% { opacity: 0.9; transform: skewX(0deg); }
  50% { opacity: 1; transform: skewX(1deg); }
  100% { opacity: 0.9; transform: skewX(-1deg); }
}

/* ==========================================================================
   CAREERS PAGE (THEME ALIGNED)
   ========================================================================== */

.job-card-new {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.job-card-new:hover {
    border-color: var(--brand);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.job-type-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--brand-light);
    color: var(--brand);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    margin-bottom: 16px;
    align-self: flex-start;
}

.job-card-new h3 {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 12px 0;
}

.job-card-new p {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.7;
    margin: 0 0 24px 0;
}

.job-meta-new {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-3);
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.btn-apply-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: var(--brand);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius-md);
    transition: background var(--transition);
    margin-top: 20px;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-apply-new:hover {
    background: #154fb1;
    color: #fff;
}