/* Services Page Styles */
.services-hero {
  background: linear-gradient(135deg, rgba(1, 113, 227, 0.9), rgba(124, 53, 247, 0.9)),
              url('https://images.pexels.com/photos/3184296/pexels-photo-3184296.jpeg') center/cover;
  color: white;
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
}

.services-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  animation: fadeInDown 0.8s ease;
}

.services-hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

/* Services List Section */
.services-list {
  padding: 80px 0;
  background: white;
}

.service-details {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-details:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  border-left-color: #7c35f7;
}

.service-details::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(1, 113, 227, 0.03), rgba(124, 53, 247, 0.03));
  z-index: 0;
}

.service-details > * {
  position: relative;
  z-index: 1;
}

.service-details .icon {
  font-size: 2.5rem;
  color: #7c35f7;
  margin-bottom: 1.5rem;
}

.service-details h2 {
  font-size: 1.8rem;
  color: #1a3c87;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.service-details h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 50px;
  height: 3px;
  background: #7c35f7;
}

.service-details > p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features, .service-benefits, .service-approach {
  margin: 2rem 0;
}

.service-features h3, .service-benefits h3, .service-approach h3 {
  font-size: 1.3rem;
  color: #1a3c87;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.service-features h3::before, .service-benefits h3::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #7c35f7;
  border-radius: 50%;
  margin-right: 10px;
}

.service-features ul, .service-benefits ul {
  list-style: none;
  padding: 0;
}

.service-features li, .service-benefits li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
  font-size: 1rem;
  color: #555;
}

.service-features li i {
  color: #7c35f7;
  margin-right: 10px;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.service-industries h3, .service-delivery h3 {
  font-size: 1.3rem;
  color: #1a3c87;
  margin-bottom: 1rem;
}

.industry-tags, .delivery-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag, .option {
  background: rgba(124, 53, 247, 0.1);
  color: #7c35f7;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Tech Resources Section */
.tech-resources {
  padding: 80px 0;
  background: #f8f9fa;
}

.tech-resources .section-title h2 {
  color: #1a3c87;
}

.tech-resources .section-title p {
  color: #666;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.tech-skills, .tech-benefits {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 100%;
}

.tech-skills h3, .tech-benefits h3 {
  font-size: 1.5rem;
  color: #1a3c87;
  margin-bottom: 1.5rem;
  position: relative;
}

.tech-skills h3::after, .tech-benefits h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 50px;
  height: 3px;
  background: #7c35f7;
}

.tech-skills p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.skill-item {
  margin-bottom: 1.5rem;
}

.skill-item h4 {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.skill-level {
  height: 8px;
  background: #e9ecef;
  border-radius: 4px;
  overflow: hidden;
}

.level-bar {
  height: 100%;
  background: linear-gradient(to right, #0171e3, #7c35f7);
  border-radius: 4px;
}

.benefit-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.benefit-item i {
  color: #7c35f7;
  font-size: 1.5rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.benefit-item h4 {
  font-size: 1.1rem;
  color: #1a3c87;
  margin-bottom: 0.3rem;
}

.benefit-item p {
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Process Section */
.process {
  padding: 80px 0;
  background: white;
}

.process .section-title h2 {
  color: #1a3c87;
}

.process .section-title p {
  color: #666;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(1, 113, 227, 0.03), rgba(124, 53, 247, 0.03));
  z-index: -1;
  border-radius: 12px;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0171e3, #7c35f7);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.step h3 {
  font-size: 1.2rem;
  color: #1a3c87;
  margin-bottom: 1rem;
}

.step p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA Section */
.cta {
  padding: 60px 0;
  background: linear-gradient(135deg, #0171e3, #7c35f7);
  color: white;
}

.cta h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 0;
}

.cta .btn-primary {
  background: white;
  color: #7c35f7;
  font-weight: 600;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.cta .btn-primary:hover {
  background: #f8f9fa;
  color: #1a3c87;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .services-hero h1 {
    font-size: 2.5rem;
  }

  .service-details {
    margin-bottom: 2rem;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .services-hero {
    padding: 80px 0 60px;
  }

  .services-hero h1 {
    font-size: 2rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .cta h3 {
    font-size: 1.5rem;
  }

  .cta .btn-primary {
    width: 100%;
  }
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}