
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,600;0,9..40,800;1,9..40,400&display=swap');

:root {
  --blue: #1a56db;
  --blue-dark: #0d3baf;
  --blue-light: #eff4ff;
  --navy: #0d1b3e;
  --text: #334155;
  --muted: #64748b;
  --border: #e2e8f8;
  --white: #ffffff;
  --bg: #f5f8ff;
  --primary: #1a56db;
  --primary-dark: #0f3a8e;
  --accent: #f5a623;
  --accent-light: #ffedc2;
  --dark: #0d1117;
  --dark-2: #161b22;
  --text: #2d3748;
  --text-light: #64748b;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-blue: #eef4ff;
  --border: #e2e8f0;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1290px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

/* modal css */
/* ── MODAL BASE ── */
.algo-modal {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
}

/* Top accent gradient bar */
.algo-modal-bar {
  height: 4px;
  background: linear-gradient(90deg, #1a56db 0%, #3b82f6 50%, #f5a623 100%);
}

/* ── HEADER ── */
.algo-modal-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px 16px;
  border-bottom: 1px solid #f1f5f9;
}

.algo-modal-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1a56db, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(26, 86, 219, 0.3);
}

.algo-modal-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0d1b3e;
  margin: 0 0 2px;
  letter-spacing: -0.2px;
}

.algo-modal-sub {
  font-size: 0.78rem;
  color: #64748b;
  margin: 0;
}

.algo-modal-close {
  margin-left: auto;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #64748b;
  transition: all 0.2s;
  flex-shrink: 0;
}
.algo-modal-close:hover {
  background: #fee2e2;
  border-color: #fca5a5;
  color: #dc2626;
}

/* ── TRUST STRIP ── */
.algo-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: #eff6ff;
  padding: 10px 24px;
  border-bottom: 1px solid #dbeafe;
  flex-wrap: wrap;
}
.algo-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #1e40af;
}

/* ── BODY ── */
.algo-modal-body {
  padding: 20px 24px 24px;
  background: #fff;
}

/* ── FORM ROWS ── */
.algo-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.algo-field-group {
  margin-bottom: 14px;
  position: relative;
}

/* ── LABELS ── */
.algo-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}
.algo-req {
  color: #ef4444;
  font-size: 0.85rem;
}
.algo-optional {
  color: #94a3b8;
  font-weight: 500;
  font-size: 0.74rem;
}

/* ── INPUTS ── */
.algo-input {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-family: inherit;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  color: #0d1b3e;
  background: #f8fafc;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
.algo-input:focus {
  border-color: #1a56db;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}
.algo-input::placeholder {
  color: #94a3b8;
}
.algo-textarea {
  resize: none;
  min-height: 80px;
  line-height: 1.6;
}

/* Phone prefix */
.algo-phone-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.algo-phone-prefix {
  position: absolute;
  left: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
}
.algo-input-phone {
  padding-left: 70px;
}

/* ── SELECT ── */
.algo-select-wrap {
  position: relative;
}
.algo-select {
  width: 100%;
  padding: 10px 36px 10px 14px;
  font-size: 0.88rem;
  font-family: inherit;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  color: #0d1b3e;
  background: #f8fafc;
  outline: none;
  appearance: none;
  cursor: pointer;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
.algo-select:focus {
  border-color: #1a56db;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}
.algo-select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.algo-select option {
  color: #0d1b3e;
}
.algo-select optgroup {
  color: #94a3b8;
  font-size: 0.78rem;
}

/* ── VALIDATION ── */
.algo-invalid {
  font-size: 0.74rem;
  color: #dc2626;
  margin-top: 4px;
  display: none;
}
.algo-field-group.has-error .algo-input,
.algo-field-group.has-error .algo-select {
  border-color: #fca5a5;
  background: #fff5f5;
}
.algo-field-group.has-error .algo-invalid {
  display: block;
}

/* ── PRIVACY ── */
.algo-privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.78rem;
  color: #64748b;
  margin-bottom: 16px;
  cursor: pointer;
  user-select: none;
  line-height: 1.5;
}
.algo-privacy input {
  display: none;
}
.algo-checkmark {
  width: 16px;
  height: 16px;
  border: 1.5px solid #cbd5e1;
  border-radius: 4px;
  background: #f8fafc;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.algo-privacy input:checked + .algo-checkmark {
  background: #1a56db;
  border-color: #1a56db;
}
.algo-privacy input:checked + .algo-checkmark::after {
  content: "";
  display: block;
  width: 9px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translate(0px, -1px);
}
.algo-privacy a {
  color: #1a56db;
  font-weight: 600;
}

/* ── SUBMIT BUTTON ── */
.algo-submit-btn {
  width: 100%;
  padding: 13px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  background: linear-gradient(135deg, #1a56db 0%, #3b82f6 100%);
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 20px rgba(26, 86, 219, 0.35);
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.algo-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(26, 86, 219, 0.45);
}
.algo-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
#submitBtnText,
#submitBtnLoader {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Spinner */
.algo-spinner {
  animation: algoSpin 0.8s linear infinite;
}
@keyframes algoSpin {
  to {
    transform: rotate(360deg);
  }
}

/* ── SUCCESS STATE ── */
.algo-success {
  text-align: center;
  padding: 24px 16px;
  animation: algoFadeIn 0.4s ease;
}
.algo-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f0fdf4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  border: 2px solid #bbf7d0;
}
.algo-success h6 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0d1b3e;
  margin-bottom: 6px;
}
.algo-success p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
}
@keyframes algoFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 576px) {
  .algo-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .algo-modal-body {
    padding: 16px 16px 20px;
  }
  .algo-modal-header {
    padding: 16px 16px 14px;
  }
  .algo-trust-strip {
    gap: 12px;
    padding: 8px 16px;
  }
  .modal-lg {
    max-width: 95vw !important;
  }
}

/* NAVBAR */
nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 0;
  height: 66px;
}

.nav-container {
  max-width: 1290px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 48px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-text {
  line-height: 1.15;
}

.nav-logo-text .name {
  font-size: 17px;
  font-weight: 800;
  color: #1a56db;
  letter-spacing: -0.3px;
}

.nav-logo-text .sub {
  font-size: 9px;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 2px;
  justify-content: center;
}

.nav-item {
  position: relative;
}

.nav-links a,
.nav-item > a {
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  border-radius: 7px;
  white-space: nowrap;
  transition:
    background 0.18s,
    color 0.18s;
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links a:hover,
.nav-item > a:hover {
  background: #eff4ff;
  color: #1a56db;
}

.dropdown-arrow {
  width: 10px;
  height: 10px;
  transition: transform 0.25s;
}

.nav-item:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* NAV ITEM FIX */
.nav-item {
  position: relative;
}

/* DROPDOWN MENU FIX */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  /* gap fix */
  left: 0;

  background: #ffffff;
  min-width: 240px;
  border-radius: 12px;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.06);

  padding: 8px 0;
  border: 1px solid #e8ecf4;

  display: block;
  /* 🔥 important */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  transition: all 0.25s ease;
  z-index: 999;
}

/* SHOW DROPDOWN (HOVER + STABLE) */
.nav-item:hover .dropdown-menu,
.dropdown-menu:hover,
.nav-item.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ARROW ROTATION */
.nav-item:hover .dropdown-arrow,
.nav-item.active .dropdown-arrow {
  transform: rotate(180deg);
}

/* HOVER GAP FIX (IMPORTANT 🔥) */
.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 15px;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
  border-radius: 0;
  transition:
    background 0.15s,
    color 0.15s;
}

.dropdown-menu a:hover {
  background: #eff4ff;
  color: #1a56db;
}

.dropdown-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.dropdown-icon.di-blue {
  background: linear-gradient(135deg, #eff4ff, #dbeafe);
}

.dropdown-icon.di-green {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
}

.dropdown-icon.di-amber {
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
}

.dropdown-icon.di-purple {
  background: linear-gradient(135deg, #f5f3ff, #ede9fe);
}

.dd-text {
  line-height: 1.3;
}

.dd-text span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: #94a3b8;
  margin-top: 2px;
}

.dropdown-divider {
  height: 1px;
  background: #f1f5f9;
  margin: 6px 14px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

.btn-call {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 700;
  background: #1a56db;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-call:hover {
  background: #0d3baf;
}

.btn-callback {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 700;
  background: #1a56db;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-callback:hover {
  background: #15803d;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #1e293b;
  border-radius: 3px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-overlay.active {
  opacity: 1;
}

/* HERO */
.hero-swiper-section {
  width: 100%;
  background: #050d1a;
  overflow: hidden;
  position: relative;
  font-family: 'DM Sans', sans-serif;
}

/* Progress bar */
.prog {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  background: #1a56db;
  z-index: 10;
  border-radius: 0 2px 2px 0;
  width: 0;
  transition: width 0.08s linear;
}

/* Track */
.hero-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.77, 0, 0.18, 1);
}

/* Slide */
.hero-slide {
  min-width: 100%;
  min-height: 520px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 72px 0 96px;
}

/* Background image layer */
.hero-sbg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* Content */
.hero-sc {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

/* Eyebrow */
.hero-ey {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #facc15;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s 0.1s, transform 0.45s 0.1s;
}

.hero-eyd {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #facc15;
}

/* Heading */
.hero-slide h1 {
  font-size: clamp(26px, 4.2vw, 40px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s 0.22s, transform 0.5s 0.22s;
}

.hero-slide h1 em {
  font-style: normal;
  color: #facc15;
}

/* Description */
.hero-slide p {
  font-size: 15px;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s 0.34s, transform 0.45s 0.34s;
}

/* Buttons row */
.hero-swiper-section .hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: start !important;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s 0.44s, transform 0.45s 0.44s;
}

/* Active slide — animate in */
.hero-slide.act .hero-ey,
.hero-slide.act h1,
.hero-slide.act p,
.hero-slide.act .hero-btns {
  opacity: 1;
  transform: translateY(0);
}

/* Ghost button */
.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.2px;
  backdrop-filter: blur(8px);
  transition: all 0.2s;
}

.btn-hero-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.13);
}

/* Nav arrows */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: all 0.2s;
  z-index: 5;
}

.hero-nav:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-prev { left: 18px; }
.hero-next { right: 18px; }

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 72px;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 22px;
  gap: 7px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
}

.hero-dot.act {
  background: #1a56db;
  width: 22px;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 640px) {
  .hero-slide {
    padding: 48px 0 88px;
  }

  .hero-nav {
    display: none;
  }
}

/* PRODUCTS */
.products-section {
  background: #f0f8ff85;
  padding: 72px 0;
  text-align: center;
}

.products-section h2 {
  font-size: 30px;
  font-weight: 800;
  color: #0d1b3e;
  letter-spacing: -0.4px;
  margin-bottom: 10px;
}

.products-section .sub {
  font-size: 15px;
  color: #64748b;
  margin-bottom: 44px;
}

.products-grid {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 0 auto 40px;
  border: 1px solid #d1d9c8;
  border-radius: 6px;
  overflow: hidden;
  background: white;
}

.product-card {
  flex: 1;
  padding: 36px 24px;
  border-right: 1px solid #d1d9c8;
  transition:
    background 0.2s,
    transform 0.2s;
  cursor: pointer;
}

.product-card:last-child {
  border-right: none;
}

.product-card:hover {
  background: #f8fdf5;
}

.prod-logo {
  width: 108px;
  height: 60px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: white;
  overflow: hidden;
  position: relative;
}

