/* =====================================================
   DIGITAL HERO SECTION
===================================================== */

.digital-hero {
  background-color: var(--color-bg);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

/* GRID LAYOUT */

.digital-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: var(--space-xl);
}

/* =====================================================
   LEFT CONTENT
===================================================== */

.digital-hero-content {
  max-width: 600px;
}

.digital-hero-title {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.digital-hero-title span {
  color: var(--color-primary);
}

.digital-hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
}

.digital-hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* =====================================================
   RIGHT IMAGE
===================================================== */

.digital-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.digital-hero-image {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  transition: transform 0.4s ease;
}

.digital-hero-image:hover {
  transform: translateY(-6px);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 992px) {
  .digital-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .digital-hero-content {
    margin-inline: auto;
  }

  .digital-hero-actions {
    justify-content: center;
  }

  .digital-hero-image {
    max-width: 480px;
  }
}

@media (max-width: 576px) {
  .digital-hero {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
  }

  .digital-hero-title {
    font-size: 1.9rem;
  }

  .digital-hero-image {
    max-width: 100%;
    border-radius: 12px;
  }
}

/* =====================================================
   START: TRUST INDICATORS STRIP
   ===================================================== */

.trust-strip {
  background-color: var(--color-surface);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  padding-block: var(--space-lg);
}

.trust-item {
  text-align: center;
}

.trust-item h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.trust-item p {
  font-size: var(--fs-small);
  color: var(--color-muted);
  max-width: 220px;
  margin-inline: auto;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 992px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

/* =====================================================
   END: TRUST INDICATORS STRIP
   ===================================================== */

/* =====================================================
   START: WHO WE PROTECT
   ===================================================== */

.who-we-protect {
  background-color: var(--color-bg);
}

/* ---------- SECTION HEADER ---------- */

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
}

/* ---------- PROTECT GRID ---------- */

.protect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

/* ---------- PROTECT CARD ---------- */

.protect-card {
  background-color: var(--color-surface);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.protect-card h3 {
  margin-bottom: var(--space-sm);
}

.protect-card p {
  font-size: var(--fs-small);
}

.protect-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* ---------- PROTECT ICON ---------- */

.protect-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 180, 255, 0.12);

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: var(--space-md);
  color: var(--color-primary);

  transition: var(--transition-base);
}

.protect-card:hover .protect-icon {
  transform: translateY(-4px) scale(1.05);
  background: rgba(0, 180, 255, 0.2);
}

.protect-icon svg {
  transition: var(--transition-base);
}

.protect-card:hover .protect-icon svg {
  transform: rotate(-5deg);
}

@keyframes iconPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 180, 255, 0.4);
  }
  100% {
    box-shadow: 0 0 0 12px rgba(0, 180, 255, 0);
  }
}

.protect-card:hover .protect-icon {
  animation: iconPulse 1.2s ease-out;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 992px) {
  .protect-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .protect-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   END: WHO WE PROTECT
   ===================================================== */

/* =====================================================
   START: CORE SERVICES OVERVIEW
   ===================================================== */

.core-services {
  background-color: var(--color-surface);
}

/* ---------- SERVICES GRID ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

/* ---------- SERVICE CARD ---------- */

.service-card {
  background-color: var(--color-bg);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);

  display: flex;
  flex-direction: column;
  gap: var(--space-sm);

  transition: var(--transition-base);
}

.service-card h3 {
  margin-top: var(--space-sm);
}

.service-card p {
  font-size: var(--fs-small);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* ---------- SERVICE ICON ---------- */

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 180, 255, 0.12);

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--color-primary);
  transition: var(--transition-base);
}

