* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;

    background:
        linear-gradient(
            rgba(10,20,30,.88),
            rgba(10,20,30,.88)
        ),
        url("../assets/images/home.jpg");

background-size: 100% auto;
    background-position: top center;
    background-repeat: repeat;
    background-attachment: scroll;
}

a {
  text-decoration: none;
  color: inherit;
}

/* HEADER */
.header {
    width: 100%;
    height: 70px;
    padding: 0 8%;
    background: rgba(15, 26, 36, 0.96);
    border-bottom: 1px solid rgba(34, 199, 232, 0.25);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  letter-spacing: 3px;
}

.header-logo img {
  width: 42px;
}

.navbar {
  display: flex;
  gap: 25px;
}

.navbar a {
  font-size: 14px;
  color: #d8e8f2;
}

.navbar a:hover,
.navbar a.active {
  color: #22c7e8;
}

/* Glow */
.glow-dot {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,199,232,0.12) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
  z-index: 0;
}

.glow-dot-2 {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,169,255,0.08) 0%, transparent 70%);
  bottom: 100px;
  left: -80px;
  pointer-events: none;
  z-index: 0;
}

/* HERO */
.service-hero {
  padding: 80px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.service-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.service-hero p {
  color: #c9d8e6;
  font-size: 18px;
  margin-bottom: 10px;

}

/* BADGES */
.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(34,199,232,0.08);
  border: 1px solid rgba(34,199,232,0.25);
  border-radius: 20px;
  font-size: 13px;
  color: #c9d8e6;
}

/* GRID */
.service-details {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.service-block {
  background: rgba(12,24,39,.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(34,199,232,.25);
  border-radius: 24px;
  padding: 28px;
  transition: .35s;
}

.service-block:hover {
  border-color: #22c7e8;
  box-shadow: 0 0 35px rgba(34,199,232,.15);
}

.service-block h2 {
  margin-bottom: 12px;
  font-size: 20px;
}

.service-block h2 i {
  color: #22c7e8;
  margin-right: 8px;
}

.service-block p,
.service-block ul {
  color: #c9d8e6;
  line-height: 1.7;
}

.service-block ul {
  padding-left: 20px;
}

.service-block ul li {
  margin-bottom: 6px;
}

/* CTA */
.service-cta {
  grid-column: 1 / -1;
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #22c7e8;
  color: #06131d;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: bold;
  transition: 0.25s;
}

.btn:hover {
  background: #1ab0ce;
  transform: translateY(-2px);
}

/* STATS */
.stats-row {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
  background: rgba(12,18,28,0.5);
  border-radius: 40px;
  padding: 1.8rem 1.2rem;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: #b3d9ff;
}

.stat-label {
  color: #8aaacf;
  font-size: 14px;
}

/* FOOTER */
footer {
  padding: 1rem 5%;
  text-align: center;
  font-size: 0.8rem;
  color: #586f88;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .service-details {
    grid-template-columns: 1fr;
  }

  .service-hero h1 {
    font-size: 30px;
  }

  .navbar {
    display: none;
  }
}