.prod-logo-crm {
  background: linear-gradient(135deg, #1a56db, #3b82f6);
}

.prod-logo-bharat {
  background: linear-gradient(135deg, #d97706, #f59e0b);
}

.prod-logo-wemedia {
  background: linear-gradient(135deg, #16a34a, #34d399);
}

.prod-logo-algo {
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.prod-logo .pl-icon {
  font-size: 22px;
  margin-right: 6px;
}

.prod-logo .pl-text {
  line-height: 1.1;
  text-align: left;
}

.prod-logo .pl-text span {
  display: block;
}

.prod-logo .pl-text .big {
  font-size: 15px;
  font-weight: 800;
}

.prod-logo .pl-text .small {
  font-size: 9px;
  letter-spacing: 1.5px;
  opacity: 0.85;
}

.product-card p {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.65;
  margin-top: 4px;
}

.btn-discuss {
  padding: 12px 34px;
  font-size: 14px;
  font-weight: 700;
  background: transparent;
  color: #1a56db;
  border: 2px solid #1a56db;
  border-radius: 50px;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.5px;
  transition: all 0.22s;
}

.btn-discuss:hover {
  background: #1a56db;
  color: white;
}

/* CLIENTS STRIP */
.clients-strip {
  background: var(--white);
  padding: 28px 0;
}

.clients-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.clients-stats {
  display: flex;
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--blue);
}

.stat-num span {
  color: #f59e0b;
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 2px;
}

.client-logos {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.client-logo {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  opacity: 0.65;
  transition: opacity 0.2s;
}

.client-logo:hover {
  opacity: 1;
  color: var(--blue);
}

/* SECTION COMMONS */
section {
  padding: 80px 0;
}

.sec-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.sec-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.6px;
  margin-bottom: 14px;
  line-height: 1.2;
}

.sec-sub {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto;
}

.sec-head {
  text-align: center;
  margin-bottom: 52px;
}

/* WHAT WE OFFER */
.tab-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.tab-pill-track {
  display: flex;
  background: white;
  border-radius: 50px;
  padding: 5px;
  box-shadow: 0 2px 16px rgba(37, 99, 235, 0.1);
  position: relative;
  gap: 0;
}

.tab-slider {
  position: absolute;
  top: 5px;
  left: 5px;
  height: calc(100% - 10px);
  background: linear-gradient(135deg, #1a56db 0%, #3b82f6 100%);
  border-radius: 50px;
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.32);
}

.tab-btn {
  position: relative;
  z-index: 1;
  padding: 10px 38px;
  font-size: 14.5px;
  font-weight: 600;
  font-family: inherit;
  border: none;
  background: transparent;
  color: #8a9abf;
  cursor: pointer;
  border-radius: 50px;
  transition: color 0.25s;
  white-space: nowrap;
}

.tab-btn.active {
  color: white;
}

.tab-btn:hover:not(.active) {
  color: var(--blue);
}

.panel {
  display: none;
  animation: fadeUp 0.38s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.panel.active {
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.offer-card {
  background: white;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition:
    box-shadow 0.25s,
    transform 0.25s,
    border-color 0.25s;
}

.offer-card:hover {
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.1);
  transform: translateY(-4px);
  border-color: #c3d4f8;
}

.offer-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: linear-gradient(135deg, #eff4ff 0%, #dbeafe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.card-name {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.card-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.68;
}

/* DRIVING RESULTS */
.results-section {
  background: linear-gradient(135deg, #0d1b3e 0%, #1a3a7e 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.results-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.15);
}

.results-section .sec-title {
  color: white;
}

.results-section .sec-sub {
  color: rgba(255, 255, 255, 0.65);
  max-width: 620px;
}

.values-grid-home {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.value-card-home {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition:
    background 0.25s,
    transform 0.25s;
}

.value-card-home:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-3px);
}

.value-icon-home {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.value-name-home {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

/* ABOUT */
.section1 {
  padding: 80px 0;
}

.section1-inner {
  text-align: center;
}

.section1-inner h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.3;
  margin-bottom: 18px;
}

.section1-inner p.subtitle {
  font-size: 0.97rem;
  color: #555;
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto 38px;
  line-height: 1.7;
}

.section1-inner .about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.section1-inner .about-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 22px;
  border-right: 1px solid #cdd8cd;
  border-bottom: 1px solid #cdd8cd;
  text-align: left;
  transition: background 0.2s;
}

.section1-inner .about-card:hover {
  background: #f7fbf7;
}

.section1-inner .about-card:nth-child(3) {
  border-right: none;
}

.section1-inner .row2 {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1fr 1fr;
}

.section1-inner .row2 .about-card {
  border-bottom: none;
}

.section1-inner .row2 .about-card:last-child {
  border-right: none;
}

.section1-inner .about-icon-wrap {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section1-inner .about-icon-wrap svg {
  width: 54px;
  height: 54px;
}

.section1-inner .card-content h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #2a7a2a;
  margin-bottom: 6px;
  line-height: 1.3;
}

.section1-inner .card-content p {
  font-size: 0.82rem;
  color: #555;
  font-weight: 500;
  line-height: 1.6;
}

/* INDUSTRIES */
.industries-section {
  background: #f0f8ffad;
  padding: 60px 0 50px;
  text-align: center;
}

.industries-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.industries-section .ind-sub {
  font-size: 15px;
  color: #64748b;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-radius: 4px;
  overflow: hidden;
  gap: 18px;
  margin: auto;
}

.ind-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 16px 28px;
  border-right: 1px solid #d8ddd8;
  border-bottom: 1px solid #d8ddd8;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
  background: #fff;
  position: relative;
}

.ind-card:nth-child(6n) {
  border-right: none;
}

.ind-card:nth-child(n + 7) {
  border-bottom: none;
}

.ind-card:hover {
  background: #f7faf7;
  z-index: 2;
}

.ind-card:hover .ind-icon-wrap {
  transform: scale(1.12);
}

.ind-icon-wrap {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ind-icon-wrap svg {
  width: 52px;
  height: 52px;
}

.ind-card-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #3a3a4a;
  text-align: center;
  line-height: 1.3;
}

.ind-card-desc {
  font-size: 0.72rem;
  color: #64748b;
  text-align: center;
  line-height: 1.4;
  margin-top: 4px;
  display: none;
}

.btn-wrap {
  margin-top: 40px;
}

.explore-btn {
  background: #3b82f6;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 14px 38px;
  font-size: 0.95rem;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.2px;
  transition:
    background 0.2s,
    transform 0.15s;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.explore-btn:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

/*  */
/* ---------- WHY ALGOADS SECTION ---------- */
/* ── Section ── */
.waa-section {
  padding: clamp(56px, 7vw, 100px) 20px;
  font-family: "DM Sans", sans-serif;
  color: #1a1a2e;
  overflow: hidden;
}

.waa-wrapper {
  max-width: 1160px;
  margin: 0 auto;
  text-align: center;
}

/* ── Header ── */
.waa-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1a56db;
}
.waa-eyebrow::before,
.waa-eyebrow::after {
  content: "";
  width: 24px;
  height: 1.5px;
  background: #1a56db;
  opacity: 0.4;
}

.waa-heading {
  font-weight: 700;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.15;
  color: #111;
  margin-bottom: 16px;
}
.waa-highlight {
  display: inline-block;
  margin-top: 4px;
  color: #1a56db;
  font-style: italic;
}

.waa-subtext {
  max-width: 54ch;
  margin: 0 auto 44px;
  font-size: 17px;
  line-height: 1.65;
  color: #555;
  font-weight: 400;
}

/* ── Grid ── */
.waa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

/* ── Card base ── */
.waa-block {
  position: relative;
  text-align: left;
  border-radius: 20px;
  padding: 28px 24px 24px;
  background: #fff;
  border: 1px solid #e8e8e4;
  transition:
    transform 0.35s cubic-bezier(0.22, 0.68, 0, 1),
    box-shadow 0.35s ease;
}
.waa-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

/* ── Bad cards subtle red tint on header ── */
.waa-block:not(.waa-block--featured) .waa-block__header {
  position: relative;
}

/* ── Card head ── */
.waa-block__header {
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
  margin-bottom: 16px;
}

.waa-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 22px;
  margin-bottom: 14px;
}
.waa-block:nth-child(1) .waa-icon-box {
  background: #fff3f3;
}
.waa-block:nth-child(2) .waa-icon-box {
  background: #fff8ed;
}
.waa-block--featured .waa-icon-box {
  background: linear-gradient(135deg, #e8fbe8, #d4f5e0);
}

.waa-block__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  color: #111;
  margin-bottom: 6px;
}

.waa-block__tagline {
  font-size: 13px;
  color: #888;
  font-weight: 500;
  font-style: italic;
}

/* ── List ── */
.waa-checklist {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
  padding: 0px;
}

.waa-checklist li {
  position: relative;
  padding-left: 30px;
  font-size: 14.5px;
  line-height: 1.55;
  color: #333;
}

.waa-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

.waa-checklist li.bad::before {
  content: "✕";
  background: #fff0f0;
  border: 1px solid #fdd;
  color: #d63031;
}

.waa-checklist li.good::before {
  content: "✓";
  background: #edfff3;
  border: 1px solid #b8f0ce;
  color: #0e8a3e;
}

/* ── Footer waa-badge ── */
.waa-block__footer {
  margin-top: auto;
}

.waa-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.waa-badge--caution {
  background: #fffbe6;
  color: #92600a;
  border: 1px solid #f5e5a3;
}

.waa-badge--positive {
  background: linear-gradient(135deg, #0e8a3e, #127a38);
  color: #fff;
  border: 1px solid transparent;
  box-shadow: 0 2px 12px rgba(14, 138, 62, 0.25);
}

/* ── Good card ── */
.waa-block--featured {
  background: linear-gradient(168deg, #f0faf2 0%, #e6f7ec 40%, #f7fff9 100%);
  border-color: #b8f0ce;
  box-shadow:
    0 0 0 1px rgba(14, 138, 62, 0.06),
    0 8px 30px rgba(14, 138, 62, 0.08);
}
.waa-block--featured:hover {
  box-shadow:
    0 0 0 1px rgba(14, 138, 62, 0.1),
    0 16px 48px rgba(14, 138, 62, 0.12);
}
.waa-block--featured .waa-block__header {
  border-bottom-color: #c8ecd4;
}
.waa-block--featured .waa-block__title {
  color: #0a5c2b;
}

/* Subtle recommended badge */
.waa-block--featured::after {
  content: "★ RECOMMENDED";
  position: absolute;
  top: -1px;
  right: 24px;
  background: linear-gradient(135deg, #1a56db, #1447b8);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 0 0 8px 8px;
}

/* ── Responsive ── */
@media (max-width: 980px) {
  .waa-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
}

/* ── Entrance animation ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.waa-block {
  animation: fadeUp 0.6s ease-out both;
}
.waa-block:nth-child(1) {
  animation-delay: 0.1s;
}
.waa-block:nth-child(2) {
  animation-delay: 0.25s;
}
.waa-block:nth-child(3) {
  animation-delay: 0.4s;
}
/* TECH */
.tech-section {
  background: #f0f8ffad;
  padding: 56px 0 72px;
  text-align: center;
}

.tech-section h2 {
  font-size: 22px;
  font-weight: 800;
  color: #0d1b3e;
  margin-bottom: 32px;
  letter-spacing: -0.2px;
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.tech-card {
  width: 96px;
  background: white;
  border-radius: 14px;
  padding: 18px 12px 14px;
  border: 1px solid #d8e4c8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition:
    box-shadow 0.2s,
    transform 0.2s,
    border-color 0.2s;
}

.tech-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: #a8c890;
}

.tech-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 900;
}

.tech-name {
  font-size: 12px;
  font-weight: 600;
  color: #475569;
}

.ti-html {
  background: #fff1eb;
  color: #e34f26;
}

.ti-css {
  background: #ebf4ff;
  color: #1572b6;
}

.ti-android {
  background: #f0fff4;
  color: #3ddc84;
}

.ti-php {
  background: #f3f0ff;
  color: #777bb4;
}

.ti-wp {
  background: #f0f7ff;
  color: #21759b;
}

.ti-node {
  background: #f0fff4;
  color: #539e43;
}

.ti-boot {
  background: #f3f0ff;
  color: #7952b3;
}

.ti-mysql {
  background: #fff8eb;
  color: #00618a;
}

/* FAQ */
.section-faq {
  padding: 80px 0;
  text-align: center;
  background: #f8fafc;
}

.badge {
  display: inline-block;
  background: #ebf2f9;
  color: #1a56db;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.section-faq h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 12px;
  line-height: 1.3;
}

.section-faq p.subtitle {
  font-size: 0.95rem;
  color: #666;
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.faq-item {
  background: #fff;
  border: 1px solid #cdd8cd;
  border-radius: 10px;
  overflow: hidden;
  transition:
    box-shadow 0.25s,
    border-color 0.25s;
}

.faq-item.open {
  border-color: #1a56db;
  box-shadow: 0 4px 18px rgba(42, 122, 42, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}

.faq-question-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.q-number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1a56db;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.faq-item.open .q-number {
  background: #1a56db;
  color: #fff;
}

.faq-question h3 {
  font-size: 0.97rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.4;
  transition: color 0.2s;
}

.faq-item.open .faq-question h3 {
  color: #1a56db;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #cdd8cd;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.3s;
}

.faq-item.open .faq-icon {
  border-color: #1a56db;
  background: #1a56db;
  transform: rotate(45deg);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
}

.faq-icon svg path {
  stroke: #888;
  transition: stroke 0.2s;
}

.faq-item.open .faq-icon svg path {
  stroke: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 16px 24px 22px 12px;
  font-size: 0.88rem;
  color: #555;
  font-weight: 500;
  line-height: 1.75;
  border-top: 1px solid #eef3ee;
}

/* BLOG */
.blog-section {
  background: white;
  padding: 80px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}

.blog-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.blog-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.blog-body {
  padding: 20px;
}

.blog-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.blog-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 8px;
}

.blog-excerpt {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

.blog-date {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 14px;
  font-weight: 500;
}

.view-all-wrap {
  text-align: center;
  margin-top: 40px;
}

.btn-outline {
  padding: 12px 36px;
  font-size: 14.5px;
  font-weight: 600;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.btn-outline:hover {
  background: var(--blue);
  color: white;
}

/* TESTIMONIALS */
.testimonials-section {
  background: var(--bg);
  padding: 80px 0;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testi-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--border);
  position: relative;
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 72px;
  color: var(--blue-light);
  font-family: Georgia, serif;
  line-height: 1;
}

.testi-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.testi-role {
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 16px;
}

.testi-text {
  font-size: 16px;
  color: var(--text);
  line-height: 1.75;
}

.stars {
  color: #f59e0b;
  font-size: 24px;
  margin-bottom: 10px;
}
.user-author img{
  border-radius: 100px;
  height: 50px;
  width: 50px;
  object-fit: cover;
}

/* CONTACT */
.contact-section {
  background: white;
  padding: 80px 0;
}

.contact-wrap {
  display: flex;
  gap: 72px;
  align-items: flex-start;
}

.contact-left {
  flex: 1;
}

.contact-left .sec-title {
  text-align: left;
}

.contact-left p {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.75;
  margin: 16px 0 28px;
}

.contact-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.cf-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cf-text h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.cf-text p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.contact-form {
  flex: 0 0 440px;
}

.form-card {
  background: white;
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 36px;
  box-shadow: 0 8px 40px rgba(37, 99, 235, 0.08);
}

.form-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  color: var(--navy);
  background: var(--bg);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue) 0%, #3b82f6 100%);
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
  transition: all 0.22s;
  margin-top: 6px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.38);
}

/* CTA BANNER */
.footer-cta-banner {
  padding: 0 0px 0;
  position: relative;
}

.footer-cta-banner:before {
  content: "";
  position: absolute;
  top: 51%;
  height: 100%;
  width: 100%;
  left: 0px;
  background: #0d1233;
  z-index: -1;
}

.footer-cta-banner .inner {
  max-width: 1260px;
  margin: 0 auto;
  position: relative;
}

.cta-card {
  background: #1a56db;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px 0 240px;
  min-height: 190px;
  position: relative;
  overflow: visible;
  gap: 24px;
}

.cta-card::before {
  content: "";
  position: absolute;
  left: 160px;
  top: -10px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 28px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.cta-card::after {
  content: "";
  position: absolute;
  right: 180px;
  bottom: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 18px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.cta-person-svg {
  position: absolute;
  left: 20px;
  bottom: 0;
  height: 185px;
  width: 160px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}

.cta-rocket {
  position: absolute;
  right: 8px;
  top: -32px;
  font-size: 56px;
  transform: rotate(-20deg);
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.3));
  pointer-events: none;
  animation: rocketFloat 3s ease-in-out infinite;
}

@keyframes rocketFloat {
  0%,
  100% {
    transform: rotate(-20deg) translateY(0);
  }

  50% {
    transform: rotate(-20deg) translateY(-8px);
  }
}

.cta-text h2 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #1a1a2e;
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  font-size: 13.5px;
  font-weight: 800;
  font-family: inherit;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.cta-btn-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1a56db;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
  transition: background 0.2s;
}

.cta-btn:hover .cta-btn-arrow {
  background: #5b21b6;
}

/* FOOTER */
.site-footer {
  background: #0d1233;
  padding: 50px 0px 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.4fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
  width: 100%;
}

.footer-brand .brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.brand-icon {
  width: 38px;
  height: 38px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.brand-icon span {
  display: block;
  border-radius: 3px;
  background: #7c3aed;
}

.brand-icon span:nth-child(2),
.brand-icon span:nth-child(3) {
  background: #a78bfa;
}

.brand-logo-text {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.4px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
  cursor: pointer;
}

.social-btn:hover {
  border-color: #7c3aed;
  background: rgba(124, 58, 237, 0.15);
  color: #a78bfa;
}

.footer-col-title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 14px;
}

.footer-col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

.quick-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0px;
}

.quick-links li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  transition:
    color 0.2s,
    gap 0.2s;
}

