  :root{
    --card:#0f1720;         /* card background */
    --glass: rgba(255,255,255,0.03);
    --card-border: rgba(255,255,255,0.04);
    --shadow: 0 6px 24px rgba(2,6,12,0.6);
    --radius: 12px;
    --gap: 20px;
  }

  /* Section layout */
  #services {
    background: linear-gradient(180deg, var(--bg) 0%, #07090b 100%);
    color:var(--text);
    display:block;
  }

  #services .wrap{
    max-width: 950px;
    margin:0 auto;
  }

  #services p.lead{
    color:var(--muted);
    margin:0 0 28px;
    font-size:15px;
    max-width:820px;
  }

  /* Grid */
  .service-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:var(--gap);
    margin-top:18px;
  }

  /* Card */
  .service-card{
    background: radial-gradient(circle at top left, #1a2222 0%, #0f1111 70%);
    border:1px solid var(--card-border);
    border-radius:var(--radius);
    padding:22px;
    box-shadow: var(--shadow);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    display:flex;
    flex-direction:column;
    min-height:220px;
  }

  .service-card:hover{
    transform: translateY(-6px);
    border-color: rgba(50,192,255,0.18);
    box-shadow: 0 18px 40px rgba(2,6,12,0.75);
  }

  .service-card .icon{
    width:56px;
    height:56px;
    border-radius:10px;
    background: linear-gradient(135deg, rgba(50,192,255,0.12), rgba(122,246,198,0.06));
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-bottom:12px;
    flex-shrink:0;
  }

  .service-card h3{
    margin:0 0 8px;
    font-size:18px;
    color:var(--text);
  }

  .service-card p{
    margin:0 0 14px;
    color:var(--muted);
    font-size:14px;
    line-height:1.45;
    flex:1 1 auto;
  }

  .service-card .actions{
    margin-top:12px;
    display:flex;
    gap:10px;
    align-items:center;
  }

  .actions .btn-ghost{
    background:transparent;
    border:1px solid rgba(255,255,255,0.06);
    color:var(--accent-2);
    padding:8px 12px;
    border-radius:8px;
    font-size:13px;
    text-decoration:none;
  }

  .actions .btn-primary{
    background: linear-gradient(90deg,var(--accent-3),var(--accent-2));
    color:#04131a;
    padding:10px 14px;
    border-radius:10px;
    font-weight:600;
    font-size:14px;
    text-decoration:none;
    box-shadow: 0 8px 24px rgba(50,192,255,0.12);
  }

  /* responsive */
  @media (max-width:1100px){
    .service-grid{ grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width:680px){
    .service-grid{ grid-template-columns: 1fr; }
    .service-card{ padding:18px; }
  }
  
.color-center {
  text-align: center;
  color: var(--accent-3);
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  z-index: 1;
}

/* === Fancy Background Effect === */
.fancy-highlight {
  display: inline-block;
  padding: 18px 40px;
  margin: 0 auto;
  border-radius: 14px;
  background: radial-gradient(circle at top left, rgba(50, 192, 255, 0.25), rgba(10, 30, 40, 0.8) 70%);
  box-shadow:
    0 0 25px rgba(50, 192, 255, 0.4),
    inset 0 0 10px rgba(50, 192, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
  position: relative;
  animation: shimmerGlow 5s ease-in-out infinite;
}

/* === Animated sheen across background === */
.fancy-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: skewX(-25deg);
  animation: lightSweep 4s ease-in-out infinite;
}

/* === Subtle outer pulse === */
@keyframes shimmerGlow {
  0%, 100% {
    box-shadow:
      0 0 20px rgba(50, 192, 255, 0.3),
      inset 0 0 8px rgba(50, 192, 255, 0.15);
  }
  50% {
    box-shadow:
      0 0 35px rgba(50, 192, 255, 0.6),
      inset 0 0 12px rgba(50, 192, 255, 0.25);
  }
}

/* === Diagonal moving light reflection === */
@keyframes lightSweep {
  0% { left: -150%; }
  50% { left: 150%; }
  100% { left: 150%; }
}


/* Section content box - now with glow and gradient */
.color-center {
  text-align: center;
  color: var(--accent-3);
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  z-index: 1;
}

/* === Fancy but static background === */
.fancy-highlight-static {
  display: block;              /* make the element full-width for reliable centering */
  width: fit-content;          /* shrink width to content */
  margin: 30px auto 10px;      /* top 30px, horizontal auto, bottom 10px */
  padding: 16px 38px;
  border-radius: 14px;

  /* Layered gradient for subtle depth */
  background: linear-gradient(145deg, rgba(20, 30, 40, 0.95), rgba(10, 15, 18, 0.9)),
              linear-gradient(145deg, rgba(50, 192, 255, 0.15), rgba(10, 15, 18, 0.1));

  border: 1px solid rgba(50, 192, 255, 0.4);
  box-shadow:
    inset 0 1px 6px rgba(255, 255, 255, 0.08),
    0 0 18px rgba(50, 192, 255, 0.25);

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: none !important; 
  text-align: center;          /* center the text inside */
}


/* Optional: add a subtle metallic gradient to the text */
.fancy-highlight-static .color-center,
.fancy-highlight-static {
  background-clip: text;
  -webkit-background-clip: text;
  color: var(--accent-3);
}


/* Gradient title */
.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Intro & outro paragraphs */
.intro,
.outro {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #cbd5e1;
  max-width: 850px;
}

/* Feature list */
.feature-list {
  list-style: none;
  margin: 0 auto 2.5rem auto;
  padding: 0;
  max-width: 900px;
}

.feature-list li {
  background: linear-gradient(90deg, rgba(20,24,28,0.7) 0%, rgba(18,22,26,0.9) 100%);
  border-left: 3px solid var(--accent-3);
  padding: 15px 20px;
  margin-bottom: 12px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(50, 192, 255, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(50, 192, 255, 0.12);
}

.feature-list strong {
  color: var(--accent-3);
  font-weight: 600;
}
.btn-more-features {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #04131a;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(50,192,255,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-more-features:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(50,192,255,0.18);
}
.actions {
    text-align:right;
}


