/* ============================================================
   Cybersecurity Hero Section — homepage-cybersecurity.css
   Brand Colors: Green #96C121 | Blue #1E66AB
   Font: Poppins
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green:     #96C121;
  --blue:      #1E66AB;
  --navy:      #1e2a4a;
  --dot-color: #c8dfe8;
  --bg:        #f5f9fb;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
}

/* ── HERO SECTION ── */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

/* Video Background */
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

/* Dot Grid Overlay */
.hero__dots {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: radial-gradient(circle, var(--dot-color) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  opacity: 0.55;
  pointer-events: none;
}

/* ── INNER CONTAINER ── */
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  
  margin: 0 auto;
  padding: 72px 60px 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ── HEADLINE ── */
.hero__headline {
  width: 90%;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  line-height: 5.5rem;
  margin-bottom: 24px;
}
.hero__headline .line1 {
  display: block;
  font-size: clamp(32px, 5vw, 70px);
  font-weight: 900;
}
.hero__headline .line1 .word-cyber   { 
  
  background: linear-gradient(
    90deg,
    #96C121 0%,
    #6FA65F 30%,
    #4F8D86 60%,
    #1E66AB 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

 }
.hero__headline .line1 .word-that     { color: var(--blue);  }
.hero__headline .line2 {
  display: block;
  font-size: clamp(32px, 5vw, 70px);
  font-weight: 900;
  color: var(--navy);
}

/* ── PARAGRAPH ── */
.hero__sub {
  width: 85%;
  font-family: 'Poppins', sans-serif;
  font-size: 19px;
  font-weight: 400;
  color: #3a3a3a;
  line-height: 1.68;
  margin-bottom: 38px;
}

/* ── BOTTOM ROW: CTA + Logo Slider ── */
.hero__bottom {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 350px;
}

/* ── CTA BUTTON ── */
.hero__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--green) 0%, #7aaa10 50%, var(--blue) 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 18px rgba(150, 193, 33, 0.30);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  
}
.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(150, 193, 33, 0.42);
  text-decoration: none;
  color: #fff;
  background: #1E66AB;
}

/* ── LOGO SLIDER ── */
.logo-slider {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  position: relative;
}

/* Fade edges */
.logo-slider::before,
.logo-slider::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 44px;
  z-index: 2;
  pointer-events: none;
}
.logo-slider::before {
  left: 0;
  background: linear-gradient(to right, var(--bg) 10%, transparent);
}
.logo-slider::after {
  right: 0;
  background: linear-gradient(to left, var(--bg) 10%, transparent);
}

/* Slider Track */
.logo-slider__track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: logoScroll 24s linear infinite;
}
.logo-slider__track:hover {
  animation-play-state: paused;
}

@keyframes logoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Logo Cards */
.logo-card {
  flex-shrink: 0;
  width: 150px;
  height: 68px;
  border: 1.5px solid #d8e4ec;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 10px 14px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.logo-card:hover {
  box-shadow: 0 4px 16px rgba(30, 102, 171, 0.14);
  border-color: var(--blue);
}
.logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ── Large Desktops (1400px+) ── */
@media (min-width: 1400px) {
  .hero__inner {
    width: 90%;
    padding: 80px 40px 70px;
  }
}


/* ============================================================
   Business Problems Section — section-business-problems.css
   Brand Colors: Green #96C121 | Blue #1E66AB | Font: Poppins
   ============================================================ */

:root {
  --green: #96C121;
  --blue:  #1E66AB;
  --navy:  #1e2a4a;
  --bg-card: #eef3f8;
}

/* ── SECTION ── */
.biz-section {
  padding: 72px 0;
  background: #fff;
}
.biz-section__inner {
  width: 90%;
  
  margin: 0 auto;
}

/* ── LABEL ── */
.biz-section__label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.biz-section__label span {
  font-size: 16px;
  font-weight: 600;
  color: var(--blue);
  white-space: nowrap;
}
.biz-section__label-line {
  width: 100px;
  height: 2.5px;
  background: linear-gradient(to right, var(--blue), var(--green));
  border-radius: 2px;
}

/* ── HEADING ── */
.biz-section__heading {
  font-weight: 800;
  font-size: clamp(26px, 3.2vw, 46px);
  color: var(--navy);
  line-height: 1.12;
  margin-bottom: 36px;
}
.biz-section__heading .grad-text {
  background: linear-gradient(90deg, var(--green) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── TWO COLUMNS ── */
.biz-section__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

/* ══════════════════════════════
   LEFT COLUMN
══════════════════════════════ */
.biz-left__para {
  font-size: 15px;
  color: #3a3a3a;
  line-height: 1.75;
  margin-bottom: 32px;
}

/* Stats Grid */
.biz-stats {
  background: var(--bg-card);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

/* Each stat cell */
.biz-stat {
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Vertical center divider */
.biz-stats__vdivider {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, var(--blue) 0%, var(--green) 100%);
  pointer-events: none;
}

/* Horizontal center divider */
.biz-stats__hdivider {
  grid-column: 1 / -1;
  height: 2px;
  background: linear-gradient(to right, var(--blue), var(--green));
}

/* Big number */
.biz-stat__num {
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  display: block;
}

/* Underline bar below number */
.biz-stat__bar {
  display: block;
  width: 55px;
  height: 3px;
  border-radius: 2px;
  margin: 10px 0 12px;
}
.biz-stat--tl .biz-stat__bar,
.biz-stat--bl .biz-stat__bar { background: var(--blue); }
.biz-stat--tr .biz-stat__bar,
.biz-stat--br .biz-stat__bar { background: var(--green); }

/* Label text */
.biz-stat__label {
  font-size: 12px;
  font-weight: 500;
  color: #555;
  line-height: 1.55;
  text-align: center;
}

/* ══════════════════════════════
   RIGHT COLUMN — gradient border card
══════════════════════════════ */
.biz-capabilities {
  border-radius: 20px;
  padding: 3px;
  
}
.biz-capabilities__inner {
  background: var(--bg-card);
  border-radius: 18px;
  padding: 32px 28px 24px;
}

.biz-capabilities__title {
  font-weight: 800;
  font-size: 20px;
  color: var(--navy);
  text-align: center;
}
.biz-capabilities__divider {
  width: 100%;
  height: 2.5px;
  background: linear-gradient(to right, var(--green), var(--blue));
  border-radius: 2px;
  margin: 12px 0 24px;
}

/* ── SLIDER VIEWPORT ── */
.biz-cap-slider {
  position: relative;
  overflow: hidden;
}

/* Track holds ALL items stacked vertically */
.biz-cap-track {
  display: flex;
  flex-direction: column;
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Single capability row */
.biz-cap-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #d4e0ea;
  flex-shrink: 0;
}
.biz-cap-item:last-child { border-bottom: none; }

/* Icon */
.biz-cap-item__icon {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  padding: 10px;
}
.biz-cap-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Text */
.biz-cap-item__text { flex: 1; }
.biz-cap-item__name {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 5px;
  line-height: 1.3;
}
.biz-cap-item__desc {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* ── DOTS NAVIGATION ── */
.biz-cap-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.biz-cap-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #b8ccd8;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
  display: block;
}
.biz-cap-dot.active {
  background: var(--blue);
  transform: scale(1.35);
}


/* ============================================================
   SERVICES SLIDER
   ============================================================ */

.cs-services {
  position: relative;
  padding: 120px 0;
  background: #f5f7fa;
  overflow: hidden;
}

/* TOP HALF BG */
.cs-services::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 55%;
  background:
    linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.85)),
    url('https://rsk-bsl.com/wp-content/uploads/2025/06/background-scaled.png') no-repeat center/cover;
  z-index: 0;
}