.quick-links li a:hover {
  color: #fff;
  gap: 14px;
}

.ql-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  font-size: 11px;
  color: #fff;
  font-weight: 800;
}

.recent-posts {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.post-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.post-thumb {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  flex-shrink: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #3730a3, #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.post-thumb.pt2 {
  background: linear-gradient(135deg, #d97706, #f59e0b);
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 5px;
  font-weight: 500;
}

.post-title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
  transition: color 0.2s;
  cursor: pointer;
}

.post-title:hover {
  color: #fff;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(124, 58, 237, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.newsletter-form {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 14px;
}

.newsletter-form input {
  flex: 1;
  padding: 13px 16px;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 13.5px;
  font-family: inherit;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.newsletter-form button {
  background: #1a56db;
  border: none;
  width: 46px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  transition: background 0.2s;
}

.newsletter-form button:hover {
  background: #5b21b6;
}

.privacy-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
}

.privacy-check input[type="checkbox"] {
  accent-color: #fff;
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.privacy-check a {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom-wrap {
  background: #0d1233;
  position: relative;
}

.scroll-top-ring {
  display: flex;
  justify-content: center;
}

.scroll-top-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(124, 58, 237, 0.55);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a78bfa;
  font-size: 20px;
  cursor: pointer;
  transform: translateY(26px);
  transition:
    background 0.2s,
    border-color 0.2s;
  z-index: 10;
  position: relative;
}

.scroll-top-btn:hover {
  background: #7c3aed;
  border-color: #7c3aed;
  color: #fff;
}

.footer-bottom-bar {
  background: #1a56db;
  padding: 14px 20px;
}

.footer-bottom-inner {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-copy {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.footer-bottom-links {
  display: flex;
  gap: 28px;
}

.footer-bottom-links a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: #fff;
}

.footer-back-top {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-back-top:hover {
  color: #fff;
}

.back-top-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.footer-back-top:hover .back-top-arrow {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.mobile-cta {
  display: none;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .nav-right .btn-call,
  .nav-right .btn-callback {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #ffffff;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.15);
    padding: 80px 24px 32px;
    z-index: 999;
    gap: 0;
    align-items: stretch;
    justify-content: flex-start;
    overflow-y: auto;
    animation: slideIn 0.3s ease;
  }

  @keyframes slideIn {
    from {
      transform: translateX(100%);
    }

    to {
      transform: translateX(0);
    }
  }

  .nav-links.mobile-open .nav-item {
    width: 100%;
  }

  .nav-links.mobile-open a,
  .nav-links.mobile-open .nav-item > a {
    padding: 14px 16px;
    font-size: 15px;
    border-radius: 10px;
    width: 100%;
  }

  .nav-links.mobile-open a:hover,
  .nav-links.mobile-open .nav-item > a:hover {
    background: #eff4ff;
  }

  .nav-links.mobile-open .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 16px;
    display: none;
    min-width: auto;
    background: transparent;
  }

  .nav-links.mobile-open .nav-item.mob-open .dropdown-menu {
    display: block;
  }

  .nav-links.mobile-open .dropdown-menu a {
    padding: 10px 16px;
    font-size: 14px;
  }

  .mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e8ecf4;
  }

  .mobile-cta .btn-call,
  .mobile-cta .btn-callback {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .hero-slide {
    min-height: 440px;
  }

  .products-grid {
    flex-direction: column;
  }

  .product-card {
    border-right: none;
    border-bottom: 1px solid #d1d9c8;
  }

  .product-card:last-child {
    border-bottom: none;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid-home {
    grid-template-columns: repeat(2, 1fr);
  }

  .ind-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-wrap {
    flex-direction: column;
    gap: 40px;
  }

  .contact-form {
    flex: none;
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .cta-card-home {
    padding: 30px 40px 30px 200px;
  }

  .section1-inner .about-grid {
    grid-template-columns: 1fr;
  }

  .section1-inner .about-card {
    border-right: none !important;
  }

  .section1-inner .row2 {
    grid-template-columns: 1fr;
  }

  .section1-inner .row2 .about-card {
    border-right: none !important;
    border-bottom: 1px solid #cdd8cd !important;
  }

  .section1-inner .row2 .about-card:last-child {
    border-bottom: none !important;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .cta-card {
    padding: 30px 32px 30px 32px;
    min-height: 120px;
  }

  .cta-person-svg {
    display: none;
  }

  .cta-rocket {
    right: 12px;
    top: -20px;
    font-size: 40px;
  }
}

@media (max-width: 640px) {
  nav {
    height: 58px;
  }

  .hero-slide {
    min-height: 380px;
  }

  .hero-slide h1 {
    font-size: 26px;
    letter-spacing: -0.5px;
  }

  .hero-slide p {
    font-size: 14px;
  }

  .hero-btns {
    flex-direction: column;
    gap: 10px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-eyebrow {
    font-size: 12px;
  }

  .hero-swiper-section .swiper-button-prev,
  .hero-swiper-section .swiper-button-next {
    display: none;
  }

  .clients-stats {
    gap: 24px;
  }

  .client-logos {
    display: none;
  }

  .products-section h2 {
    font-size: 22px;
  }

  .product-card {
    padding: 24px 18px;
  }

  .sec-title {
    font-size: 26px;
  }

  .sec-sub {
    font-size: 14px;
  }

  .tab-btn {
    padding: 8px 16px;
    font-size: 12.5px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .value-card {
    padding: 20px 14px;
  }

  .ind-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .ind-card {
    padding: 24px 12px 20px;
    border: 1px solid #d8ddd8 !important;
    border-radius: 8px;
  }

  .industries-section h2 {
    font-size: 1.5rem;
  }

  .tech-grid {
    gap: 10px;
  }

  .tech-card {
    width: 80px;
    padding: 14px 8px 12px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 24px 18px;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    border-radius: 16px;
  }

  .cta-text h2 {
    font-size: 20px;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .section-faq h2 {
    font-size: 1.5rem;
  }

  .faq-question {
    padding: 16px 16px;
  }

  .faq-answer-inner {
    padding-left: 24px;
    padding-right: 16px;
  }

  .q-number {
    width: 28px;
    height: 28px;
    font-size: 0.72rem;
  }

  .faq-question h3 {
    font-size: 0.88rem;
  }
  .clients-inner {
    justify-content: center;
  }
}

@media (max-width: 400px) {
  .values-grid-home {
    grid-template-columns: 1fr;
  }

  .ind-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tech-card {
    width: 72px;
  }
}

/********************* about us **************************/

/* ===== hero_about ===== */
.hero_about {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--dark) 0%,
    var(--primary-dark) 60%,
    var(--primary) 100%
  );
  padding: 50px 0 130px;
  overflow: hidden;
  text-align: center;
}

.hero_about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
}

.hero_about::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero_about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  animation: fadeDown 0.7s ease-out;
}

.hero_about-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero_about h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  max-width: 800px;
  margin: 0 auto 20px;
  animation: fadeDown 0.8s ease-out 0.1s both;
}

.hero_about h1 em {
  color: #60a5fa;
  font-style: italic;
}

.hero_about p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  animation: fadeDown 0.9s ease-out 0.2s both;
}

/* ===== SECTION COMMON ===== */
section {
  padding: 90px 0;
}

.section-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  background: var(--bg-blue);
  border: 1px solid rgba(26, 86, 219, 0.15);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-title em {
  color: var(--primary);
  font-style: italic;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 640px;
  line-height: 1.8;
}

/* ===== WHO WE ARE ===== */
.who-section {
  background: var(--bg);
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.who-content .section-desc {
  margin-bottom: 24px;
}

.who-image {
  position: relative;
}

.who-image .img-card {
  background: linear-gradient(145deg, var(--bg-blue), #fff);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.who-image .img-card::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 2px dashed rgba(26, 86, 219, 0.15);
  border-radius: 22px;
  z-index: -1;
}

.cert-header {
  text-align: center;
  margin-bottom: 20px;
}

.cert-header .cert-icon {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.cert-header h4 {
  font-size: 1.2rem;
  color: var(--dark);
}

.cert-header p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.cert-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.cert-badge svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ===== STORY ===== */
.story-section {
  background: var(--bg-soft);
  position: relative;
}

.story-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.story-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 40px;
}

.story-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.story-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  border-radius: 0 4px 4px 0;
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.story-card h3 {
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 14px;
}

.story-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ===== PHILOSOPHY ===== */
.philosophy-section {
  background: var(--bg);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 44px;
}

.philosophy-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}

.philosophy-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.35s;
}

.philosophy-card:hover::after {
  transform: scaleX(1);
}

.philosophy-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.p-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--bg-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background 0.3s;
}

.philosophy-card:hover .p-icon {
  background: var(--primary);
}

.p-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
  transition: color 0.3s;
}

.philosophy-card:hover .p-icon svg {
  color: #fff;
}

.philosophy-card h3 {
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.philosophy-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== VISION MISSION ===== */
.vm-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.vm-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(245, 166, 35, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(26, 86, 219, 0.15) 0%,
      transparent 50%
    );
}

.vm-section .section-badge {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--accent);
}

.vm-section .section-title {
  color: #fff;
}

.vm-section .section-title em {
  color: var(--accent);
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 44px;
  position: relative;
  z-index: 1;
}

.vm-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 40px;
  transition: all 0.35s;
}

