/* ============================================================
   CYBERYAAN — SERVICES PAGES  |  services.css
   Scoped — no global resets, no body/root overrides
   Colors: navy #0c1a44, teal #1aa6b7, white sections
   ============================================================ */

:root {
  --body-font: "DM Sans", Helvetica, Arial, sans-serif;
  --heading-font: "Urbanist", Helvetica, Arial, sans-serif;
}

/* ── CSS vars scoped to service sections ── */
.sv-hero,
.sv-service-hero,
.sv-grid-section,
.sv-why-section,
.sv-content-section {
  --sv-navy:      #0c1a44;
  --sv-navy-2:    #102055;
  --sv-navy-3:    #0a1535;
  --sv-teal:      #1aa6b7;
  --sv-teal-lt:   #22c5d8;
  --sv-blue:      #2563eb;
  --sv-blue-lt:   #60a5fa;
  --sv-purple:    #7c3aed;
  --sv-orange:    #ea580c;
  --sv-green:     #16a34a;
  --sv-red:       #dc2626;
  --sv-white:     #ffffff;
  --sv-off-white: #f8faff;
  --sv-light-bg:  #f1f5fb;
  --sv-text:      #1e293b;
  --sv-text-mid:  #475569;
  --sv-text-light:#64748b;
  --sv-border:    rgba(0,0,0,0.08);
  --sv-border-lt: rgba(26,166,183,0.18);
  --sv-dark-muted:rgba(255,255,255,0.55);
  --sv-dark-border:rgba(255,255,255,0.09);
  --sv-radius:    14px;
  --sv-radius-sm: 8px;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.sv-hero *,
.sv-service-hero *,
.sv-grid-section *,
.sv-why-section *,
.sv-content-section * {
  box-sizing: border-box;
}

/* ── CONTAINER ── */
.sv-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  margin-top: 100px;
}

/* ── SHARED SECTION HEAD ── */
.sv-section-head { margin-bottom: 48px; }
.sv-section-head.text-center { text-align: center; }
.sv-section-head h2 {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--sv-text);
}
.sv-section-head h2 span { color: var(--sv-teal); }
.sv-section-head p { font-size: 15px; color: var(--sv-text-mid); max-width: 560px; margin: 0 auto; }

.sv-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sv-teal);
  background: rgba(26,166,183,0.1);
  border: 1px solid rgba(26,166,183,0.22);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

/* ════════════════════════════════════════════
   HERO — SERVICES LANDING (dark)
════════════════════════════════════════════ */
.sv-hero {
  position: relative;
  padding: 60px 0 70px;
  overflow: hidden;
  background: var(--sv-navy);
  color: #fff;
}
.sv-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 80% 15%, rgba(26,166,183,0.13) 0%, transparent 60%),
    radial-gradient(ellipse 45% 45% at 5% 85%, rgba(37,99,235,0.09) 0%, transparent 55%);
}
.sv-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(26,166,183,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
}
.sv-hero .sv-container { position: relative; z-index: 2; }

.sv-hero-inner { max-width: 700px; }

.sv-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,166,183,0.15);
  border: 1px solid rgba(26,166,183,0.3);
  border-radius: 100px;
  padding: 5px 16px;
  font-size: 13px;
  font-weight: 700;
  color: #22c5d8;
  margin-bottom: 20px;
}

.sv-hero-title {
  font-family: var(--heading-font);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700 !important;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 20px;
}
.sv-hero-title span { color: var(--sv-teal); }

.sv-hero-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 620px;
}

.sv-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sv-hero-pills span {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}
.sv-hero-pills i { color: var(--sv-teal); font-size: 12px; }

/* ════════════════════════════════════════════
   SERVICES GRID — white section
════════════════════════════════════════════ */
.sv-grid-section {
  padding: 80px 0;
  background: var(--sv-off-white);
}

/* Override section head for white bg */
.sv-grid-section .sv-section-head h2 { color: var(--sv-text); }