.cs-container {
  position: relative;
  width: 90%;
  margin: auto;
  z-index: 2;
}

/* SUB HEADING */
.cs-subhead {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.cs-subhead span {
  color: #1E66AB;
  font-weight: 600;
}

.cs-subhead .line {
  width: 120px;
  height: 2px;
  background: #1E66AB;
}

/* MAIN TITLE */
.cs-main-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  width: 90%;
  color: #2f2f45;
  margin-bottom: 80px;
}

.gradient-text {
  background: linear-gradient(90deg, #96C121, #1E66AB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SLIDER */
.cs-slider {
  overflow: hidden;
}

.cs-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s ease;
  margin-top: 50px;
}

.cs-slide {
  flex: 0 0 calc((100% - 60px) / 3);
}

/* CARD */
.cs-card {
  position: relative;
  background: #eef1f5;
  border-radius: 20px;
  padding: 70px 30px 30px;
  height: 100%;
  text-align: left;
  overflow: visible;
}

/* ICON */
.cs-icon {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 75px;
  height: 75px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  z-index: 1;
}

.cs-icon img {
  width: 55%;
  object-fit: contain;
}

/* TITLE */
.cs-card h3 {
  color: #1E66AB;
  font-size: 20px;
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 15px;
  line-height: 1.4em;
}

/* BORDER */
.cs-border {
  height: 2px;
  background: linear-gradient(90deg, #96C121, #1E66AB);
  margin-bottom: 15px;
}

/* TEXT */
.cs-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* BUTTON */
.cs-btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 30px;
    background: linear-gradient(90deg, #96C121, #1E66AB);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.cs-btn:hover {
    background: #1E66AB;
    color: #ffffff;
}

/* HOVER */
.cs-card:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}


/* ============================================================
   WHO WE ARE
   ============================================================ */

.cs-who {
  padding: 120px 0;
  background: #f5f7fa;
}

/* GRID */
.cs-who-grid {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 60px;
}

/* LEFT */
.cs-who-left {
  flex: 1;
}

/* TEXT */
.cs-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 520px;
}

/* BLUE HEADING */
.cs-blue-title {
  color: #1E66AB;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* LIST */
.cs-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.cs-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #444;
}

/* GREEN DOT */
.cs-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  background: #96C121;
  border-radius: 50%;
}