.vm-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.vm-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.vm-card-icon.vision-icon {
  background: rgba(245, 166, 35, 0.2);
}

.vm-card-icon.mission-icon {
  background: rgba(26, 86, 219, 0.3);
}

.vm-card-icon svg {
  width: 26px;
  height: 26px;
}

.vm-card-icon.vision-icon svg {
  color: var(--accent);
}

.vm-card-icon.mission-icon svg {
  color: #7eb8ff;
}

.vm-card h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 14px;
}

.vm-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
}

/* ===== CORE VALUES ===== */
.values-section {
  background: var(--bg-soft);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.value-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 1px solid var(--border);
  transition: all 0.35s;
  position: relative;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.value-num {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--bg-blue);
  line-height: 1;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.value-card:hover .value-num {
  color: rgba(26, 86, 219, 0.15);
}

.value-card h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

.value-icon {
  position: absolute;
  top: 28px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.value-card:hover .value-icon {
  background: var(--primary);
}

.value-icon svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  transition: color 0.3s;
}

.value-card:hover .value-icon svg {
  color: #fff;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .who-grid,
  .story-cols,
  .vm-grid {
    grid-template-columns: 1fr;
  }

  .philosophy-grid,
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .hero_about {
    padding: 80px 0 70px;
  }
  .hero_about::after{
      height: 30px;
  }
}

@media (max-width: 600px) {
  .philosophy-grid,
  .values-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 60px 0;
  }
}

/* ── DOODLE DECORATIONS ── */
.doodle {
  position: absolute;
  pointer-events: none;
}

/* ── OUTER WRAP ── */
.scene {
  position: relative;
  width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 20px;
}

/* ── PHONE FRAME ── */
.phone {
  position: relative;
  width: 260px;
  height: 520px;
  background: #111;
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 0 0 2px #333,
    0 30px 60px rgba(0, 0, 0, 0.35),
    0 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

/* Side buttons */
.phone::before {
  content: "";
  position: absolute;
  left: -3px;
  top: 100px;
  width: 3px;
  height: 36px;
  background: #333;
  border-radius: 2px 0 0 2px;
  box-shadow:
    0 46px 0 #333,
    0 84px 0 #333;
}

.phone::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 130px;
  width: 3px;
  height: 54px;
  background: #333;
  border-radius: 0 2px 2px 0;
}

/* Screen */
.screen {
  width: 100%;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: #fff;
  position: relative;
}

/* Notch / dynamic island */
.notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: #111;
  border-radius: 12px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
  gap: 4px;
}

.notch-cam {
  width: 8px;
  height: 8px;
  background: #222;
  border-radius: 50%;
  border: 1.5px solid #1a3a;
}

/* Status bar */
.status-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 18px 0;
  z-index: 15;
  font-size: 11px;
  font-weight: 700;
  color: #111;
}

.status-time {
  font-size: 13px;
  font-weight: 800;
}

.status-icons {
  display: flex;
  gap: 4px;
  align-items: center;
}

/* ── APP CONTENT ── */
.app {
  position: absolute;
  inset: 0;
  padding: 52px 16px 72px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.app-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}

.app-title {
  font-size: 22px;
  font-weight: 900;
  color: #111;
  line-height: 1.2;
}

.app-title span {
  color: #1a56db;
}

.search-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}

/* Tabs */
.tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 11.5px;
  font-weight: 700;
  color: #aaa;
}

.tab-active {
  color: #1a56db;
  border-bottom: 2px solid #1a56db;
  padding-bottom: 3px;
}

/* ── CARDS STACK ── */
.cards-stack {
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.card {
  position: absolute;
  width: 200px;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform-origin: center bottom;
}

/* Card 1 - back (green) */
.card-1 {
  background: #1a56db;
  width: 195px;
  height: 220px;
  top: 0px;
  left: 10px;
  z-index: 1;
  animation: card1Anim 6s ease-in-out infinite;
}

/* Card 2 - front (green darker, tilted) */
.card-2 {
  background: #1a56db;
  width: 200px;
  height: 230px;
  top: 20px;
  left: 20px;
  z-index: 2;
  animation: card2Anim 6s ease-in-out infinite;
  transform: rotate(6deg);
}

@keyframes card1Anim {
  0%,
  100% {
    transform: rotate(0deg) translate(0, 0);
    opacity: 1;
  }

  20% {
    transform: rotate(-3deg) translate(-6px, -4px);
  }

  40% {
    transform: rotate(0deg) translate(0, 0);
  }

  60% {
    transform: rotate(0deg) translate(0, 0);
    opacity: 1;
  }

  80% {
    transform: rotate(0deg) scale(0.95);
    opacity: 0.7;
  }
}

@keyframes card2Anim {
  0%,
  100% {
    transform: rotate(6deg) translate(0, 0);
  }

  20% {
    transform: rotate(12deg) translate(10px, -10px);
  }

  40% {
    transform: rotate(6deg) translate(0, 0);
  }

  60% {
    transform: rotate(6deg) translate(0, 0);
  }

  80% {
    transform: rotate(3deg) translate(-4px, 4px);
  }
}

/* Card content */
.card-badge {
  font-size: 8px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.card-title {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 3px;
}

.card-sub {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
}

.card-heart {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Product illustration SVG */
.card-actions {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: flex;
  gap: 6px;
}

.card-action-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.add-btn {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: #fff;
  color: #2e9e5e;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 10px;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ── BOTTOM NAV ── */
.bottom-nav {
  position: absolute;
  bottom: 12px;
  left: 16px;
  right: 16px;
  height: 52px;
  background: #111;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 8px;
  z-index: 20;
}

.nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn.active {
  background: #1a56db;
}

/* ── FLOATING DOODLES ── */
.doodle-star {
  position: absolute;
  animation: doodleSpin 8s linear infinite;
}

@keyframes doodleSpin {
  0% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.2);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

.doodle-blob {
  position: absolute;
  animation: doodleFloat 4s ease-in-out infinite;
}

@keyframes doodleFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }

  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

.doodle-lines {
  position: absolute;
  animation: doodleWave 3s ease-in-out infinite;
}

@keyframes doodleWave {
  0%,
  100% {
    transform: rotate(-10deg) scale(1);
  }

  50% {
    transform: rotate(10deg) scale(1.1);
  }
}

.doodle-circle {
  position: absolute;
  animation: doodlePulse 3s ease-in-out infinite;
}

@keyframes doodlePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

/* New card slide-in animation */
.card-new {
  background: #1a56db;
  width: 195px;
  height: 220px;
  top: 10px;
  left: 14px;
  z-index: 3;
  animation: newCardIn 6s ease-in-out infinite;
  transform: rotate(-4deg) translateY(30px);
  opacity: 0;
}

@keyframes newCardIn {
  0%,
  50% {
    opacity: 0;
    transform: rotate(-4deg) translateY(30px);
  }

  65%,
  90% {
    opacity: 1;
    transform: rotate(-4deg) translateY(0);
  }

  100% {
    opacity: 0;
    transform: rotate(-4deg) translateY(-10px);
  }
}

/* Tag/label pulse on card */
.card-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 2px 7px;
  font-size: 8px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  animation: tagPulse 2s ease-in-out infinite;
}

@keyframes tagPulse {
  0%,
  100% {
    background: rgba(255, 255, 255, 0.2);
  }

  50% {
    background: rgba(255, 255, 255, 0.35);
  }
}

/* Swipe hint */
.swipe-hint {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  color: #aaa;
  font-weight: 700;
  animation: hintFade 6s ease-in-out infinite;
  white-space: nowrap;
  z-index: 1;
}

@keyframes hintFade {
  0%,
  100% {
    opacity: 0;
  }

  50%,
  70% {
    opacity: 1;
  }
}

.swipe-dots {
  display: flex;
  gap: 3px;
}

.swipe-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ddd;
}

.swipe-dot.active {
  background: #2e9e5e;
  width: 14px;
  border-radius: 3px;
}

/************************** service > webdesign css   ********************************/

/* ── HERO ── */
.hero-wd {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--dark) 0%,
    var(--primary-dark) 60%,
    var(--primary) 100%
  );
  padding: 80px 0 130px;
  overflow: hidden;
  text-align: center;
}

.hero-wd::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-wd::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-wd-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  animation: fadeDown 0.7s ease-out;
}

.hero-wd-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-wd h1 {
  font-size: clamp(2.4rem, 5vw, 2.8rem);
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
  max-width: 820px;
  margin: 0 auto 20px;
  animation: fadeDown 0.8s ease-out 0.1s both;
}

.hero-wd h1 em {
  color: #60a5fa;
  font-style: italic;
}

.hero-wd p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 620px;
  margin: 0 auto 36px;
  animation: fadeDown 0.9s ease-out 0.2s both;
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeDown 1s ease-out 0.3s both;
}

.btn-primary-wd {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-wd:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(245, 166, 35, 0.5);
}

.btn-outline-wd {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
}

.btn-outline-wd:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* ── SECTION COMMON ── */
section {
  padding: 50px 0;
}

.section-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  background: var(--bg-blue);
  border: 1px solid rgba(26, 86, 219, 0.15);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-title em {
  color: var(--primary);
  font-style: italic;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 640px;
  line-height: 1.8;
}

/* ── WHY CHOOSE US ── */
.why-section {
  background: var(--bg);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.35s;
}

.why-card:hover::after {
  transform: scaleX(1);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.why-icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: var(--bg-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.8rem;
  transition: all 0.3s;
}

.why-card:hover .why-icon {
  background: var(--primary);
  transform: scale(1.1);
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── SERVICES TYPES ── */
.services-section {
  background: var(--bg-soft);
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.service-row:last-child {
  margin-bottom: 0;
}

.service-row.reverse {
  direction: rtl;
}

.service-row.reverse > * {
  direction: ltr;
}

.service-content {
}

.service-tag {
  display: inline-block;
  background: var(--bg-blue);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid rgba(26, 86, 219, 0.15);
}

.service-content h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.service-content h2 em {
  color: var(--primary);
  font-style: italic;
}

.service-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.service-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--dark);
}

.service-bullets li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 10px 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--primary);
}

.service-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.service-img-wrap img {
  width: 100%;
  display: block;
}