.sv-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sv-card {
  background: #fff;
  border: 1px solid var(--sv-border);
  border-radius: var(--sv-radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none !important;
  color: var(--sv-text) !important;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  position: relative;
}
.sv-card:hover {
  border-color: rgba(26,166,183,0.4);
  box-shadow: 0 8px 32px rgba(26,166,183,0.1);
  transform: translateY(-4px);
  color: var(--sv-text) !important;
}

.sv-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(26,166,183,0.1);
  border: 1px solid rgba(26,166,183,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--sv-teal);
  flex-shrink: 0;
}
.sv-card-icon.teal   { background: rgba(26,166,183,0.1);  border-color: rgba(26,166,183,0.2);  color: var(--sv-teal); }
.sv-card-icon.blue   { background: rgba(37,99,235,0.1);   border-color: rgba(37,99,235,0.2);   color: var(--sv-blue); }
.sv-card-icon.purple { background: rgba(124,58,237,0.1);  border-color: rgba(124,58,237,0.2);  color: var(--sv-purple); }
.sv-card-icon.orange { background: rgba(234,88,12,0.1);   border-color: rgba(234,88,12,0.2);   color: var(--sv-orange); }
.sv-card-icon.green  { background: rgba(22,163,74,0.1);   border-color: rgba(22,163,74,0.2);   color: var(--sv-green); }
.sv-card-icon.red    { background: rgba(220,38,38,0.1);   border-color: rgba(220,38,38,0.2);   color: var(--sv-red); }

.sv-card-body { flex: 1; }
.sv-card-body h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--sv-text);
  margin: 0 0 8px;
  line-height: 1.3;
}
.sv-card-body p {
  font-size: 13.5px;
  color: var(--sv-text-mid);
  line-height: 1.65;
  margin: 0 0 14px;
}

.sv-card-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.sv-card-tags span {
  background: var(--sv-light-bg);
  border: 1px solid rgba(0,0,0,0.07);
  color: var(--sv-text-mid);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 100px;
}

.sv-card-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--sv-text-light);
  align-self: flex-end;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.sv-card:hover .sv-card-arrow {
  background: var(--sv-teal);
  color: #fff;
  border-color: var(--sv-teal);
}

/* CTA Card */
.sv-cta-card {
  background: var(--sv-navy);
  border-color: rgba(26,166,183,0.3);
  color: #fff !important;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.sv-cta-card:hover {
  border-color: var(--sv-teal);
  box-shadow: 0 8px 32px rgba(26,166,183,0.15);
}
.sv-cta-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.sv-cta-icon { font-size: 32px; color: var(--sv-teal); }
.sv-cta-card h3 { font-family: 'Barlow', sans-serif; font-size: 18px; font-weight: 500; color: #fff; margin: 0; }
.sv-cta-card p  { font-size: 13.5px; color: rgba(255,255,255,0.6); line-height: 1.6; margin: 0; }
.sv-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sv-teal);
  color: #fff !important;
  padding: 11px 22px;
  border-radius: var(--sv-radius-sm);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none !important;
  transition: background 0.2s;
  margin-top: 4px;
}
.sv-cta-btn:hover { background: var(--sv-teal-lt); color: #fff !important; }

/* ════════════════════════════════════════════
   WHY SECTION — dark navy
════════════════════════════════════════════ */
.sv-why-section {
  padding: 80px 0;
  background: var(--sv-navy);
  color: #fff;
}
.sv-why-section .sv-section-head h2 { color: #fff; }
.sv-why-section .sv-section-head p  { color: rgba(255,255,255,0.55); }

.sv-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.sv-why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--sv-radius);
  padding: 28px 22px;
  transition: border-color 0.25s, transform 0.25s;
}
.sv-why-card:hover { border-color: rgba(26,166,183,0.35); transform: translateY(-3px); }
.sv-why-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: rgba(26,166,183,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--sv-teal);
  margin-bottom: 16px;
}
.sv-why-icon.teal   { background: rgba(26,166,183,0.15);  color: var(--sv-teal); }
.sv-why-icon.blue   { background: rgba(37,99,235,0.15);   color: #60a5fa; }
.sv-why-icon.orange { background: rgba(234,88,12,0.15);   color: #fb923c; }
.sv-why-card h4 { font-family: 'Barlow', sans-serif; font-size: 16px; font-weight: 500; color: #fff; margin: 0 0 10px; }
.sv-why-card p  { font-size: 13.5px; color: rgba(255,255,255,0.55); line-height: 1.7; margin: 0; }

/* ════════════════════════════════════════════
   SINGLE SERVICE PAGE HERO (dark)
════════════════════════════════════════════ */
.sv-service-hero {
  position: relative;
  padding: 56px 0 64px;
  overflow: hidden;
  background: var(--sv-navy);
  color: #fff;
}
.sv-service-hero .sv-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 90% 20%, rgba(26,166,183,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 5% 80%, rgba(37,99,235,0.08) 0%, transparent 50%);
}
.sv-service-hero .sv-container { position: relative; z-index: 2; }

.sv-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.sv-breadcrumb a { color: var(--sv-teal); text-decoration: none; }
.sv-breadcrumb a:hover { color: var(--sv-teal-lt); }
.sv-breadcrumb i { font-size: 10px; }

.sv-service-hero-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.sv-service-icon-lg {
  width: 64px; height: 64px;
  border-radius: 14px;
  background: rgba(26,166,183,0.15);
  border: 1px solid rgba(26,166,183,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--sv-teal);
  margin-bottom: 20px;
}
.sv-service-title {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 500;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 18px;
}
.sv-service-title span { color: var(--sv-teal); }
.sv-service-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 24px;
}
.sv-service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.sv-service-pills span {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 5px 13px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.75);
}
.sv-service-pills i { color: var(--sv-teal); font-size: 11px; }

