
/* ==================================================== */
/* hero section service page style */
/* ==================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 50px 20px;
  z-index: 1;
  background: #0f0f23;
}

/*it go to currect page*/

.container {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  padding: 0 20px;
}

h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(125deg, #ffffff, #8b5cf6, #3b82f6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  animation: titleGlow 3s ease-in-out infinite alternate;
  transform: translateZ(0);
  text-shadow: 
    0 1px 2px rgba(0,0,0,0.05),
    0 4px 8px rgba(59, 130, 246, 0.1);
  transition: transform 0.4s ease, text-shadow 0.4s ease;
}

h1:hover {
  transform: translateY(-4px) translateZ(10px);
  text-shadow: 
    0 2px 4px rgba(0,0,0,0.08),
    0 6px 16px rgba(59, 130, 246, 0.15),
    0 0 20px rgba(139, 92, 246, 0.3);
}

@keyframes titleGlow {
  0% { 
    text-shadow: 0 0 8px rgba(139, 92, 246, 0.2), 0 0 15px rgba(59, 130, 246, 0.15); 
  }
  100% { 
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.35), 0 0 35px rgba(139, 92, 246, 0.3), 0 0 50px rgba(6, 182, 212, 0.2); 
  }
}

.subtitle {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  transform: translateZ(0);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.subtitle:hover {
  transform: translateZ(3px);
  opacity: 1;
}

.btn {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-block;
  margin: 0.5rem;
  min-width: 180px;
  text-decoration: none;
  z-index: 1;
  transform: translateZ(0);
  letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 2px 6px rgba(102, 126, 234, 0.2), 0 4px 12px rgba(118, 75, 162, 0.2), inset 0 -1px 0 rgba(0,0,0,0.1);
  border: none;
}

.outline-btn {
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: white;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255,255,255,0.08);
}

.achievements {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 4rem;
  perspective: 1000px;
}

.achievement {
  flex: 1 1 220px;
  padding: 2rem 1.5rem;
  border-radius: 24px;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.5s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(139, 92, 246, 0.08);
}

.achievement:hover {
  transform: translateY(-8px) scale(1.03);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2), 0 6px 18px rgba(59, 130, 246, 0.15), inset 0 1px 0 rgba(255,255,255,0.08);
}

.achievement .number {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  text-shadow: 0 0 8px rgba(139, 92, 246, 0.35), 0 0 20px rgba(59, 130, 246, 0.2);
}

.achievement:hover .number {
  transform: scale(1.08);
}
/* ==================================================== */
/* end hero section service page style */
/* ==================================================== */