.service-img-mock {
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  padding: 0;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.mock-topbar {
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mock-addr {
  flex: 1;
  background: #e2e8f0;
  border-radius: 20px;
  height: 26px;
  margin: 0 12px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-size: 0.72rem;
  color: var(--text-light);
}

.mock-body {
  padding: 20px;
}

/* ── TOOLS & TECH ── */
.tools-section {
  background: var(--bg);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 44px;
}

.tool-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 16px;
  text-align: center;
  transition: all 0.3s;
}

.tool-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.tool-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

.tool-card h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
}

.tool-card p {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ── WHAT YOU GET ── */
.get-section {
  background: var(--bg-soft);
}

.get-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.get-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.35s;
}

.get-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.get-num {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.get-num::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.get-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.get-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.get-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── PROCESS ── */
.process-section {
  background: var(--bg);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 44px;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(26, 86, 219, 0.35);
  border: 4px solid #fff;
}

.process-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── FAQ ── */
.faq-section {
  background: var(--bg-soft);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 44px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.faq-item:hover {
  box-shadow: var(--shadow);
}

.faq-question {
  padding: 20px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.faq-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.faq-arrow svg {
  transition: transform 0.3s;
}

.faq-item.open .faq-arrow {
  background: var(--primary);
}

.faq-item.open .faq-arrow svg {
  transform: rotate(180deg);
}

.faq-item.open .faq-arrow svg path {
  stroke: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

/* ── ANIMATIONS ── */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
       MOCK ANIMATIONS — 7 unique styles
    ══════════════════════════════════════ */

/* 1. E-Commerce — product cards float up one by one */
.mock-ecom-banner {
  animation: ecoBannerPulse 3s ease-in-out infinite;
}

@keyframes ecoBannerPulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(26, 86, 219, 0.2);
  }

  50% {
    box-shadow: 0 8px 32px rgba(26, 86, 219, 0.45);
  }
}

.mock-ecom-card {
  animation: ecoCardFloat 3s ease-in-out infinite;
}

.mock-ecom-card:nth-child(2) {
  animation-delay: 0.2s;
}

.mock-ecom-card:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes ecoCardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.mock-ecom-btn {
  animation: ecoShopBtn 2.5s ease-in-out infinite;
}

@keyframes ecoShopBtn {
  0%,
  100% {
    background: #f5a623;
    letter-spacing: 0;
  }

  50% {
    background: #e69210;
    letter-spacing: 0.5px;
  }
}

/* 2. Custom Design — hero banner slides colours, nav logo rotates gradient */
.mock-custom-logo {
  animation: customLogoSpin 4s linear infinite;
}

@keyframes customLogoSpin {
  0% {
    background: linear-gradient(135deg, #1a56db, #f5a623);
  }

  33% {
    background: linear-gradient(225deg, #f5a623, #1a56db);
  }

  66% {
    background: linear-gradient(315deg, #0f172a, #1a56db);
  }

  100% {
    background: linear-gradient(135deg, #1a56db, #f5a623);
  }
}

.mock-custom-hero {
  animation: customHeroShift 5s ease-in-out infinite;
}

@keyframes customHeroShift {
  0%,
  100% {
    background: linear-gradient(120deg, #eff6ff, #faf5ff);
  }

  50% {
    background: linear-gradient(120deg, #faf5ff, #eff6ff);
  }
}

.mock-custom-tab {
  transition:
    background 0.3s,
    color 0.3s;
}

.mock-custom-tab:hover {
  background: #1a56db;
  color: #fff;
}

.mock-custom-hirebtn {
  animation: hireBtnPop 2s ease-in-out infinite;
}

@keyframes hireBtnPop {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

/* 3. Mobile — phone gently floats + screen content fades in/out */
.mock-mobile-phone {
  animation: mobileFloat 3.5s ease-in-out infinite;
}

@keyframes mobileFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

.mock-mobile-hero {
  animation: mobileHeroGlow 3s ease-in-out infinite;
}

@keyframes mobileHeroGlow {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.85;
  }
}

.mock-mobile-btn {
  animation: mobileBtnSlide 2.5s ease-in-out infinite;
}

@keyframes mobileBtnSlide {
  0%,
  100% {
    letter-spacing: 0;
  }

  50% {
    letter-spacing: 0.5px;
  }
}

/* 4. Responsive — 3 screens cascade-pop */
.mock-resp-desktop {
  animation: respDesktop 3s ease-in-out infinite;
}

.mock-resp-tablet {
  animation: respTablet 3s ease-in-out infinite 0.15s;
}

.mock-resp-mobile {
  animation: respMobile 3s ease-in-out infinite 0.3s;
}

@keyframes respDesktop {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes respTablet {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

@keyframes respMobile {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.mock-resp-bar {
  animation: respBarLoad 2.5s ease-in-out infinite;
  transform-origin: left;
}

@keyframes respBarLoad {
  0% {
    transform: scaleX(0.4);
    opacity: 0.5;
  }

  60% {
    transform: scaleX(1);
    opacity: 1;
  }

  100% {
    transform: scaleX(0.4);
    opacity: 0.5;
  }
}

/* 5. Landing Page — form field shimmer, CTA pulses */
.mock-lp-badge {
  animation: lpBadgePop 2s ease-in-out infinite;
}

@keyframes lpBadgePop {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.04);
  }
}

.mock-lp-cta {
  animation: lpCtaGlow 2s ease-in-out infinite;
}

@keyframes lpCtaGlow {
  0%,
  100% {
    box-shadow: 0 2px 8px rgba(245, 166, 35, 0.3);
  }

  50% {
    box-shadow: 0 4px 20px rgba(245, 166, 35, 0.7);
  }
}

.mock-lp-input {
  animation: lpInputShimmer 3s ease-in-out infinite;
}

@keyframes lpInputShimmer {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.2);
  }

  50% {
    border-color: rgba(255, 255, 255, 0.55);
  }
}

/* 6. Static / Portfolio — avatar floats, rating ticks up feel */
.mock-static-avatar {
  animation: staticAvatarBob 3s ease-in-out infinite;
}

@keyframes staticAvatarBob {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-6px) scale(1.06);
  }
}

.mock-static-stat {
  animation: staticStatPop 2.5s ease-in-out infinite;
}

.mock-static-stat:nth-child(2) {
  animation-delay: 0.4s;
}

@keyframes staticStatPop {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.mock-static-hirebtn {
  animation: staticHireGlow 2.5s ease-in-out infinite;
}

@keyframes staticHireGlow {
  0%,
  100% {
    box-shadow: none;
  }

  50% {
    box-shadow: 0 4px 16px rgba(26, 86, 219, 0.4);
  }
}

/* 7. PSD to HTML (Code Editor) — cursor blink + line highlight scroll */
.mock-code-cursor {
  animation: codeCursorBlink 0.9s step-end infinite;
}

@keyframes codeCursorBlink {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

.mock-code-line {
  animation: codeLineHighlight 4s ease-in-out infinite;
}

.mock-code-line:nth-child(2) {
  animation-delay: 0.5s;
}

.mock-code-line:nth-child(3) {
  animation-delay: 1s;
}

.mock-code-line:nth-child(4) {
  animation-delay: 1.5s;
}

.mock-code-line:nth-child(5) {
  animation-delay: 2s;
}

@keyframes codeLineHighlight {
  0%,
  100% {
    background: transparent;
  }

  20%,
  40% {
    background: rgba(96, 165, 250, 0.08);
    border-radius: 4px;
  }
}

.mock-code-tab-active {
  animation: codeTabPulse 3s ease-in-out infinite;
}

@keyframes codeTabPulse {
  0%,
  100% {
    color: #94a3b8;
  }

  50% {
    color: #e2e8f0;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tools-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .service-row,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .service-row.reverse {
    direction: ltr;
  }

  .get-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-grid::before {
    display: none;
  }

  .hero-stat-divider {
    display: none;
  }
}

@media (max-width: 600px) {
  .why-grid,
  .get-grid,
  .process-grid,
  .tools-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 60px 0;
  }
}

/* ═══════════════════════════════════════════════
   WEB DEVELOPMENT PAGE — Additional Classes
   Style.css ke end mein paste karo
═══════════════════════════════════════════════ */

/* ── TEAM SECTION ── */
.team-section {
  background: #ffffff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 44px;
}

.team-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.35s;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
  border-color: #1a56db;
}

.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 14px;
}

.team-card h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0d1117;
  margin-bottom: 5px;
}

.team-card p {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.5;
}

/* ── WHY WORK WITH US SECTION ── */
.wwus-section {
  background: #f8fafc;
}

.wwus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 44px;
}

.wwus-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wwus-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 18px 20px;
  transition: all 0.3s;
}

.wwus-item:hover {
  border-color: #1a56db;
  box-shadow: 0 4px 20px rgba(26, 86, 219, 0.08);
}

.wwus-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #eef4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.wwus-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0d1117;
  margin-bottom: 4px;
}

.wwus-item p {
  font-size: 0.83rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.wwus-visual {
  background: linear-gradient(135deg, #0d1117, #1a56db);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.wwus-visual::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.1);
}

.wwus-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.wwus-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
}

.wwus-stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.wwus-stat-num span {
  color: #f5a623;
}

.wwus-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
  font-weight: 500;
}

/* ── MOCK ANIMATIONS (Web Dev page specific) ── */
.mock-db-row {
  animation: dbRowFade 2.5s ease-in-out infinite;
}

.mock-db-row:nth-child(2) {
  animation-delay: 0.3s;
}

.mock-db-row:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes dbRowFade {
  0%,
  100% {
    opacity: 0.7;
  }

  50% {
    opacity: 1;
  }
}

.mock-api-dot {
  animation: apiDotPulse 1.5s ease-in-out infinite;
}

@keyframes apiDotPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.4);
  }
}

.mock-float-card {
  animation: mockCardFloat 3s ease-in-out infinite;
}

.mock-float-card:nth-child(2) {
  animation-delay: 0.4s;
}

.mock-float-card:nth-child(3) {
  animation-delay: 0.8s;
}

@keyframes mockCardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.mock-progress-bar {
  animation: progressLoad 3s ease-in-out infinite;
  transform-origin: left;
}

@keyframes progressLoad {
  0% {
    transform: scaleX(0.2);
    opacity: 0.4;
  }

  60% {
    transform: scaleX(1);
    opacity: 1;
  }

  100% {
    transform: scaleX(0.2);
    opacity: 0.4;
  }
}

.mock-ping {
  animation: pingAnim 2s ease-in-out infinite;
}

@keyframes pingAnim {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(26, 86, 219, 0.4);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(26, 86, 219, 0);
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .wwus-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CONTACT PAGE HERO ===== */
.contact-hero {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--dark, #0d1117) 0%,
    var(--primary-dark, #0f3a8e) 60%,
    var(--primary, #1a56db) 100%
  );
  padding: 50px 0 120px;
  overflow: hidden;
  text-align: center;
}
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
}
.contact-hero::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: #fff;
  clip-path: ellipse(55% 100% at 50% 100%);
}
.contact-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.85rem;
  color: #f5a623;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  animation: fadeDown 0.7s ease-out;
}
.contact-hero .hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #f5a623;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.contact-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
  max-width: 700px;
  margin: 0 auto 16px;
  letter-spacing: -0.5px;
  animation: fadeDown 0.8s ease-out 0.1s both;
}
.contact-hero h1 span {
  color: #60a5fa;
}
.contact-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin: 0 auto;
  animation: fadeDown 0.9s ease-out 0.2s both;
}
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

/* ===== CONTACT INFO STRIP ===== */
.contact-info-strip {
  position: relative;
  z-index: 10;
  padding: 0 0 60px;
}
.info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.info-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.info-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1a56db, #f5a623);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26, 86, 219, 0.12);
}
.info-card:hover::after {
  transform: scaleX(1);
}
.info-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: #eef4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: background 0.3s;
}
.info-card:hover .info-card-icon {
  background: #1a56db;
}
.info-card-icon svg {
  width: 26px;
  height: 26px;
  color: #1a56db;
  transition: color 0.3s;
}
.info-card:hover .info-card-icon svg {
  color: #fff;
}
.info-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0d1b3e;
  margin-bottom: 8px;
}
.info-card p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
}
.info-card a {
  color: #1a56db;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.info-card a:hover {
  color: #0d3baf;
}

