/* Service Pages Styles */

.page-title {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
}

.page-title h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-title .lead {
  font-size: 1.25rem;
  opacity: 0.9;
}

.section {
  padding: 80px 0;
}

.service-icon-large {
  width: 120px;
  height: 120px;
  margin: 0 auto;
}

.feature-card {
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0 !important;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #1e40af !important;
}

.feature-icon {
  text-align: center;
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.tech-tag {
  background: #e0e7ff;
  color: #3730a3;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid #c7d2fe;
  transition: all 0.3s ease;
}

.tech-tag:hover {
  background: #3730a3;
  color: white;
  transform: translateY(-2px);
}

.cta-box {
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.cta-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-title {
    padding: 80px 0 40px;
  }
  
  .page-title h1 {
    font-size: 2.5rem;
  }
  
  .service-icon-large {
    width: 100px;
    height: 100px;
  }
  
  .section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .page-title h1 {
    font-size: 2rem;
  }
  
  .page-title .lead {
    font-size: 1rem;
  }
  
  .tech-grid {
    gap: 8px;
  }
  
  .tech-tag {
    font-size: 12px;
    padding: 6px 12px;
  }
}