* {
  font-family: sans-serif;
  text-transform: capitalize;
}
:root {
  --bg-color: #0a192f;
  --text-color: #c9d1d9;
  --heading-color: #58a6ff;
  --bg-section-1: #0a192f;
  --bg-section-2: #0d1e38;
  --bg-section-3: #0f223f;
  --bg-section-4: #081628;
  --bg-section-5: #0c1b34;

  --primary-dark: #0a192f;

  --blue-dark: #112240;
  --teal-dark: #233554;
  --purple-dark: #2c1a4a;
  --cyan-bright: #00ffff;
  --teal-bright: #2bc4ad;
}
body {
  overflow-x: hidden;
  background: var(--bg-color);
  min-height: 100vh;
}
nav {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  background-color: rgba(10, 25, 47, 0.8);
  backdrop-filter: blur(10px);
  position: relative;
}
.scroller {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--text-color);
  transition: 0.1s;
}
.hero-gradient {
  background: var(--bg-color);
}
.hero-gradient .textContent {
  transform: translateX(-700px);
  transition: 0.7s;
}
.hero-gradient .imgParent {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--text-color);
  transform: translateX(700px);
  transition: 0.7s;
}
@media (max-width: 768px) {
  .hero-gradient .imgParent {
    width: 300px;
    height: 300px;
  }
}
.hero-gradient .off {
  transform: translateX(0);
}
.hero-gradient .Title {
  font-size: 2rem;
}
nav .links a {
  position: relative;
  display: block;
  text-decoration: none;
  text-transform: capitalize;
  color: var(--text-color);
}
nav .links a::before {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--heading-color);
  transition: 0.3s;
}
.animate-stats {
  opacity: 1;
}
nav .links a:hover::before {
  width: 100%;
}
.stats {
  background-color: var(--bg-section-2);
}
.stats p {
  color: var(--text-color);
}
#services {
  background-color: var(--bg-section-3);
  color: white;
}
.proven {
  background-color: var(--bg-section-4);
}
.proven .parentt {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.proven .parentt .relative {
  position: relative;
  margin: 0 10px;
}

.proven .parentt .photo img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}
#clients {
  background-color: var(--bg-section-5);
}
.service-card {
  transition: 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.parentimgs > div {
  background: none;
  background-color: white;
}
.parentimgs > div img {
  width: 200px;
  height: 150px;
}
.client-logo:hover {
  filter: brightness(1.2);
  transform: scale(1.05);
}

.contact-input:focus {
  outline: none;
  border-color: #667eea;
}
.Top {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 20px;
  bottom: 10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #58a6ff;
  cursor: pointer;
  opacity: 0;
  transition: 0.3s;
}
.Top:hover {
  background-color: #081628;
}
.Top i {
  color: var(--text-color);
  font-size: 1.6rem;
}