/* ===== MAIN CONTACT SECTION ===== */
.contact-main {
  padding: 0 0 90px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* Left side — text + reasons */
.contact-info-side {
}
.contact-info-side .section-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1a56db;
  background: #eef4ff;
  border: 1px solid rgba(26, 86, 219, 0.15);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.contact-info-side h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #0d1b3e;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.contact-info-side h2 span {
  color: #1a56db;
}
.contact-info-side > p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 36px;
}

/* Reason cards */
.reason-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.reason-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
}
.reason-item:hover {
  background: #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  transform: translateX(4px);
}
.reason-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #eef4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reason-icon svg {
  width: 22px;
  height: 22px;
  color: #1a56db;
}
.reason-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0d1b3e;
  margin-bottom: 4px;
}
.reason-text p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.6;
}

/* Right side — form */
.contact-form-wrap {
  position: sticky;
  top: 90px;
}
.contact-form-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  padding: 40px 36px;
  box-shadow: 0 12px 48px rgba(26, 86, 219, 0.08);
  position: relative;
  overflow: hidden;
}
.contact-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1a56db, #3b82f6, #f5a623);
}
.contact-form-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0d1b3e;
  margin-bottom: 6px;
}
.contact-form-card > p {
  font-size: 0.88rem;
  color: #64748b;
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0d1b3e;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-family: inherit;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  color: #0d1b3e;
  background: #f8fafc;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #1a56db;
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
  background: #fff;
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-submit-btn {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1a56db 0%, #3b82f6 100%);
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 6px 24px rgba(26, 86, 219, 0.3);
  transition: all 0.25s;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(26, 86, 219, 0.38);
}
.form-submit-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s;
}
.form-submit-btn:hover svg {
  transform: translateX(4px);
}

/* ===== MAP / OFFICE SECTION ===== */
.office-section {
  background: #f8fafc;
  padding: 80px 0;
}
.office-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.office-map {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  height: 400px;
  position: relative;
  background: #eef4ff;
}
.office-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.office-details h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #0d1b3e;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.office-details h2 span {
  color: #1a56db;
}
.office-details > p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 28px;
}
.office-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.of-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #eef4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.of-icon svg {
  width: 20px;
  height: 20px;
  color: #1a56db;
}
.of-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0d1b3e;
  margin-bottom: 2px;
}
.of-text p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.5;
}

/* ===== QUICK FAQ ===== */
.contact-faq {
  padding: 80px 0;
  text-align: center;
}
.contact-faq h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #0d1b3e;
  margin-bottom: 12px;
}
.contact-faq > .container > p {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.mini-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: left;
}
.mini-faq-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 28px 24px;
  transition: all 0.3s;
}
.mini-faq-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
  border-color: #1a56db;
}
.mini-faq-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0d1b3e;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mini-faq-card h4 .q-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eef4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #1a56db;
  flex-shrink: 0;
}
.mini-faq-card p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.7;
  padding-left: 38px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-form-wrap {
    position: static;
  }
  .office-grid {
    grid-template-columns: 1fr;
  }
  .office-map {
    height: 320px;
  }
}
@media (max-width: 640px) {
  .info-cards {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .mini-faq-grid {
    grid-template-columns: 1fr;
  }
  .contact-hero {
    padding: 40px 0 100px;
  }
  .contact-hero h1 {
    font-size: 1.8rem;
  }
  .contact-form-card {
    padding: 28px 20px;
  }
}

/* whatsapp bussiness  css */

/* ── INDUSTRIES ── */
.industries-wa-section {
  background: #f8fafc;
  padding: 80px 0;
}
.ind-wa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 44px;
}
.ind-wa-content h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 800;
  color: #0d1117;
  margin-bottom: 16px;
}
.ind-wa-content h2 em {
  color: #25d366;
  font-style: italic;
}
.ind-wa-content p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 20px;
}
.ind-wa-tags {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.ind-tag {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}
.ind-tag:hover {
  border-color: #25d366;
  background: #d1fae5;
  transform: translateY(-2px);
}
.ind-tag .ind-emoji {
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.ind-tag .ind-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #334155;
}

/* ── SERVICE IMAGE MOCK ── */
.service-img-real {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
  position: relative;
}
.service-img-real img {
  width: 100%;
  display: block;
}
.service-img-mock {
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 0;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.mock-topbar {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mock-addr {
  flex: 1;
  background: #e2e8f0;
  border-radius: 20px;
  height: 26px;
  margin: 0 12px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-size: 0.72rem;
  color: #64748b;
}
.mock-body {
  padding: 20px;
}

/* WhatsApp chat mock */
.wa-chat-bubble {
  border-radius: 12px;
  padding: 10px 14px;
  max-width: 85%;
  font-size: 0.78rem;
  line-height: 1.5;
  margin-bottom: 8px;
  position: relative;
}
.wa-bubble-in {
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #334155;
  border-radius: 0 12px 12px 12px;
}
.wa-bubble-out {
  background: #dcfce7;
  color: #166534;
  margin-left: auto;
  border-radius: 12px 0 12px 12px;
}
.wa-time {
  font-size: 0.62rem;
  color: #94a3b8;
  text-align: right;
  margin-top: 3px;
}
.wa-header {
  background: #25d366;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wa-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.wa-name {
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
}
.wa-status {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ── ANIMATIONS ── */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* WhatsApp mock animations */
.wa-bubble-in {
  animation: waBubbleIn 4s ease-in-out infinite;
}
@keyframes waBubbleIn {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.85;
  }
}
.wa-typing {
  animation: waTyping 2s ease-in-out infinite;
}
@keyframes waTyping {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ind-wa-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-box:nth-child(2) {
    border-right: none;
  }
  .stat-box:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }
}
@media (max-width: 900px) {
  .service-row {
    grid-template-columns: 1fr;
  }
  .service-row.reverse {
    direction: ltr;
  }
  .get-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ind-wa-tags {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .why-grid,
  .get-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-box:nth-child(2) {
    border-right: none;
  }
  section {
    padding: 60px 0;
  }
}
/* ── CAREER PAGE SPECIFIC CSS ── */
/* ── HERO ── */
.career-hero {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--dark) 0%,
    #0f3a8e 60%,
    var(--blue) 100%
  );
  padding: 80px 0 140px;
  overflow: hidden;
  text-align: center;
}
.career-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.career-hero::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.c-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  animation: fadeDown 0.7s ease-out both;
}
.c-hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.career-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: #fff;
  font-weight: 800;
  line-height: 1.15;
  max-width: 820px;
  margin: 0 auto 20px;
  letter-spacing: -0.5px;
  animation: fadeDown 0.8s ease-out 0.1s both;
}
.career-hero h1 em {
  color: #60a5fa;
  font-style: italic;
}
.career-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.8;
  animation: fadeDown 0.9s ease-out 0.2s both;
}
.c-hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeDown 1s ease-out 0.3s both;
}
.btn-primary-c {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  font-family: inherit;
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-primary-c:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(245, 166, 35, 0.5);
}
.btn-outline-c {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  font-family: inherit;
  backdrop-filter: blur(8px);
  text-decoration: none;
}
.btn-outline-c:hover {
  background: rgba(255, 255, 255, 0.2);
}
.c-hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  animation: fadeDown 1s ease-out 0.4s both;
}
.c-hero-stat {
  text-align: center;
}
.c-hero-stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
}
.c-hero-stat-num span {
  color: var(--accent);
}
.c-hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  margin-top: 3px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.c-hero-stat-div {
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

/* ── WHY WORK WITH US ── */
.c-why-section {
  background: var(--white);
  padding: 50px 0;
}
.c-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.c-why-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.c-why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.3s;
}
.c-why-item:hover {
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateX(4px);
  border-color: #c3d4f8;
}
.c-why-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--blue);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-why-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.c-why-text p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
}
.c-why-visual {
  background: linear-gradient(135deg, var(--dark), #1a56db);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.c-why-visual::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.12);
}
.c-why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.c-wsb {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 22px 16px;
  text-align: center;
  transition: background 0.3s;
}
.c-wsb:hover {
  background: rgba(255, 255, 255, 0.12);
}
.c-wsb-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
}
.c-wsb-num span {
  color: var(--accent);
}
.c-wsb-label {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 5px;
  font-weight: 500;
}
.c-why-quote {
  margin-top: 20px;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 20px 20px 14px;
}
.c-why-quote p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 10px;
}
.c-q-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.c-q-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
}
.c-q-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
}
.c-q-role {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ── PERKS ── */
.c-perks-section {
  background: var(--bg-soft);
  padding: 50px 0;
}
.c-perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.c-perk-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.c-perk-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  transform: scaleX(0);
  transition: transform 0.35s;
}
.c-perk-card:hover::after {
  transform: scaleX(1);
}
.c-perk-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.c-perk-icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: var(--bg-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.8rem;
  transition: all 0.3s;
}
.c-perk-card:hover .c-perk-icon {
  background: var(--blue);
  transform: scale(1.1);
}
.c-perk-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.c-perk-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── OPENINGS — TABS + ACCORDION ── */
.c-openings-section {
  padding: 50px 0;
}

/* Filter tabs */
.c-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  justify-content: center;
}
.c-filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--muted);
  font-family: inherit;
}
.c-filter-btn.active,
.c-filter-btn:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

/* Job accordion */
.c-job-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.c-job-body-inner br {
    display: none;
}

.c-job-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition:
    box-shadow 0.25s,
    border-color 0.25s;
}
.c-job-item.featured {
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.c-job-item:hover {
  box-shadow: var(--shadow);
  border-color: #c3d4f8;
}
.c-job-item.open {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
}

.c-job-header {
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  user-select: none;
}
.c-job-item.featured .c-job-header {
  padding: 24px 28px;
}

.c-job-left {
  flex: 1;
}
.c-job-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.c-job-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.tag-featured {
  background: rgba(245, 166, 35, 0.15);
  color: #92400e;
}
.tag-dept {
  background: var(--bg-blue);
  color: var(--blue);
}
.tag-type {
  background: #ecfdf5;
  color: #065f46;
}
.tag-design {
  background: #f5f3ff;
  color: #5b21b6;
}

.c-job-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}
.c-job-item.featured .c-job-title {
  font-size: 1.15rem;
}
.c-job-meta {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.c-job-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.c-job-apply {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: all 0.2s;
}
.c-job-apply:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}
.c-job-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  transition: all 0.25s;
  flex-shrink: 0;
}
.c-job-toggle svg {
  width: 16px;
  height: 16px;
  color: var(--muted);
  transition:
    transform 0.3s,
    color 0.25s;
}
.c-job-item.open .c-job-toggle {
  background: var(--blue);
  border-color: var(--blue);
}
.c-job-item.open .c-job-toggle svg {
  color: #fff;
  transform: rotate(180deg);
}

/* Accordion body */
.c-job-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.c-job-item.open .c-job-body {
  max-height: 1000px;
}
.c-job-body-inner {
  padding: 0 28px 28px;
  border-top: 1px solid var(--border);
}
.c-job-section-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blue);
  margin-bottom: 10px;
  margin-top: 18px;
}
.c-job-overview {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
}
.c-job-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.c-job-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--text);
  line-height: 1.6;
}
.c-job-bullets li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--blue)
    url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat center / 10px 8px;
  margin-top: 2px;
}

/* ── PROCESS ── */
.c-process-section {
  background: var(--white);
  padding: 80px 0;
}
.c-process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
}
.c-process-steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  z-index: 0;
}
.c-process-step {
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.c-step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(26, 86, 219, 0.35);
  border: 4px solid #fff;
}
.c-process-step h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.c-process-step p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── RESUME / DROP FORM SECTION ── */
.c-resume-section {
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
}
.c-resume-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(26, 86, 219, 0.12);
}
.c-resume-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.08);
}
.c-resume-inner {
  position: relative;
  z-index: 1;
}
.c-resume-top {
  text-align: center;
  margin-bottom: 52px;
}
.c-resume-top .section-badge {
  background: rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.3);
}
.c-resume-top .section-title {
  color: #222;
}
.c-resume-top .section-desc {
  color: #222;
  margin: 0 auto;
}

