body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #f5f5f5;
    overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}


.glow-border {
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.gradient-bg {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.hero-bg {
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.1) 0%, rgba(10, 10, 10, 0) 70%);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.2);
}

.tech-icon {
    transition: all 0.3s ease;
}

.tech-icon:hover {
    transform: scale(1.2);
    filter: brightness(1.5);
}

.team-card:hover .team-img {
    transform: scale(1.05);
}

.stats-card {
    transition: all 0.5s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #00d4ff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.active {
    color: #00d4ff;
}

.active::after {
    width: 100%;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #00a2c7);
    z-index: 1000;
}

@keyframes growFromZero {
    from { height: 0; }
    to { height: var(--grow-percent); }
}

.animate-grow-from-0 {
    animation: growFromZero 2s ease-in-out forwards;
}

.scarfaze-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    width: 150px !important;
    height: 140px !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
  }

  .scarfaze-card p {
    margin-top: 8px;
    font-weight: 500;
    color: #d1d5db;
    font-size: 0.95rem;
  }

  .scarfaze-card:hover {
    transform: scale(1.07);
    border-color: rgba(96,165,250,0.5);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 25px rgba(96,165,250,0.3);
  }

  h2, h3 {
    letter-spacing: -0.02em;
  }

  .swiper-wrapper {
    transition-timing-function: linear !important; /* smooth linear motion */
  }

  .bar {
    width: 100%;
    background: linear-gradient(to top, #0ea5e9, #38bdf8);
    border-radius: 0.5rem;
    transition: height 2s cubic-bezier(0.25, 1, 0.5, 1);
    height: 0;
  }
  
  /* Enhanced bar chart styles */
  .bar::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #38bdf8;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .bar:hover::before {
    opacity: 1;
  }
  .metric-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1rem;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.4s ease;
  }
  .metric-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 20px rgba(14,165,233,0.2);
  }

  /* Circular Chart Styles */
  .circular-chart {
    display: block;
    margin: 10px auto;
    max-width: 80%;
    max-height: 250px;
  }
  
  .circle-bg {
    fill: none;
    stroke: #2d2d2d;
    stroke-width: 3;
  }
  
  .circle {
    fill: none;
    stroke-width: 3;
    stroke: #00d4ff;
    animation: progress 1s ease-out forwards;
  }
  
  @keyframes progress {
    0% {
      stroke-dasharray: 0 100;
    }
  }
  
  .percentage {
    fill: #00d4ff;
    font-size: 0.5em;
    text-anchor: middle;
    dominant-baseline: middle;
  }