.service-card:hover .service-icon {
  background: rgba(0, 180, 255, 0.2);
  transform: scale(1.05);
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   END: CORE SERVICES OVERVIEW
   ===================================================== */

/* =====================================================
   START: WHY CYVERRA GLOBAL (PROFESSIONAL VERSION)
   ===================================================== */

.why-cyverra {
  background-color: var(--color-bg);
}

/* ---------- GRID LAYOUT ---------- */

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

/* ---------- CONTENT ---------- */

.why-content h2 {
  margin-bottom: var(--space-md);
}

.why-intro {
  max-width: 520px;
  margin-bottom: var(--space-lg);
}

/* ---------- POINTS ---------- */

.why-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.why-point {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.point-indicator {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 50%;
  background-color: var(--color-primary);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--color-primary);
}

/* ---------- IMAGE SIDE ---------- */

.why-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.why-image {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

/* Subtle professional hover */
.why-image:hover {
  transform: translateY(-6px);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

/* Tablet */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .why-intro {
    margin-inline: auto;
  }

  .why-points {
    align-items: center;
  }

  .why-point {
    justify-content: center;
    text-align: left;
    max-width: 520px;
  }

  .why-image-wrapper {
    margin-top: var(--space-lg);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .why-image {
    max-width: 100%;
  }
}

/* =====================================================
   END: WHY CYVERRA GLOBAL
   ===================================================== */

/* =====================================================
   START: ADVANCED THREAT AWARENESS (PRO VERSION)
   ===================================================== */

.advanced-threats {
  background-color: var(--color-surface);
}

/* ---------- GRID LAYOUT ---------- */

.advanced-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-xl);
  align-items: center;
}

/* ---------- IMAGE SIDE ---------- */

.threat-image-wrapper {
  display: flex;
  justify-content: center;
}

.threat-image {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.threat-image:hover {
  transform: translateY(-6px);
}

/* ---------- CONTENT ---------- */

.threat-content h2 {
  margin-bottom: var(--space-md);
}

.threat-intro {
  max-width: 520px;
  margin-bottom: var(--space-lg);
}

/* ---------- LIST ---------- */

.threat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.threat-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.threat-marker {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 50%;
  background-color: var(--color-primary);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--color-primary);
}

/* ---------- CTA ---------- */

.threat-cta {
  margin-top: var(--space-md);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

/* Tablet */
@media (max-width: 992px) {
  .advanced-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .threat-intro {
    margin-inline: auto;
  }

  .threat-list {
    align-items: center;
  }

  .threat-list li {
    justify-content: center;
    text-align: left;
    max-width: 520px;
  }

  .threat-image-wrapper {
    margin-bottom: var(--space-lg);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .threat-image {
    max-width: 100%;
  }
}

/* =====================================================
   END: ADVANCED THREAT AWARENESS
   ===================================================== */

/* =====================================================
   START: TRAINING & CAREER PROGRAMS
   ===================================================== */

.training-programs {
  background-color: var(--color-bg);
}

/* ---------- TRAINING FLOW ---------- */

.training-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

/* ---------- TRAINING STEP ---------- */

.training-step {
  background-color: var(--color-surface);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition-base);
}

.training-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(0, 180, 255, 0.25);
  margin-bottom: var(--space-sm);
}

.training-step h3 {
  margin-bottom: var(--space-sm);
}

.training-step p {
  font-size: var(--fs-small);
}

/* ---------- CTA ---------- */

.training-cta {
  margin-top: var(--space-xl);
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 992px) {
  .training-flow {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .training-flow {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   END: TRAINING & CAREER PROGRAMS
   ===================================================== */
/* =====================================================
   START: DIGITAL FORENSICS & LEGAL CREDIBILITY (PRO)
   ===================================================== */

.forensics-credibility {
  background-color: var(--color-surface);
}

/* ---------- GRID LAYOUT ---------- */

.forensics-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

/* ---------- CONTENT ---------- */

.forensics-content h2 {
  margin-bottom: var(--space-md);
}

.forensics-intro {
  max-width: 520px;
  margin-bottom: var(--space-lg);
}

.forensics-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.forensics-points li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.forensics-marker {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 50%;
  background-color: var(--color-primary);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--color-primary);
}

.forensics-cta {
  margin-top: var(--space-lg);
}

/* ---------- IMAGE ---------- */

.forensics-image-wrapper {
  display: flex;
  justify-content: center;
}

.forensics-image {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.forensics-image:hover {
  transform: translateY(-6px);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 992px) {
  .forensics-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .forensics-intro {
    margin-inline: auto;
  }

  .forensics-points {
    align-items: center;
  }

  .forensics-points li {
    justify-content: center;
    text-align: left;
    max-width: 520px;
  }

  .forensics-image-wrapper {
    margin-top: var(--space-lg);
  }
}

@media (max-width: 576px) {
  .forensics-image {
    max-width: 100%;
  }
}

/* =====================================================
   END: DIGITAL FORENSICS & LEGAL CREDIBILITY
   ===================================================== */
/* =====================================================
   START: VICTIM SUPPORT & COUNSELLING (PRO VERSION)
   ===================================================== */

.victim-support {
  background-color: var(--color-bg);
}

/* ---------- GRID ---------- */

.victim-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-xl);
  align-items: center;
}

/* ---------- IMAGE ---------- */

.victim-image-wrapper {
  display: flex;
  justify-content: center;
}

.victim-image {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.victim-image:hover {
  transform: translateY(-6px);
}

/* ---------- CONTENT ---------- */

.victim-content h2 {
  margin-bottom: var(--space-md);
}

.victim-intro {
  max-width: 520px;
  margin-bottom: var(--space-lg);
}

.victim-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.victim-points li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.victim-marker {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 50%;
  background-color: var(--color-primary);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--color-primary);
}

.victim-cta {
  margin-top: var(--space-lg);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 992px) {
  .victim-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .victim-intro {
    margin-inline: auto;
  }

  .victim-points {
    align-items: center;
  }

  .victim-points li {
    justify-content: center;
    text-align: left;
    max-width: 520px;
  }

  .victim-image-wrapper {
    margin-bottom: var(--space-lg);
  }
}

@media (max-width: 576px) {
  .victim-image {
    max-width: 100%;
  }
}

/* =====================================================
   END: VICTIM SUPPORT & COUNSELLING
   ===================================================== */

/* =====================================================
   START: FINAL CALL TO ACTION (PREMIUM VERSION)
   ===================================================== */

.final-cta {
  background: linear-gradient(180deg, var(--color-bg), var(--color-surface));
}

/* ---------- HEADING ---------- */

.final-cta h2 {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: var(--space-md);
}

/* ---------- MAIN TEXT ---------- */

.final-cta-text {
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
  font-size: 1.05rem;
}

/* ---------- CTA BUTTON ---------- */

.final-cta-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

/* ---------- TRUST LINE ---------- */

.final-cta-trust {
  font-size: var(--fs-small);
  color: var(--color-muted);
  letter-spacing: 0.5px;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 576px) {
  .final-cta h2 {
    font-size: 2rem;
  }

  .final-cta-text {
    font-size: 1rem;
  }
}

/* =====================================================
   END: FINAL CALL TO ACTION
   ===================================================== */
/* =====================================================
   START: BRAND SIGNATURE
   ===================================================== */

.brand-signature {
  background-color: var(--color-bg);
  border-top: 1px solid rgba(0, 180, 255, 0.15);
}

.signature-text {
  max-width: 900px;
  margin-inline: auto;
  font-size: 1.2rem;
  line-height: 1.8;
  font-weight: 500;
  color: var(--color-text);
  opacity: 0.95;
}

/* Highlight brand name */
.signature-text span {
  color: var(--color-primary);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 576px) {
  .signature-text {
    font-size: 1rem;
  }
}

/* =====================================================
   END: BRAND SIGNATURE
   ===================================================== */

/* =========================================
   HERO SECTION – PROFESSIONAL SLIDER
========================================= */

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* ---------------------------
   SLIDER SYSTEM
---------------------------- */

.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

.hero-slide {
  min-width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center right;
  flex-shrink: 0;
}

/* ---------------------------
   OVERLAY
---------------------------- */

.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    90deg,
    rgba(3, 12, 28, 0.96) 0%,
    rgba(3, 12, 28, 0.85) 40%,
    rgba(3, 12, 28, 0.65) 70%,
    rgba(3, 12, 28, 0.35) 100%
  ); */
  z-index: 1;
}

/* ---------------------------
   CONTENT (LEFT ALIGNED)
---------------------------- */

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding-top: 120px;
  padding-bottom: 120px;
  text-align: left; /* 🔥 force left */
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--color-primary);
}

.hero-subtitlee {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 520px;
  opacity: 0.9;
  color: #fff;
}

/* ---------------------------
   BUTTONS
---------------------------- */

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* ---------------------------
   ARROWS
---------------------------- */

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 10px 16px;
  cursor: pointer;
  z-index: 3;
  transition: 0.3s ease;
}

.hero-arrow:hover {
  background: var(--color-primary);
}

.hero-prev {
  left: 20px;
}
.hero-next {
  right: 20px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 992px) {
  .hero-slide {
    background-position: center;
  }

  .hero-content {
    text-align: center;
    margin-inline: auto;
    padding-top: 100px;
  }

  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.9rem;
  }

  .hero-arrow {
    font-size: 1.5rem;
    padding: 6px 10px;
  }
}