/* Tablet frame */
@keyframes tabletFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes pulseAnim {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
@keyframes glowBtn {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.5);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(99, 102, 241, 0);
  }
}
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.c-tablet-scene {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
}
.c-tablet-outer {
  animation: tabletFloat 5s ease-in-out infinite;
  position: relative;
  width: 1190px;
}
.c-tablet-body {
  background: #1c1f26;
  border-radius: 28px;
  border: 6px solid #2a2d38;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px #3a3d4a,
    inset 0 2px 0 rgba(255, 255, 255, 0.05),
    0 32px 60px rgba(0, 0, 0, 0.7);
}
.c-tablet-side-btn {
  position: absolute;
  right: -10px;
  width: 4px;
  border-radius: 2px;
  background: #2a2d38;
}
.c-tablet-side-btn.t1 {
  top: 80px;
  height: 40px;
}
.c-tablet-side-btn.t2 {
  top: 132px;
  height: 28px;
}
.c-tablet-side-btn.t3 {
  top: 168px;
  height: 28px;
}
.c-tablet-side-left {
  position: absolute;
  left: -10px;
  top: 100px;
  width: 4px;
  height: 50px;
  border-radius: 2px;
  background: #2a2d38;
}
.c-tablet-cam-strip {
  background: #141620;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.c-cam-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #252832;
  border: 1.5px solid #3a3d4a;
}
.c-cam-lens {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1a1d25;
  border: 1.5px solid #4c4f5e;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-cam-inner {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #6366f1;
  animation: pulseAnim 2s infinite;
}
.c-tablet-screen {
  background: #fff;
  padding: 16px 28px 22px;
  border-radius: 12px 12px 0px 0px;
}

/* Status bar */
.c-t-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.c-t-time {
  color: #222;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.c-t-icons {
  display: flex;
  gap: 6px;
  align-items: center;
}
.c-t-bar {
  width: 3px;
  border-radius: 1px;
  background: #222;
}

/* Form header inside tablet */
.c-t-header {
  border-bottom: 1px solid rgba(99, 102, 241, 0.2);
  padding-bottom: 12px;
  margin-bottom: 16px;
}
.c-t-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 12px;
  color: #a5b4fc;
  font-weight: 500;
  margin-bottom: 14px;
}
.c-t-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6366f1;
  animation: pulseAnim 1.5s infinite;
}
.c-t-title {
  color: #222;
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 2px;
  line-height: 1.4;
}
.c-t-sub {
  color: #6b7a99;
  font-size: 16px;
  margin: 0;
  line-height: 1.4;
}
.c-t-req-note {
  color: #f87171;
  font-size: 14px;
  font-style: italic;
  margin-top: 4px;
}

/* Real form inputs inside tablet */
.c-t-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 14px;
}
.c-t-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.c-t-label {
  font-size: 14px;
  color: #222;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.c-t-req-star {
  color: #f87171;
}
.c-t-input {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 7px;
  height: 45px;
  padding: 0 10px;
  font-size: 11px;
  color: #000;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
/* .c-t-input:focus {
  border-color: #6366f1;
  background: #0a1225;
}
.c-t-input::placeholder {
  color: #2a3352;
  font-style: italic;
} */
.c-t-select {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 7px;
    height: 45px;
    padding: 0 10px;
    font-size: 11px;
    color: #000;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    appearance: none;
    cursor: pointer;
}
.c-t-select:focus {
  border-color: #6366f1;
}
.c-t-select option {
  background: #0e1320;
  color: #c8d3e8;
}
.c-t-file-wrap {
  background: #fff;
  border: 1px solid #fff;
  border-radius: 7px;
  height: 45px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
}
.c-t-file-wrap:hover {
  border-color: #6366f1;
}
.c-t-file-btn {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 4px 8px;
    font-size: 10px;
    color: #000;
    white-space: nowrap;
    cursor: pointer;
    font-family: inherit;
    flex-shrink: 0;
}
.c-t-file-name {
  font-size: 10px;
  color: #2a3352;
}
.c-t-file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
}
.c-t-file-hint {
  font-size: 9.5px;
  color: #2a3352;
}
.c-t-cta {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}
.c-t-submit {
  background: #4f46e5;
  border: none;
  border-radius: 8px;
  padding: 10px 44px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.04em;
  font-family: inherit;
  animation: glowBtn 2.5s ease-in-out infinite 1.5s;
  transition:
    background 0.2s,
    transform 0.2s;
}
.c-t-submit:hover {
  background: #4338ca;
  transform: translateY(-1px);
}
.c-t-home-bar {
  background: #141620;
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.c-t-home-pill {
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: #2a2d44;
}

/* ── CTA BANNER ── */
.c-cta-section {
  padding: 0;
  position: relative;
}
.c-cta-section::before {
  content: "";
  position: absolute;
  top: 51%;
  height: 100%;
  width: 100%;
  left: 0;
  background: #0d1233;
  z-index: -1;
}
.c-cta-card {
  background: var(--blue);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 60px;
  min-height: 160px;
  position: relative;
  overflow: hidden;
  gap: 24px;
}
.c-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.c-cta-text {
  position: relative;
  z-index: 1;
}
.c-cta-text h2 {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}
.c-cta-text p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 6px;
}
.c-cta-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: var(--navy);
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  font-size: 13.5px;
  font-weight: 800;
  font-family: inherit;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.c-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}
.c-cta-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
}

/* ── SECTION COMMON (Career page) ── */
.sec-head-c {
  text-align: center;
  margin-bottom: 52px;
}
.sec-head-c .section-desc {
  margin: 0 auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .c-perks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .c-why-grid {
    grid-template-columns: 1fr;
  }
  .c-process-steps {
    grid-template-columns: 1fr 1fr;
  }
  .c-process-steps::before {
    display: none;
  }
  .c-tablet-outer {
    width: 100%;
    max-width: 560px;
  }
  .c-hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }
}
@media (max-width: 640px) {
  .c-perks-grid {
    grid-template-columns: 1fr;
  }
  .c-process-steps {
    grid-template-columns: 1fr;
  }
  .c-cta-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }
  .c-cta-btn {
    width: 100%;
    justify-content: center;
  }
  .c-hero-stat-div {
    display: none;
  }
  .c-filter-tabs {
    justify-content: flex-start;
  }
  .c-t-form {
    grid-template-columns: 1fr;
  }
  .c-job-header {
    flex-wrap: wrap;
  }
}
/********************** real state css  ************************/

/* STATS STRIP */
.re-stats-strip {
  background: #fff;
  padding: 0 0 60px;
}
.re-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.re-stat-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.re-stat-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1a56db, #f5a623);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.re-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26, 86, 219, 0.12);
}
.re-stat-card:hover::after {
  transform: scaleX(1);
}
.re-stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: #eef4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
  transition: background 0.3s;
}
.re-stat-card:hover .re-stat-icon {
  background: #1a56db;
}
.re-stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: #0d1b3e;
  line-height: 1;
}
.re-stat-num span {
  color: #f5a623;
}
.re-stat-label {
  font-size: 0.82rem;
  color: #64748b;
  margin-top: 6px;
  font-weight: 500;
}

/* SERVICES (alternating rows) */
.re-services-section {
  background: #f8fafc;
  padding: 80px 0;
}

/* PROPERTY MOCK */
.re-prop-mock {
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.re-prop-header {
  background: linear-gradient(135deg, #0d1117, #1a56db);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.re-prop-logo {
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}
.re-prop-nav {
  display: flex;
  gap: 14px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}
.re-prop-body {
  padding: 16px;
}
.re-prop-search {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: #94a3b8;
  margin-bottom: 14px;
}
.re-prop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.re-prop-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  animation: propCardFloat 3s ease-in-out infinite;
}
.re-prop-card:nth-child(2) {
  animation-delay: 0.3s;
}
.re-prop-card:nth-child(3) {
  animation-delay: 0.6s;
}
.re-prop-card:nth-child(4) {
  animation-delay: 0.9s;
}
@keyframes propCardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
.re-prop-img {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.re-prop-info {
  padding: 8px;
}
.re-prop-price {
  font-size: 0.78rem;
  font-weight: 900;
  color: #1a56db;
}
.re-prop-addr {
  font-size: 0.65rem;
  color: #64748b;
  margin-top: 2px;
}
.re-prop-badge {
  display: inline-block;
  background: #ecfdf5;
  color: #065f46;
  font-size: 0.58rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-top: 4px;
}

/* CRM MOCK */
.re-crm-mock {
  border-radius: 16px;
  background: #0f172a;
  border: 1px solid #1e293b;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.crm-topbar {
  background: #1e293b;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.crm-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.crm-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #94a3b8;
  margin-left: 8px;
}
.crm-body {
  padding: 16px;
}
.crm-lead-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #1e293b;
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 8px;
  animation: crmRowFade 2.5s ease-in-out infinite;
}
.crm-lead-row:nth-child(2) {
  animation-delay: 0.4s;
}
.crm-lead-row:nth-child(3) {
  animation-delay: 0.8s;
}
@keyframes crmRowFade {
  0%,
  100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}
.crm-av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.crm-lead-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: #e2e8f0;
}
.crm-lead-prop {
  font-size: 0.65rem;
  color: #64748b;
}
.crm-status {
  margin-left: auto;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
}
.st-hot {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}
.st-warm {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
}
.st-closed {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}
.crm-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}
.crm-stat-box {
  background: #1e293b;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}
.crm-stat-box .n {
  font-size: 1.1rem;
  font-weight: 900;
  color: #60a5fa;
}
.crm-stat-box .l {
  font-size: 0.6rem;
  color: #64748b;
  margin-top: 2px;
}

/* WHATSAPP MOCK */
.re-wa-mock {
  border-radius: 16px;
  background: #075e54;
  border: 1px solid #128c7e;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.wa-re-header {
  background: #075e54;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wa-re-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.wa-re-name {
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
}
.wa-re-status {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.7);
}
.wa-re-body {
  background: #ece5dd;
  padding: 14px;
}
.wa-re-msg {
  max-width: 85%;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.75rem;
  line-height: 1.5;
  margin-bottom: 8px;
  position: relative;
}
.wa-re-in {
  background: #fff;
  color: #333;
  border-radius: 0 8px 8px 8px;
}
.wa-re-out {
  background: #dcf8c6;
  color: #333;
  margin-left: auto;
  border-radius: 8px 0 8px 8px;
}
.wa-re-time {
  font-size: 0.58rem;
  color: #999;
  text-align: right;
  margin-top: 2px;
}
.wa-typing-indicator {
  background: #fff;
  border-radius: 0 8px 8px 8px;
  padding: 8px 14px;
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.typing-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #999;
  animation: typingBounce 1.2s ease-in-out infinite;
}
.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}
.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes typingBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
    background: #25d366;
  }
}

/* LEAD GEN MOCK */
.re-lead-mock {
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.lead-header {
  background: linear-gradient(135deg, #1a56db, #3b82f6);
  padding: 16px 20px;
  color: #fff;
  text-align: center;
}
.lead-header h5 {
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 3px;
}
.lead-header p {
  font-size: 0.7rem;
  opacity: 0.8;
}
.lead-form-body {
  padding: 16px;
}
.lead-field {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 0.72rem;
  color: #94a3b8;
  margin-bottom: 8px;
  animation: leadFieldPulse 3s ease-in-out infinite;
}
.lead-field:nth-child(2) {
  animation-delay: 0.3s;
}
.lead-field:nth-child(3) {
  animation-delay: 0.6s;
}
@keyframes leadFieldPulse {
  0%,
  100% {
    border-color: #e2e8f0;
  }
  50% {
    border-color: #93c5fd;
  }
}
.lead-cta {
  background: linear-gradient(135deg, #1a56db, #3b82f6);
  color: #fff;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 4px;
  animation: leadCtaGlow 2.5s ease-in-out infinite;
}
@keyframes leadCtaGlow {
  0%,
  100% {
    box-shadow: 0 2px 8px rgba(26, 86, 219, 0.3);
  }
  50% {
    box-shadow: 0 4px 20px rgba(26, 86, 219, 0.6);
  }
}
.lead-trust {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
  font-size: 0.65rem;
  color: #94a3b8;
}

/* WHY SECTION */
.re-why-section {
  background: #fff;
  padding: 80px 0;
}
.re-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

/* INDUSTRIES */
.re-industries-section {
  background: #f8fafc;
  padding: 80px 0;
}
.re-ind-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 44px;
}
.re-ind-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px 12px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}
.re-ind-card:hover {
  border-color: #1a56db;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26, 86, 219, 0.1);
}
.re-ind-emoji {
  font-size: 2rem;
  margin-bottom: 8px;
}
.re-ind-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #334155;
}