.sv-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--sv-teal);
  color: #fff !important;
  padding: 13px 26px;
  border-radius: var(--sv-radius-sm);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none !important;
  transition: background 0.2s, transform 0.2s;
}
.sv-contact-btn:hover { background: var(--sv-teal-lt); transform: translateY(-2px); color: #fff !important; }

/* Quick facts sidebar card in hero */
.sv-quick-facts {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--sv-radius);
  overflow: hidden;
}
.sv-qf-title {
  background: rgba(26,166,183,0.15);
  border-bottom: 1px solid rgba(26,166,183,0.2);
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--sv-teal);
}
.sv-qf-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sv-qf-label { font-size: 12px; color: rgba(255,255,255,0.4); flex-shrink: 0; }
.sv-qf-val   { font-size: 13px; color: rgba(255,255,255,0.85); text-align: right; }
.sv-qf-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 16px 20px 20px;
  background: var(--sv-teal);
  color: #fff !important;
  padding: 12px 20px;
  border-radius: var(--sv-radius-sm);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none !important;
  transition: background 0.2s;
}
.sv-qf-btn:hover { background: var(--sv-teal-lt); color: #fff !important; }

/* ════════════════════════════════════════════
   CONTENT SECTION — white bg
════════════════════════════════════════════ */
.sv-content-section {
  padding: 72px 0 80px;
  background: #fff;
}

.sv-content-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

/* Main content */
.sv-main-content { display: flex; flex-direction: column; gap: 48px; }

.sv-content-block h2 {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 500;
  color: var(--sv-text);
  margin: 0 0 16px;
  line-height: 1.3;
}
.sv-content-block p {
  font-size: 14.5px;
  color: var(--sv-text-mid);
  line-height: 1.8;
  margin: 0 0 14px;
}
.sv-content-block p:last-child { margin-bottom: 0; }

/* Vulnerability grid */
.sv-vuln-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.sv-vuln-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--sv-text);
  background: var(--sv-off-white);
  border: 1px solid var(--sv-border);
  border-radius: var(--sv-radius-sm);
  padding: 10px 14px;
}
.sv-vuln-item i { color: var(--sv-teal); font-size: 13px; flex-shrink: 0; }