/* BUTTON (reuse same) */
.cs-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  background: linear-gradient(90deg, #96C121, #1E66AB);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

/* RIGHT BOX */
.cs-who-right {
  flex: 1;
  background: #eef1f5;
  border-radius: 25px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 520px;
}

/* IMAGE */
.cs-who-right img {
  width: 100%;
  max-width: 420px;
  object-fit: contain;
}


/* ============================================================
   ACCREDITATIONS
   ============================================================ */

.cs-accred {
  padding: 120px 0;
  background: #f5f7fa;
}

/* HEADING */
.cs-accred .cs-main-title {
  margin-bottom: 60px;
}

/* BOX */
.cs-accred-box {
  background: #eef1f5;
  border-radius: 30px;
  padding: 40px 20px;
  overflow: hidden;
}

/* SLIDER */
.cs-accred-slider {
  overflow: hidden;
}

/* TRACK */
.cs-accred-track {
  display: flex;
  gap: 40px;
  animation: scrollLogos 20s linear infinite;
}

/* LOGO CARD BASE */
.cs-logo {
  flex: 0 0 160px;
  height: 100px;
  background: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
}

/* DIFFERENT BORDER COLORS */
.cs-logo:nth-child(6n+1) { border-color: #96C121; }
.cs-logo:nth-child(6n+2) { border-color: #1E66AB; }
.cs-logo:nth-child(6n+3) { border-color: #e74c3c; }
.cs-logo:nth-child(6n+4) { border-color: #f4b400; }
.cs-logo:nth-child(6n+5) { border-color: #6c5ce7; }
.cs-logo:nth-child(6n+6) { border-color: #96C121; }

/* IMAGE FIT */
.cs-logo img {
  width: 80%;
  height: 70%;
  object-fit: contain;
}

/* ANIMATION */
@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


/* ============================================================
   USE CASE SECTION
   ============================================================ */

.usecase-unique-section,
.usecase-unique-section * {
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.usecase-unique-section {
    width: 100%;
    padding: 70px 0 90px;
    background: #ffffff;
}

.usecase-unique-container {
    width: 90%;
    margin: 0 auto;
}

.usecase-unique-top {
    margin-bottom: 82px;
}

.usecase-unique-label {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 15px;
}

.usecase-unique-label span {
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    color: #1E66AB;
}

.usecase-unique-label i {
    display: block;
    width: 98px;
    height: 2px;
    background: #1E66AB;
}

.usecase-unique-top h2 {
    margin: 0;
    font-size: 48px;
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: -1.3px;
    color: #41405d;
}

.usecase-unique-top h2 span {
    background: linear-gradient(90deg, #89bd23 0%, #2b73b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.usecase-unique-row {
    display: grid;
    grid-template-columns: 1.04fr 1fr;
    gap: 50px;
    align-items: stretch;
}

/* Left featured card */

.usecase-unique-left {
    min-width: 0;
}

.usecase-unique-feature {
    height: 100%;
    background: #f1f4f6;
    border-radius: 18px;
    overflow: hidden;
}

.usecase-unique-image-wrap {
    width: 100%;
    height: 335px;
    padding: 32px 34px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.usecase-unique-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.usecase-unique-content {
    background: #ffffff;
    border: 1.5px solid #126ed0;
    border-radius: 10px;
    padding: 18px 18px 20px;
    margin: 0 12px 12px;
}

.usecase-unique-content h3 {
    margin: 0 0 16px;
    font-size: 19px;
    line-height: 1.42;
    font-weight: 800;
    color: #1E66AB;
}

.usecase-unique-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 500;
    color: #000000;
}

/* Right cards */

.usecase-unique-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 65px 48px;
}

/* Base card */
.usecase-unique-card {
    min-height: 225px;
    padding: 30px 24px 26px;
    border-radius: 18px;
    background: transparent;
    border: 2px solid;
    cursor: pointer;
    transition: 0.3s ease;
}

.usecase-unique-card:nth-child(1) { border: 1px solid #96C121; }
.usecase-unique-card:nth-child(2) { border: 1px solid #BD332D; }
.usecase-unique-card:nth-child(3) { border: 1px solid #EFBE13; }
.usecase-unique-card:nth-child(4) { border: 1px solid #000000; }

.usecase-unique-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(18, 96, 173, 0.16);
}

.usecase-unique-card h4 {
    margin: 0 0 28px;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
    color: #1E66AB;
}

.usecase-unique-card p {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 500;
    color: #000000;
}

/* Smooth content change */

.usecase-unique-feature,
.usecase-unique-card {
    animation: usecaseUniqueFade 0.45s ease;
}

@keyframes usecaseUniqueFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section {
  padding: 100px 0;
  background: #f5f7fa;
}

/* CONTAINER WITH BG IMAGE */
.cta-container {
  width: 90%;
  margin: auto;
  border-radius: 25px;
  overflow: hidden;
  position: relative;

  background: url('https://rsk-bsl.com/wp-content/uploads/2026/04/Group-698.png') no-repeat center/cover;
}

/* DARK OVERLAY */
.cta-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(25, 35, 55, 0.2);
  z-index: 1;
}

/* CONTENT */
.cta-content {
  position: relative;
  z-index: 2;
  padding: 60px;
  max-width: 90%;
}

/* HEADING */
.cta-content h2 {
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

/* DESCRIPTION */
.cta-content p {
  color: #e0e0e0;
  font-size: 15px;
  margin-bottom: 30px;
}

/* BUTTON */
.cta-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  background: linear-gradient(90deg, #96C121, #1E66AB);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
.cta-btn:hover{
    background: #1E66AB;
    color: #fff;
    text-decoration: none;
}


/* ============================================================
   PROCESS SECTION
   ============================================================ */

.cyber-process-section,
.cyber-process-section * {
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
}

.cyber-process-section {
    padding: 70px 0 80px;
    background: #ffffff;
}

.process-container {
    width: 90%;
    margin: 0 auto;
    padding: 0;
}

.process-top {
    margin-bottom: 95px;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 42px;
}

.section-label span {
    font-size: 17px;
    line-height: 1;
    font-weight: 600;
    color: #1E66AB;
}

.section-label i {
    display: block;
    width: 98px;
    height: 2px;
    background: #1E66AB;
}

.process-top h2 {
    margin: 0 0 34px;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -1.2px;
    color: #000000;
}

.process-top h2 span {
    background: linear-gradient(90deg, #96C121 0%, #1E66AB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-top p {
    max-width: 775px;
    margin: 0;
    font-size: 19px;
    line-height: 1.55;
    font-weight: 400;
    color: #000000;
}

.process-flow-box {
    position: relative;
    width: 100%;
    background: #f1f4f6;
    border-radius: 32px;
    padding: 58px 44px 70px;
    overflow: hidden;
}

.process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    column-gap: 126px;
    row-gap: 88px;
    align-items: start;
}

/* Cards */

.process-card {
    position: relative;
    width: 100%;
    min-height: 166px;
    padding: 18px 22px 20px;
    background: #ffffff;
    border: 1.5px solid #1E66AB;
    border-radius: 12px;
    z-index: 2;
}

.step-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 22px;
}

.step-row span {
    font-size: 13px;
    line-height: 1;
    font-weight: 500;
    color: #000000;
}

.step-row img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
    margin-top: -8px;
}

.process-card h3 {
    margin: 0 0 8px;
    font-size: 21px;
    line-height: 1.2;
    font-weight: 600;
    color: #1E66AB;
}

.process-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.38;
    font-weight: 500;
    color: #000000;
}

/* Reset connectors */

.process-card::before,
.process-card::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

/* Step 1 to Step 2 */

.step-1::after {
    top: 50%;
    right: -126px;
    width: 126px;
    height: 2px;
    background: #96C121;
    transform: translateY(-50%);
}

.step-1::before {
    top: 50%;
    right: -65px;
    width: 16px;
    height: 16px;
    border-top: 2px solid #96C121;
    border-right: 2px solid #96C121;
    transform: translateY(-50%) rotate(45deg);
}

/* Step 2 to Step 3 */

.step-2::after {
    top: 50%;
    right: -126px;
    width: 126px;
    height: 2px;
    background: #96C121;
    transform: translateY(-50%);
}

.step-2::before {
    top: 50%;
    right: -65px;
    width: 16px;
    height: 16px;
    border-top: 2px solid #96C121;
    border-right: 2px solid #96C121;
    transform: translateY(-50%) rotate(45deg);
}

/* Step 3 down to Step 4 */

.step-3::after {
    left: 50%;
    bottom: -88px;
    width: 2px;
    height: 88px;
    background: #96C121;
    transform: translateX(-50%);
}

.step-3::before {
    left: 50%;
    bottom: -48px;
    width: 16px;
    height: 16px;
    border-right: 2px solid #96C121;
    border-bottom: 2px solid #96C121;
    transform: translateX(-50%) rotate(45deg);
}

/* Step 4 to Step 5 - left direction */

.step-4::after {
    top: 50%;
    left: -126px;
    width: 126px;
    height: 2px;
    background: #96C121;
    transform: translateY(-50%);
}

.step-4::before {
    top: 50%;
    left: -70px;
    width: 16px;
    height: 16px;
    border-left: 2px solid #96C121;
    border-bottom: 2px solid #96C121;
    transform: translateY(-50%) rotate(45deg);
}

/* Step 5 to Step 6 */

.step-5::after {
    top: 50%;
    left: -126px;
    width: 126px;
    height: 2px;
    background: #96C121;
    transform: translateY(-50%);
}

.step-5::before {
    top: 50%;
    left: -70px;
    width: 16px;
    height: 16px;
    border-left: 2px solid #96C121;
    border-bottom: 2px solid #96C121;
    transform: translateY(-50%) rotate(45deg);
}

/* Step 6 down to Step 7 */

.step-6::after {
    left: 50%;
    bottom: -88px;
    width: 2px;
    height: 88px;
    background: #96C121;
    transform: translateX(-50%);
}

.step-6::before {
    left: 50%;
    bottom: -48px;
    width: 16px;
    height: 16px;
    border-right: 2px solid #96C121;
    border-bottom: 2px solid #96C121;
    transform: translateX(-50%) rotate(45deg);
}

/* Step 7 to Step 8 */

.step-7::after {
    top: 50%;
    right: -126px;
    width: 126px;
    height: 2px;
    background: #96C121;
    transform: translateY(-50%);
}

.step-7::before {
    top: 50%;
    right: -65px;
    width: 16px;
    height: 16px;
    border-top: 2px solid #96C121;
    border-right: 2px solid #96C121;
    transform: translateY(-50%) rotate(45deg);
}

/* Grid positions */

.step-1 { grid-column: 1; grid-row: 1; }
.step-2 { grid-column: 2; grid-row: 1; }
.step-3 { grid-column: 3; grid-row: 1; }
.step-6 { grid-column: 1; grid-row: 2; }
.step-5 { grid-column: 2; grid-row: 2; }
.step-4 { grid-column: 3; grid-row: 2; }
.step-7 { grid-column: 1; grid-row: 3; }
.step-8 { grid-column: 2; grid-row: 3; }


/* =========================================
   Moving arrow animation on connector lines
========================================= */

/* Keep connector lines normal */
.step-1::after,
.step-2::after,
.step-7::after,
.step-4::after,
.step-5::after {
    height: 2px;
    background: #96C121;
}

.step-3::after,
.step-6::after {
    width: 2px;
    background: #96C121;
}

/* Arrow animations */
.step-1::before,
.step-2::before,
.step-3::before,
.step-4::before,
.step-5::before,
.step-6::before,
.step-7::before {
    opacity: 1;
    animation-duration: 1.4s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

/* Left to right moving arrows */
.step-1::before,
.step-2::before,
.step-7::before {
    top: 50%;
    right: auto;
    left: 100%;
    width: 14px;
    height: 14px;
    border-top: 2px solid #96C121;
    border-right: 2px solid #96C121;
    border-left: 0;
    border-bottom: 0;
    transform: translateY(-50%) rotate(45deg);
    animation-name: moveArrowRight;
}

/* Right to left moving arrows */
.step-4::before,
.step-5::before {
    top: 50%;
    left: auto;
    right: 100%;
    width: 14px;
    height: 14px;
    border-left: 2px solid #96C121;
    border-bottom: 2px solid #96C121;
    border-top: 0;
    border-right: 0;
    transform: translateY(-50%) rotate(45deg);
    animation-name: moveArrowLeft;
}

/* Top to bottom moving arrows */
.step-3::before,
.step-6::before {
    left: 50%;
    top: 100%;
    bottom: auto;
    width: 14px;
    height: 14px;
    border-right: 2px solid #96C121;
    border-bottom: 2px solid #96C121;
    border-left: 0;
    border-top: 0;
    transform: translateX(-50%) rotate(45deg);
    animation-name: moveArrowDown;
}

/* Animations for 126px connector gap */

@keyframes moveArrowRight {
    0% { left: 100%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: calc(100% + 112px); opacity: 0; }
}

@keyframes moveArrowLeft {
    0% { right: 100%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { right: calc(100% + 112px); opacity: 0; }
}

@keyframes moveArrowDown {
    0% { top: 100%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: calc(100% + 74px); opacity: 0; }
}


/* ===============================
   TESTIMONIALS SECTION
   =============================== */

.testimonials-section {
  padding: 60px 0;
  font-family: Poppins, sans-serif;
}

/* ---------- HEADING ROW ---------- */

.testimonials-heading-row {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.testimonials-heading-inner {
  width: 85%;
}

.testimonials-heading-inner .section-label,
.testimonials-heading-inner .testimonials-title {
  text-align: left;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 600;
  color: #1E66AB;
}

.section-label::after {
  content: '';
  width: 120px;
  height: 2px;
  background: #1E66AB;
}

.testimonials-title {
  margin: 12px 0 8px;
  font-size: 40px;
  font-weight: 800;
  line-height: 52px;
  color: #2e2f44;
}

.testimonials-title span {
  background: linear-gradient(90deg, #96C121, #1E66AB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- GRID ---------- */

.testimonials-container {
  max-width: 85%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* ---------- LEFT ---------- */

.testimonials-desc {
  max-width: 500px;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 26px;
}

/* AUTHOR CARD */
.author-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 2px solid #1E66AB;
  border-radius: 16px;
  max-width: 360px;
  margin-bottom: 20px;
}

.author-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.author-card h4 {
  margin-bottom: 4px;
  color: #1E66AB;
}

.author-card p {
  font-size: 14px;
}

/* BUTTON */
.primary-btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 30px;
  background: linear-gradient(90deg, #96C121, #1E66AB);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.primary-btn:hover {
  color: #fff;
  background: #1E66AB;
}

/* ---------- RIGHT ---------- */

.testimonials-right {
  background: #f2f5f7;
  border-radius: 40px;
  padding: 50px;
}

.testimonials-right h3 {
  margin-bottom: 16px;
  font-size: 22px;
  color: #1E66AB;
}

.testimonial-text {
  margin-bottom: 26px;
  font-size: 16px;
  line-height: 28px;
}

/* NAV */
.testimonial-nav {
  display: flex;
  gap: 10px;
}

.testimonial-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #96C121;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}


/* ============================================================
   CONTACT SECTION
   ============================================================ */

.contact-section {
  padding: 40px 0;
}

/* ---------- FULL WIDTH HEADER ---------- */

.contact-header {
  margin-left: 100px;
}

.contact-label {
  font-size: 14px;
  font-weight: 600;
  color: #1E66AB;
  display: flex;
  align-items: center;
  gap: 14px;
}

.cc-l{
  width: 70%;
  max-width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: left;
}

.contact-label span {
  width: 90px;
  height: 2px;
  background: #1E66AB;
}

.contact-title {
  margin-top: 24px;
  font-size: 44px;
  line-height: 56px;
  font-weight: 800;
  color: #2e2f44;
  text-align: center;
}

.contact-title .green {
  background: linear-gradient(90deg, #8dc63f, #1E66AB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-subtitle {
  margin-top: 16px;
  font-size: 16px;
  color: #333;
  text-align: center;
}

/* ---------- TWO COLUMN BOX ---------- */

.contact-container {
  width: 85%;
  max-width: 92%;
  margin: auto;
  border-radius: 30px;
  display: grid;
  grid-template-columns: 0.4fr 1.0fr;
  gap: 30px;
}

/* ---------- LEFT ---------- */

.location-image img {
  width: 150px;
  margin-bottom:0px;
  margin-right: 90px;
}

.contact-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: -98px;
}

.location-cards {
  display: grid;
  gap: 10px;
}

.location-card h4{
    font-size: 16px;
    color: #1E66AB;
    margin-bottom: 0px;
}

.location-card p{
    font-size: 14px;
}

.location-card {
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.5;
}

/* border colors */
.location-card.gre { border: 1px solid #96C121; background-color: white; }
.location-card.blue { border: 1px solid #1E66AB; background-color: white; }
.location-card.red { border: 1px solid #BD332D; background-color: white; }
.location-card.yellow { border: 1px solid #EFBE13; background-color: white; }
.location-card.purple { border: 1px solid #3F3D56; background-color: white; }

/* ---------- RIGHT ---------- */

.contact-right {
  border: 2px solid #1E66AB;
  border-radius: 22px;
  padding-top: 40px;
  padding-left: 20px;
  padding-right: 20px;
  background-color: white;
  margin-top: 40px;
}


/* ============================================================
   RESPONSIVE — ALL SECTIONS
   ============================================================ */

/* ── GLOBAL: KILL HORIZONTAL SCROLL ── */
html, body {
  overflow-x: hidden;
}

.hero,
.biz-section,
.cs-services,
.cs-who,
.cs-accred,
.usecase-unique-section,
.cta-section,
.cyber-process-section,
.testimonials-section,
.contact-section {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Slider parents must clip their infinite-scroll tracks */
.logo-slider,
.cs-accred-slider,
.cs-accred-box,
.process-flow-box {
  overflow: hidden;
}

/* Hero bottom gap fix */
@media (max-width: 1200px) {
  .hero__bottom { gap: 40px; }
}

/* ── LARGE DESKTOPS 1400px+ ── */
@media (min-width: 1400px) {
  .hero__inner { width: 90%; padding: 80px 40px 70px; }
}


/* ── HERO ── */

@media (max-width: 1023px) and (min-width: 768px) {
  .hero { min-height: 440px; }
  .hero__inner { padding: 48px 36px 44px; }
  .hero__headline { width: 100%; line-height: 1.15; margin-bottom: 20px; }
  .hero__sub { width: 100%; font-size: 15.5px; margin-bottom: 30px; }
  .hero__bottom { flex-direction: column; align-items: flex-start; gap: 28px; }
  .logo-slider { width: 100%; }
}

@media (max-width: 767px) and (min-width: 600px) {
  .hero { min-height: auto; }
  .hero__inner { padding: 40px 28px 36px; }
  .hero__headline { width: 100%; line-height: 1.15; margin-bottom: 18px; }
  .hero__headline .line1,
  .hero__headline .line2 { font-size: clamp(28px, 6.5vw, 48px); }
  .hero__sub { width: 100%; font-size: 15px; line-height: 1.6; margin-bottom: 28px; }
  .hero__bottom { flex-direction: column; align-items: stretch; gap: 24px; }
  .hero__cta { width: 100%; justify-content: center; font-size: 15px; padding: 15px 32px; }
  .logo-slider { width: 100%; }
  .logo-card { width: 120px; height: 54px; padding: 8px 12px; }
}

@media (max-width: 599px) {
  .hero { min-height: auto; }
  .hero__inner { padding: 36px 18px 32px; }
  .hero__headline { width: 100%; line-height: 1.12; margin-bottom: 14px; }
  .hero__headline .line1,
  .hero__headline .line2 { font-size: clamp(26px, 7.5vw, 40px); line-height: 1.15; }
  .hero__sub { width: 100%; font-size: 14px; line-height: 1.6; margin-bottom: 24px; }
  .hero__bottom { flex-direction: column; align-items: stretch; gap: 20px; }
  .hero__cta { width: 100%; justify-content: center; font-size: 14px; padding: 14px 24px; }
  .logo-slider { width: 100%; overflow: hidden; }
  .logo-card { width: 105px; height: 50px; padding: 8px 10px; border-radius: 8px; }
  .logo-slider__track { gap: 14px; }
}

@media (max-width: 375px) {
  .hero__inner { padding: 28px 14px 24px; }
  .hero__headline .line1,
  .hero__headline .line2 { font-size: clamp(22px, 7vw, 34px); }
  .hero__sub { font-size: 13px; line-height: 1.55; margin-bottom: 20px; }
  .hero__cta { font-size: 13px; padding: 12px 20px; }
  .logo-card { width: 90px; height: 44px; padding: 6px 8px; }
  .logo-slider__track { gap: 10px; }
}


/* ── BUSINESS PROBLEMS ── */

@media (max-width: 1023px) {
  .biz-section__cols { grid-template-columns: 1fr; gap: 32px; }
  .biz-section__heading { font-size: clamp(24px, 3.5vw, 38px); margin-bottom: 28px; }
}

@media (max-width: 767px) {
  .biz-section { padding: 48px 0; }
  .biz-section__inner { width: 92%; }
  .biz-section__label span { font-size: 14px; }
  .biz-section__label-line { width: 70px; }
  .biz-section__heading { font-size: clamp(22px, 5.5vw, 32px); line-height: 1.18; margin-bottom: 24px; }
  .biz-left__para { font-size: 14px; line-height: 1.65; margin-bottom: 24px; }
  .biz-stat { padding: 22px 14px; }
  .biz-stat__num { font-size: clamp(30px, 8vw, 44px); }
  .biz-stat__label { font-size: 11px; }
  .biz-stat__bar { width: 40px; margin: 8px 0 10px; }
  .biz-capabilities__inner { padding: 22px 16px 18px; }
  .biz-capabilities__title { font-size: 17px; }
  .biz-cap-item { gap: 12px; padding: 14px 0; }
  .biz-cap-item__icon { width: 56px; height: 56px; border-radius: 10px; padding: 8px; }
  .biz-cap-item__name { font-size: 16px; margin-bottom: 4px; }
  .biz-cap-item__desc { font-size: 13px; line-height: 1.5; }
}

@media (max-width: 480px) {
  .biz-section { padding: 36px 0; }
  .biz-section__heading { font-size: clamp(20px, 5.5vw, 28px); }
  .biz-left__para { font-size: 13px; }
  .biz-stat { padding: 18px 10px; }
  .biz-stat__num { font-size: clamp(28px, 7vw, 36px); }
  .biz-stat__label { font-size: 10.5px; }
  .biz-capabilities__title { font-size: 15px; }
  .biz-cap-item__icon { width: 48px; height: 48px; }
  .biz-cap-item__name { font-size: 14px; }
  .biz-cap-item__desc { font-size: 12px; }
  .biz-cap-dot { width: 7px; height: 7px; }
}

@media (max-width: 375px) {
  .biz-section__heading { font-size: 20px; }
  .biz-stat__num { font-size: 26px; }
  .biz-cap-item__name { font-size: 13px; }
  .biz-cap-item__desc { font-size: 11px; }
}


/* ── SERVICES SLIDER ── */

@media (max-width: 1023px) {
  .cs-services { padding: 70px 0; overflow: hidden; }
  .cs-services::before { height: 50%; }
  .cs-container { overflow: visible; }
  .cs-slider { overflow: hidden; padding-top: 40px; }
  .cs-track { margin-top: 0; }
  .cs-main-title { font-size: clamp(28px, 4vw, 38px); margin-bottom: 50px; width: 100%; }
}

@media (max-width: 767px) {
  .cs-services { padding: 50px 0; overflow: hidden; }
  .cs-container { width: 92%; overflow: visible; }
  .cs-slider { overflow: hidden; padding-top: 40px; }  /* clip horizontally but pad top for icon */
  .cs-subhead span { font-size: 14px; }
  .cs-subhead .line { width: 80px; }
  .cs-main-title { font-size: clamp(22px, 5.5vw, 30px); margin-bottom: 32px; line-height: 1.25; }
  .cs-slide { flex: 0 0 100%; min-width: 0; width: 100%; }
  .cs-track { gap: 30px; margin-top: 0; }
  .cs-card { padding: 55px 20px 24px; border-radius: 16px; overflow: visible; }
  .cs-card h3 { font-size: 17px; margin-top: 18px; margin-bottom: 12px; }
  .cs-card p { font-size: 13.5px; line-height: 1.55; margin-bottom: 16px; }
  .cs-border { margin-bottom: 12px; }
  .cs-icon { width: 64px; height: 64px; top: -30px; }
  .cs-btn { font-size: 13px; padding: 10px 20px; }
}

@media (max-width: 480px) {
  .cs-services { padding: 36px 0; }
  .cs-main-title { font-size: clamp(20px, 5vw, 24px); margin-bottom: 24px; }
  .cs-slide { flex: 0 0 100%; min-width: 0; width: 100%; }
  .cs-card { padding: 50px 18px 20px; }
  .cs-card h3 { font-size: 15px; }
  .cs-card p { font-size: 12.5px; }
  .cs-icon { width: 56px; height: 56px; top: -26px; }
  .cs-btn { font-size: 12px; padding: 9px 18px; }
}

@media (max-width: 375px) {
  .cs-main-title { font-size: 19px; }
  .cs-card h3 { font-size: 14px; }
  .cs-card p { font-size: 12px; }
}


/* ── WHO WE ARE ── */

@media (max-width: 1023px) {
  .cs-who { padding: 70px 0; }
  .cs-who-grid { gap: 40px; }
  .cs-who-right { height: 400px; }
}

@media (max-width: 767px) {
  .cs-who { padding: 50px 0; }
  .cs-who-grid { flex-direction: column; gap: 28px; margin-top: 32px; }
  .cs-who-left { width: 100%; }
  .cs-desc { max-width: 100%; font-size: 14px; line-height: 1.6; margin-bottom: 22px; }
  .cs-blue-title { font-size: 17px; margin-bottom: 16px; }
  .cs-list li { font-size: 13px; margin-bottom: 10px; padding-left: 18px; }
  .cs-list li::before { width: 7px; height: 7px; top: 6px; }
  .cs-who-right { height: 280px; width: 100%; padding: 24px; border-radius: 18px; }
  .cs-who-right img { max-width: 100%; }
  .cs-btn { font-size: 13px; padding: 11px 24px; }
}

@media (max-width: 480px) {
  .cs-who { padding: 36px 0; }
  .cs-who-grid { gap: 22px; margin-top: 24px; }
  .cs-desc { font-size: 13px; margin-bottom: 18px; }
  .cs-blue-title { font-size: 15px; margin-bottom: 14px; }
  .cs-list li { font-size: 12px; margin-bottom: 8px; }
  .cs-who-right { height: 220px; padding: 18px; border-radius: 14px; }
  .cs-btn { font-size: 12px; padding: 10px 20px; display: block; text-align: center; }
}

@media (max-width: 375px) {
  .cs-desc { font-size: 12px; }
  .cs-blue-title { font-size: 14px; }
  .cs-who-right { height: 190px; padding: 14px; }
}


/* ── ACCREDITATIONS ── */

@media (max-width: 1023px) {
  .cs-accred { padding: 70px 0; }
  .cs-accred .cs-main-title { margin-bottom: 40px; }
}

@media (max-width: 767px) {
  .cs-accred { padding: 50px 0; }
  .cs-accred .cs-main-title { font-size: clamp(22px, 5.5vw, 30px); margin-bottom: 32px; }
  .cs-accred-box { padding: 24px 12px; border-radius: 20px; }
  .cs-logo { flex: 0 0 125px; height: 78px; border-radius: 12px; }
  .cs-accred-track { gap: 28px; }
}

@media (max-width: 480px) {
  .cs-accred { padding: 36px 0; }
  .cs-accred .cs-main-title { font-size: clamp(20px, 5vw, 24px); margin-bottom: 24px; }
  .cs-accred-box { padding: 18px 10px; border-radius: 16px; }
  .cs-logo { flex: 0 0 100px; height: 64px; border-radius: 10px; }
  .cs-accred-track { gap: 20px; }
  .cs-logo img { width: 75%; height: 65%; }
}

@media (max-width: 375px) {
  .cs-logo { flex: 0 0 88px; height: 56px; }
}


/* ── USE CASES ── */

@media (max-width: 1199px) {
  .usecase-unique-row { gap: 32px; }
  .usecase-unique-right { gap: 32px 24px; }
  .usecase-unique-top h2 { font-size: clamp(28px, 4vw, 38px); }
}

@media (max-width: 991px) {
  .usecase-unique-section { padding: 55px 0 65px; }
  .usecase-unique-top { margin-bottom: 42px; }
  .usecase-unique-row { grid-template-columns: 1fr; gap: 36px; }
  .usecase-unique-image-wrap { height: 280px; }
  .usecase-unique-right { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}

@media (max-width: 767px) {
  .usecase-unique-section { padding: 44px 0 52px; }
  .usecase-unique-container { width: 92%; }
  .usecase-unique-top { margin-bottom: 34px; }
  .usecase-unique-label { margin-bottom: 12px; gap: 12px; }
  .usecase-unique-label span { font-size: 14px; }
  .usecase-unique-label i { width: 70px; }
  .usecase-unique-top h2 { font-size: clamp(22px, 5.5vw, 30px); letter-spacing: -0.5px; line-height: 1.22; }
  .usecase-unique-image-wrap { height: 240px; padding: 22px 20px 10px; }
  .usecase-unique-content { padding: 16px 14px 18px; margin: 0 10px 10px; }
  .usecase-unique-content h3 { font-size: 16px; margin-bottom: 12px; }
  .usecase-unique-content p { font-size: 13px; line-height: 1.5; }
  .usecase-unique-card { padding: 22px 18px; min-height: auto; }
  .usecase-unique-card h4 { font-size: 13px; margin-bottom: 18px; }
  .usecase-unique-card p { font-size: 11.5px; line-height: 1.5; }
}

@media (max-width: 575px) {
  .usecase-unique-section { padding: 36px 0 44px; }
  .usecase-unique-top h2 { font-size: clamp(20px, 5.5vw, 26px); }
  .usecase-unique-image-wrap { height: 200px; padding: 18px 16px 8px; }
  .usecase-unique-content h3 { font-size: 15px; }
  .usecase-unique-content p { font-size: 12.5px; }
  .usecase-unique-right { grid-template-columns: 1fr; gap: 16px; }
  .usecase-unique-card { padding: 20px 16px; }
}

@media (max-width: 375px) {
  .usecase-unique-top h2 { font-size: 19px; }
  .usecase-unique-image-wrap { height: 170px; padding: 14px 12px 6px; }
  .usecase-unique-content { padding: 14px 12px 16px; margin: 0 8px 8px; }
  .usecase-unique-content h3 { font-size: 14px; }
  .usecase-unique-content p { font-size: 12px; }
  .usecase-unique-card h4 { font-size: 12px; margin-bottom: 14px; }
  .usecase-unique-card p { font-size: 11px; }
}


/* ── CTA BANNER ── */

@media (max-width: 1023px) {
  .cta-section { padding: 60px 0; }
  .cta-content { padding: 44px 36px; }
  .cta-content h2 { font-size: 28px; }
}

@media (max-width: 767px) {
  .cta-section { padding: 44px 0; }
  .cta-container { width: 92%; border-radius: 18px; }
  .cta-content { padding: 32px 24px; max-width: 100%; }
  .cta-content h2 { font-size: 22px; line-height: 1.3; margin-bottom: 14px; }
  .cta-content p { font-size: 13.5px; line-height: 1.55; margin-bottom: 22px; }
  .cta-btn { font-size: 13px; padding: 11px 24px; }
}

@media (max-width: 480px) {
  .cta-section { padding: 32px 0; }
  .cta-container { border-radius: 14px; }
  .cta-content { padding: 26px 18px; }
  .cta-content h2 { font-size: 19px; line-height: 1.35; margin-bottom: 12px; }
  .cta-content p { font-size: 13px; margin-bottom: 18px; }
  .cta-btn { display: block; text-align: center; font-size: 13px; padding: 12px 20px; }
}

@media (max-width: 375px) {
  .cta-content { padding: 22px 14px; }
  .cta-content h2 { font-size: 17px; }
  .cta-content p { font-size: 12px; }
  .cta-btn { font-size: 12px; padding: 11px 18px; }
}


/* ── PROCESS / FLOW ── */

@media (max-width: 1199px) {
  .process-grid { column-gap: 70px; row-gap: 72px; }

  /* Adjust arrow animations for smaller gap */
  .step-1::after, .step-2::after, .step-7::after { right: -70px; width: 70px; }
  .step-4::after, .step-5::after { left: -70px; width: 70px; }
}

@media (max-width: 991px) {
  .cyber-process-section { padding: 55px 0 60px; }
  .process-top { margin-bottom: 44px; }
  .process-top h2 { font-size: clamp(26px, 4.5vw, 34px); margin-bottom: 24px; }
  .process-top p { font-size: 15px; max-width: 100%; }
  .process-flow-box { padding: 28px 20px; border-radius: 24px; }
  .process-grid { display: flex; flex-direction: column; gap: 22px; }
  .process-card { width: 100%; min-height: auto; padding: 16px 18px; }
  /* Kill every connector arrow on mobile */
  .process-card::before,
  .process-card::after { display: none !important; }
  .process-card h3 { font-size: 18px; }
  .process-card p { font-size: 13px; }
  .step-row span { font-size: 12px; }
  .step-row img { width: 36px; height: 36px; }
  /* Fix step order — DOM is 1,2,3,6,5,4,7,8 for desktop snake layout */
  .step-1 { order: 1; }
  .step-2 { order: 2; }
  .step-3 { order: 3; }
  .step-4 { order: 4; }
  .step-5 { order: 5; }
  .step-6 { order: 6; }
  .step-7 { order: 7; }
  .step-8 { order: 8; }
}

@media (max-width: 767px) {
  .cyber-process-section { padding: 44px 0 48px; }
  .process-container { width: 92%; }
  .section-label { margin-bottom: 24px; gap: 12px; }
  .section-label span { font-size: 14px; }
  .section-label i { width: 70px; }
  .process-top h2 { font-size: clamp(22px, 5.5vw, 28px); letter-spacing: -0.5px; margin-bottom: 18px; }
  .process-top p { font-size: 14px; line-height: 1.5; }
  .process-flow-box { padding: 22px 16px; border-radius: 20px; }
  .process-grid { gap: 18px; }
  .process-card { padding: 14px 16px; border-radius: 10px; }
  .process-card h3 { font-size: 16px; margin-bottom: 6px; }
  .process-card p { font-size: 12px; line-height: 1.4; }
  .step-row { margin-bottom: 16px; }
  .step-row img { width: 32px; height: 32px; }
  /* Section label ::after pseudo shrink */
  .section-label::after { width: 80px; }
}

@media (max-width: 480px) {
  .cyber-process-section { padding: 36px 0; }
  .process-top { margin-bottom: 32px; }
  .process-top h2 { font-size: clamp(20px, 5vw, 24px); }
  .process-top p { font-size: 13px; }
  .process-flow-box { padding: 18px 12px; border-radius: 16px; }
  .process-grid { gap: 14px; }
  .process-card { padding: 12px 14px; }
  .process-card h3 { font-size: 14.5px; }
  .process-card p { font-size: 11px; }
  .step-row img { width: 28px; height: 28px; }
}

@media (max-width: 375px) {
  .process-top h2 { font-size: 19px; }
  .process-top p { font-size: 12px; }
  .process-card h3 { font-size: 13.5px; }
  .process-card p { font-size: 10.5px; }
}


/* ── TESTIMONIALS ── */

@media (max-width: 991px) {
  .testimonials-section { padding: 44px 0; }
  .testimonials-container { grid-template-columns: 1fr; max-width: 92%; gap: 36px; }
  .testimonials-heading-inner { width: 92%; }
  .testimonials-right { padding: 36px 28px; border-radius: 28px; }
}

@media (max-width: 767px) {
  .testimonials-section { padding: 36px 0; }
  .testimonials-heading-inner { width: 92%; padding: 0; }
  .testimonials-heading-row { margin-bottom: 12px; }
  .testimonials-title { font-size: clamp(24px, 5.5vw, 32px); line-height: 1.25; margin: 10px 0 6px; }
  .testimonials-desc { font-size: 14px; line-height: 1.55; margin-bottom: 20px; max-width: 100%; }
  .author-card { max-width: 100%; padding: 16px; border-radius: 12px; gap: 12px; margin-bottom: 16px; }
  .author-card img { width: 52px; height: 52px; }
  .author-card h4 { font-size: 14px; margin-bottom: 2px; }
  .author-card p { font-size: 12.5px; }
  .primary-btn { display: block; text-align: center; font-size: 13px; padding: 11px 20px; }
  .testimonials-right { padding: 28px 22px; border-radius: 22px; }
  .testimonials-right h3 { font-size: 18px; margin-bottom: 12px; }
  .testimonial-text { font-size: 14px; line-height: 1.6; margin-bottom: 18px; }
  .testimonial-nav button { width: 36px; height: 36px; font-size: 16px; }
  .section-label::after { width: 80px; }
}

@media (max-width: 480px) {
  .testimonials-section { padding: 28px 0; }
  .testimonials-title { font-size: clamp(20px, 5vw, 24px); line-height: 1.3; }
  .testimonials-desc { font-size: 13px; }
  .testimonials-container { gap: 24px; }
  .testimonials-right { padding: 22px 18px; border-radius: 18px; }
  .testimonials-right h3 { font-size: 16px; }
  .testimonial-text { font-size: 13px; line-height: 1.55; }
  .author-card { padding: 12px; gap: 10px; }
  .author-card img { width: 44px; height: 44px; }
  .author-card h4 { font-size: 13px; }
  .author-card p { font-size: 11.5px; }
  .section-label::after { width: 60px; }
}

@media (max-width: 375px) {
  .testimonials-title { font-size: 19px; }
  .testimonials-right h3 { font-size: 15px; }
  .testimonial-text { font-size: 12px; }
  .primary-btn { font-size: 12px; padding: 10px 16px; }
}


/* ── CONTACT ── */

@media (max-width: 991px) {
  .contact-section { padding: 36px 0; }
  .contact-header { margin-left: 0; text-align: center; margin-bottom: 32px; }
  .contact-container { grid-template-columns: 1fr; width: 92%; gap: 24px; }
  .contact-left { margin-top: 0; }
  .cc-l { width: 92%; max-width: 92%; margin: 0 auto; align-items: center; text-align: center; }
  .contact-label { justify-content: center; }
  .contact-right { margin-top: 20px; }
}

@media (max-width: 767px) {
  .contact-section { padding: 32px 0; }
  .contact-header { margin-left: 0; padding: 0 18px; }
  .contact-title { font-size: clamp(24px, 5.5vw, 32px); line-height: 1.25; margin-top: 18px; }
  .contact-subtitle { font-size: 14px; margin-top: 12px; line-height: 1.5; }
  .contact-container { width: 92%; }
  .contact-left { margin-top: 0; }
  .location-image img { width: 120px; margin-right: 0; margin-bottom: 10px; }
  .location-cards { gap: 8px; }
  .location-card { padding: 12px 14px; }
  .location-card h4 { font-size: 14px; }
  .location-card p { font-size: 12.5px; line-height: 1.45; }
  .contact-right { padding-top: 28px; padding-left: 16px; padding-right: 16px; border-radius: 16px; margin-top: 16px; }
  .cc-l { width: 100%; max-width: 100%; }
}

@media (max-width: 480px) {
  .contact-section { padding: 24px 0; }
  .contact-title { font-size: clamp(20px, 5vw, 24px); line-height: 1.3; margin-top: 14px; }
  .contact-subtitle { font-size: 13px; margin-top: 10px; }
  .contact-container { gap: 18px; }
  .location-image img { width: 100px; }
  .location-card { padding: 10px 12px; border-radius: 10px; }
  .location-card h4 { font-size: 13px; }
  .location-card p { font-size: 11.5px; }
  .contact-right { padding-top: 22px; padding-left: 14px; padding-right: 14px; border-radius: 14px; }
  .contact-label { font-size: 12px; }
  .contact-label span { width: 60px; }
}

@media (max-width: 375px) {
  .contact-title { font-size: 19px; }
  .contact-subtitle { font-size: 12px; }
  .location-card h4 { font-size: 12px; }
  .location-card p { font-size: 11px; }
  .contact-right { padding-top: 18px; padding-left: 10px; padding-right: 10px; }
}


/* ── GLOBAL: TOUCH TARGETS ── */

@media (max-width: 767px) {
  .hero__cta,
  .cs-btn,
  .cta-btn,
  .primary-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .testimonial-nav button {
    min-width: 40px;
    min-height: 40px;
  }
}


/* ── GLOBAL: CONSISTENT SECTION LABELS ON SMALL MOBILE ── */

@media (max-width: 599px) {
  .biz-section__label span,
  .cs-subhead span,
  .usecase-unique-label span,
  .section-label span,
  .contact-label { font-size: 13px; }

  .biz-section__label-line,
  .cs-subhead .line,
  .usecase-unique-label i,
  .section-label i,
  .contact-label span { width: 60px; }

  .section-label::after { width: 60px; }
}