/* PROCESS */
.re-process-section {
  background: #fff;
  padding: 80px 0;
}

/* FAQ */
.re-faq-section {
  background: #f8fafc;
  padding: 80px 0;
}

/* CTA BOTTOM */
.re-cta-section {
  padding: 0;
  position: relative;
}
.re-cta-section::before {
  content: "";
  position: absolute;
  top: 51%;
  height: 100%;
  width: 100%;
  left: 0;
  background: #0d1233;
  z-index: -1;
}
.re-cta-card {
  background: #1a56db;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 60px;
  min-height: 160px;
  position: relative;
  overflow: hidden;
  gap: 24px;
}
.re-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.re-cta-text {
  position: relative;
  z-index: 1;
}
.re-cta-text h2 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}
.re-cta-text p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 6px;
}
.re-cta-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #0d1b3e;
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  font-size: 13.5px;
  font-weight: 800;
  font-family: inherit;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  text-decoration: none;
}
.re-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}
.re-cta-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1a56db;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .re-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .re-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .re-ind-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .service-row,
  .service-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .re-cta-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }
  .re-cta-btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 640px) {
  .re-stats-grid,
  .re-why-grid,
  .re-ind-grid {
    grid-template-columns: 1fr 1fr;
  }
  .re-prop-grid {
    grid-template-columns: 1fr;
  }
}
/*****************  blog css  ***********************/
/* ── BLOG HERO ── */
.blog-hero {
  position: relative;
  background: linear-gradient(135deg, #0d1117 0%, #0f3a8e 60%, #1a56db 100%);
  padding: 70px 0 130px;
  overflow: hidden;
  text-align: center;
}

.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.blog-hero::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: #f8fafc;
  clip-path: ellipse(55% 100% at 50% 100%);
}

.blog-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.85rem;
  color: #f5a623;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.blog-hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #f5a623;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.blog-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
  max-width: 700px;
  margin: 0 auto 16px;
}

.blog-hero h1 em {
  color: #f5a623;
  font-style: italic;
}

.blog-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  margin: 0 auto;
}

/* breadcrumb */
.blog-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.blog-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.blog-breadcrumb a:hover {
  color: #fff;
}

.blog-breadcrumb span {
  color: #f5a623;
  font-weight: 600;
}

/* ── BLOG SECTION ── */
.blog-listing-section {
  background: #f8fafc;
  padding: 64px 0 80px;
}

/* ── BLOG GRID ── */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── BLOG CARD ── */
.post-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.35s;
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  border-color: #c3d4f8;
}

.post-thumb-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.post-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.post-card:hover .post-thumb-wrap img {
  transform: scale(1.06);
}

.post-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.post-cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #1a56db;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.post-cat-badge.green {
  background: #16a34a;
}

.post-cat-badge.purple {
  background: #7c3aed;
}

.post-cat-badge.amber {
  background: #d97706;
}

.post-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  color: #94a3b8;
  margin-bottom: 12px;
  font-weight: 500;
}

.post-meta-row .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #cbd5e1;
}

.post-meta-row svg {
  width: 13px;
  height: 13px;
}

.post-title-link {
  font-size: 1.02rem;
  font-weight: 700;
  color: #0d1117;
  line-height: 1.5;
  margin-bottom: 10px;
  display: block;
  text-decoration: none;
  transition: color 0.2s;
}

.post-title-link:hover {
  color: #1a56db;
}

.post-excerpt {
  font-size: 0.86rem;
  color: #64748b;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 20px;
}

.post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #1a56db;
  text-decoration: none;
  transition: gap 0.2s;
}

.read-more-link:hover {
  gap: 10px;
  color: #0f3a8e;
}

.read-more-link svg {
  width: 14px;
  height: 14px;
}

/* ── PAGINATION ── */
.pagination-wrap {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 52px;
}

.page-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  color: #64748b;
  transition: all 0.2s;
  text-decoration: none;
}

.page-btn.active,
.page-btn:hover {
  background: #1a56db;
  color: #fff;
  border-color: #1a56db;
}

.page-btn.arrow {
  font-size: 1.1rem;
}

/* ── ANIMATIONS ── */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .post-card.featured {
    flex-direction: column;
    grid-column: auto;
  }

  .post-card.featured .post-thumb-wrap {
    width: 100%;
    height: 220px;
  }
}

@media (max-width: 640px) {
  .posts-grid {
    grid-template-columns: 1fr;
  }
}

/* ── BLOG DETAIL HERO ── */
.blog-detail-hero {
  position: relative;
  background: linear-gradient(135deg, #0d1117 0%, #0f3a8e 60%, #1a56db 100%);
  padding: 60px 0 120px;
  overflow: hidden;
  text-align: center;
}
.blog-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.blog-detail-hero::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: #f8fafc;
  clip-path: ellipse(55% 100% at 50% 100%);
}
.blog-detail-hero .inner {
  position: relative;
  z-index: 1;
}
.blog-detail-hero .cat-badge {
  display: inline-block;
  background: rgba(124, 58, 237, 0.25);
  border: 1px solid rgba(124, 58, 237, 0.4);
  color: #c4b5fd;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.blog-detail-hero h1 {
  font-size: 40px;
  color: #fff;
  font-weight: 800;
  line-height: 1.4;
  max-width: 820px;
  margin: 0 auto 24px;
}
.blog-detail-hero .post-meta-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.meta-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
.meta-chip svg {
  width: 14px;
  height: 14px;
}
.meta-chip .avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
}
/* breadcrumb */
.blog-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}
.blog-breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.blog-breadcrumb a:hover {
  color: #fff;
}
.blog-breadcrumb span {
  color: #f5a623;
  font-weight: 600;
}

/* ── MAIN LAYOUT ── */
.blog-detail-section {
  background: #f8fafc;
  padding: 56px 0 80px;
}
.blog-detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: flex-start;
}

/* ── ARTICLE ── */
.blog-article {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}
.article-hero-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.article-body {
  padding: 40px 44px;
}
.article-body h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0d1117;
  margin: 32px 0 14px;
  line-height: 1.3;
}
.article-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0d1117;
  margin: 24px 0 10px;
}
.article-body p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.85;
  margin-bottom: 18px;
}
.article-body ul,
.article-body ol {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.article-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
}
.article-body ul li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 10px 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #1a56db;
}

/* Check list two columns */
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #334155;
  font-weight: 500;
}
.check-item::before {
  content: "✓";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #1a56db;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ── SIDEBAR ── */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: sticky;
  top: 90px;
}
.sidebar-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  overflow: hidden;
}
.sidebar-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0d1117;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-title::before {
  content: "";
  width: 4px;
  height: 18px;
  border-radius: 2px;
  background: linear-gradient(to bottom, #1a56db, #f5a623);
  display: block;
  flex-shrink: 0;
}

/* Related posts */
.related-post-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f8fafc;
  cursor: pointer;
}
.related-post-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.related-thumb {
  width: 64px;
  height: 56px;
  border-radius: 10px;
  flex-shrink: 0;
  object-fit: cover;
  background: #eef4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.related-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #334155;
  line-height: 1.4;
  margin-bottom: 4px;
  transition: color 0.2s;
}
.related-post-item:hover .related-title {
  color: #1a56db;
}
.related-date {
  font-size: 0.72rem;
  color: #94a3b8;
  font-weight: 500;
}

/* ── ANIMATIONS ── */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .blog-detail-layout {
    grid-template-columns: 1fr;
  }
  .blog-sidebar {
    position: static;
  }
}
@media (max-width: 640px) {
  .article-body {
    padding: 24px 20px;
  }
  .comment-form-grid {
    grid-template-columns: 1fr;
  }
  .checklist-grid {
    grid-template-columns: 1fr;
  }
  .blog-detail-hero h1 {
    font-size: 1.6rem;
  }
}
/* end */

/* no jobs UI */
  @keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  @keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes pulse {
    0%, 100% { transform: scale(1); opacity: .5; }
    50% { transform: scale(1.15); opacity: 1; }
  }
  @keyframes orbit {
    from { transform: rotate(0deg) translateX(62px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(62px) rotate(-360deg); }
  }
  @keyframes orbit2 {
    from { transform: rotate(120deg) translateX(62px) rotate(-120deg); }
    to { transform: rotate(480deg) translateX(62px) rotate(-480deg); }
  }
  @keyframes orbit3 {
    from { transform: rotate(240deg) translateX(62px) rotate(-240deg); }
    to { transform: rotate(600deg) translateX(62px) rotate(-600deg); }
  }
  @keyframes shimmer {
    0%, 100% { opacity: .15; }
    50% { opacity: .35; }
  }
  @keyframes badgePop {
    0% { opacity: 0; transform: scale(.8); }
    60% { transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
  }
 
  .nj-wrap {
    text-align: center;
    padding: 52px 24px 44px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
  }
  .nj-bg-blob1 {
    position: absolute;
    width: 180px; height: 180px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    top: -60px; right: -60px;
    animation: shimmer 4s ease-in-out infinite;
  }
  .nj-bg-blob2 {
    position: absolute;
    width: 120px; height: 120px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    bottom: -40px; left: -40px;
    animation: shimmer 4s ease-in-out infinite .8s;
  }
  .nj-ring-wrap {
    position: relative;
    width: 140px; height: 140px;
    margin: 0 auto 28px;
    animation: floatUp 3.5s ease-in-out infinite;
  }
  .nj-ring {
    position: absolute; inset: 0;
    border-radius: 50%;
    border: 1.5px dashed #cbd5e1;
    animation: shimmer 2.5s ease-in-out infinite;
  }
  .nj-ring2 {
    position: absolute; inset: 14px;
    border-radius: 50%;
    border: 1px dashed #e2e8f0;
    animation: shimmer 2.5s ease-in-out infinite .6s;
  }
  .nj-center-icon {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
  }
  .nj-icon-bg {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    display: flex; align-items: center; justify-content: center;
  }
  .nj-dot {
    position: absolute;
    top: 50%; left: 50%;
    width: 10px; height: 10px;
    border-radius: 50%;
    margin: -5px 0 0 -5px;
  }
  .nj-d1 { background: #378ADD; animation: orbit 4s linear infinite; }
  .nj-d2 { background: #1D9E75; animation: orbit2 4s linear infinite; }
  .nj-d3 { background: #EF9F27; animation: orbit3 4s linear infinite; }
 
  .nj-title {
    font-size: 20px;
    font-weight: 700;
    color: #0d1b3e;
    margin: 0 0 10px;
    animation: fadeSlideUp .5s ease .1s both;
    font-family: 'Inter', sans-serif;
  }
  .nj-desc {
    font-size: 14px;
    color: #64748b;
    max-width: 360px;
    margin: 0 auto 28px;
    line-height: 1.7;
    animation: fadeSlideUp .5s ease .2s both;
    font-family: 'Inter', sans-serif;
  }
  .nj-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px;
  }
  .nj-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    padding: 7px 14px;
    border-radius: 99px;
    border: 1px solid #e2e8f0;
    color: #64748b;
    background: #f8fafc;
    font-family: 'Inter', sans-serif;
    animation: badgePop .4s ease both;
  }
  .nj-badge svg { width: 13px; height: 13px; flex-shrink: 0; }
  .nj-b1 { animation-delay: .3s; }
  .nj-b2 { animation-delay: .45s; }
  .nj-b3 { animation-delay: .6s; }
 
  .nj-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 30px;
    background: #1a56db;
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s, background .2s;
    animation: fadeSlideUp .5s ease .7s both;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
  }
  .nj-cta-btn:hover { background: #0f3a8e; transform: translateY(-2px); }
  .nj-cta-btn svg { width: 15px; height: 15px; }
 
  .nj-notify-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 18px;
    animation: fadeSlideUp .5s ease .85s both;
    font-family: 'Inter', sans-serif;
  }
  .nj-notify-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #1D9E75;
    animation: pulse 1.8s ease-in-out infinite;
    flex-shrink: 0;
  }
  /* end */