/* Method steps */
.sv-method-steps { display: flex; flex-direction: column; gap: 0; }
.sv-step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--sv-border);
}
.sv-step:last-child { border-bottom: none; padding-bottom: 0; }
.sv-step-num {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--sv-teal);
  background: rgba(26,166,183,0.1);
  border: 1px solid rgba(26,166,183,0.2);
  border-radius: 8px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.sv-step-body h4 {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--sv-text);
  margin: 0 0 6px;
}
.sv-step-body p {
  font-size: 13.5px;
  color: var(--sv-text-mid);
  line-height: 1.65;
  margin: 0;
}

/* Tools */
.sv-tools-row { display: flex; flex-wrap: wrap; gap: 10px; }
.sv-tool-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--sv-navy);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
}
.sv-tool-pill i { color: var(--sv-teal); font-size: 11px; }

/* ── SIDEBAR ── */
.sv-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}
.sv-sidebar-card {
  background: #fff;
  border: 1px solid var(--sv-border);
  border-radius: var(--sv-radius);
  padding: 22px;
}
.sv-sidebar-card h5 {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--sv-text);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--sv-border);
}
.sv-sidebar-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.sv-sidebar-links li a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  font-size: 13.5px;
  color: var(--sv-text-mid);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.sv-sidebar-links li a:hover { background: rgba(26,166,183,0.07); color: var(--sv-teal); }
.sv-sidebar-links li a i    { color: rgba(0,0,0,0.2); font-size: 10px; flex-shrink: 0; }
.sv-sidebar-links li.active a {
  background: rgba(26,166,183,0.1);
  color: var(--sv-teal);
  font-weight: 500;
}
.sv-sidebar-links li.active a i { color: var(--sv-teal); }

/* Contact sidebar card */
.sv-contact-card {
  background: var(--sv-navy);
  border-color: rgba(26,166,183,0.2);
  text-align: center;
}
.sv-contact-icon { font-size: 30px; color: var(--sv-teal); margin-bottom: 12px; display: block; }
.sv-contact-card h5 { color: #fff; border-color: rgba(255,255,255,0.1); }
.sv-contact-card p  { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; margin: 0 0 16px; }
.sv-sidebar-btn {
  display: block;
  width: 100%;
  background: var(--sv-teal);
  color: #fff !important;
  padding: 11px 16px;
  border-radius: var(--sv-radius-sm);
  font-size: 13.5px;
  font-weight: 500;
  text-align: center;
  text-decoration: none !important;
  transition: background 0.2s;
  margin-bottom: 16px;
}
.sv-sidebar-btn:hover { background: var(--sv-teal-lt); color: #fff !important; }
.sv-contact-meta { display: flex; flex-direction: column; gap: 8px; }
.sv-contact-meta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}
.sv-contact-meta a:hover { color: var(--sv-teal); }
.sv-contact-meta i { color: var(--sv-teal); font-size: 12px; }

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .sv-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .sv-why-grid   { grid-template-columns: repeat(2, 1fr); }
  .sv-service-hero-inner { grid-template-columns: 1fr 280px; gap: 32px; }
  .sv-content-grid { grid-template-columns: 1fr 260px; gap: 32px; }
}

@media (max-width: 860px) {
  .sv-service-hero-inner { grid-template-columns: 1fr; }
  .sv-quick-facts { display: none; }
  .sv-content-grid { grid-template-columns: 1fr; }
  .sv-sidebar { position: static; }
  .sv-vuln-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .sv-hero { padding: 44px 0 52px; }
  .sv-service-hero { padding: 40px 0 48px; }
  .sv-grid-section,
  .sv-why-section,
  .sv-content-section { padding: 56px 0; }
  .sv-cards-grid { grid-template-columns: 1fr; gap: 14px; }
  .sv-why-grid   { grid-template-columns: 1fr 1fr; gap: 14px; }
  .sv-why-card   { padding: 20px 16px; }
  .sv-section-head { margin-bottom: 32px; }
  .sv-hero-title { font-size: 30px; }
  .sv-service-title { font-size: 26px; }
  .sv-breadcrumb { font-size: 12px; }
}

@media (max-width: 480px) {
  .sv-why-grid { grid-template-columns: 1fr; }
  .sv-hero-pills { gap: 8px; }
  .sv-hero-pills span { font-size: 12px; padding: 5px 11px; }
  .sv-card { padding: 22px 18px; }
}