/* Services Page Specific Styles */
.page-hero {
  min-height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
   background: linear-gradient(135deg, #374aa1 0%, #0b0a0c 100%);
  overflow: hidden;
}



.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
  

}

.page-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  animation: slideInUp 1s ease;
}

.page-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  animation: slideInUp 1s ease 0.3s both;
}

/* Services Overview Section */
.services-overview {
  padding: 5rem 0;
  background: #f8fafc;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.service-card h3 {
  font-size: 1.8rem;
  color: #2d3748;
  margin-bottom: 1rem;
}

.service-card p {
  color: #718096;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.service-card li {
  padding: 0.5rem 0;
  color: #4a5568;
  position: relative;
  padding-left: 1.5rem;
}

.service-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #3182ce;
  font-weight: bold;
}

.service-link {
  display: inline-block;
  color: #3182ce;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: #2c5aa0;
}

/* Process Section */
.process-section {
  padding: 5rem 0;
  background: white;
}

.process-timeline {
  max-width: 1000px;
  margin: 3rem auto 0;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(135deg, #374aa1 0%, #0b0a0c 100%);
}

.process-step {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.step-number {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #374aa1 0%, #0b0a0c 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  z-index: 2;
  position: relative;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.step-content {
  flex: 1;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 15px;
  margin: 0 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-content h3 {
  color: #2d3748;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.step-content p {
  color: #718096;
  line-height: 1.6;
}

/* Technology Section */
.technology-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #374aa1 0%, #0b0a0c 100%);
  color: white;
}

.technology-section .section-title {
  color: white;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tech-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  text-align: center;
  transition: transform 0.3s ease;
}

.tech-card:hover {
  transform: translateY(-10px);
}

.tech-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.tech-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.tech-card p {
  opacity: 0.9;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: #2d3748;
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .process-step,
  .process-step:nth-child(even) {
    flex-direction: column;
    text-align: center;
  }
  
  .step-content {
    margin: 1rem 0;
  }
  
  .process-timeline::before {
    display: none;
  }
  
  .step-number {
    width: 80px;
    height: 80px;
    font-size: 1.5rem;
  }
}

/* Animations */
.service-card,
.process-step,
.tech-card {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

.service-card.animate-in,
.process-step.animate-in,
.tech-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animations */
.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }
.service-card:nth-child(4) { transition-delay: 0.4s; }
.service-card:nth-child(5) { transition-delay: 0.5s; }
.service-card:nth-child(6) { transition-delay: 0.6s; }

.process-step:nth-child(1) { transition-delay: 0.1s; }
.process-step:nth-child(2) { transition-delay: 0.2s; }
.process-step:nth-child(3) { transition-delay: 0.3s; }
.process-step:nth-child(4) { transition-delay: 0.4s; }
.process-step:nth-child(5) { transition-delay: 0.5s; }

.tech-card:nth-child(1) { transition-delay: 0.1s; }
.tech-card:nth-child(2) { transition-delay: 0.2s; }
.tech-card:nth-child(3) { transition-delay: 0.3s; }
.tech-card:nth-child(4) { transition-delay: 0.4s; } 