/* Services Page Specific Styles */
.services-hero {
  background: linear-gradient(135deg, #0b5aaa, #06b6d4);
  color: white;
  padding: 120px 0 80px;
  text-align: center;
}

.services-hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.services-hero p {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Services Filter */
.services-filter {
  background: white;
  padding: 40px 0;
  border-bottom: 1px solid #e5e7eb;
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.filter-tab {
  background: transparent;
  border: 2px solid #e5e7eb;
  color: #6b7280;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-tab:hover,
.filter-tab.active {
  background: #0b5aaa;
  border-color: #0b5aaa;
  color: white;
}

/* Featured Services */
.featured-services {
  padding: 80px 0;
  background: #f9fafb;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #0b5aaa;
}

.service-card.featured {
  border-color: #0b5aaa;
  background: linear-gradient(135deg, #ffffff 0%, #f0fdfa 100%);
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0b5aaa, #06b6d4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon i {
  font-size: 1.5rem;
  color: white;
}

.service-badge {
  background: #0b5aaa;
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 15px;
}

.service-card p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.feature-tag {
  background: #f3f4f6;
  color: #374151;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

.service-card.featured .feature-tag {
  background: #dcfdf7;
  color: #065f46;
}

.service-footer {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.service-footer .btn {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.875rem;
}

/* Service Process */
.service-process {
  padding: 80px 0;
  background: white;
}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 200px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #0b5aaa;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.step-content h4 {
  font-size: 1.125rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 8px;
}

.step-content p {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.5;
}

.process-arrow {
  color: #0b5aaa;
  font-size: 1.5rem;
  margin: 0 10px;
}

/* Industries Section */
.industries-section {
  padding: 80px 0;
  background: #f9fafb;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.industry-card {
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.industry-card i {
  font-size: 2.5rem;
  color: #0b5aaa;
  margin-bottom: 15px;
}

.industry-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

/* About Page Specific Styles */
.about-section {
  padding: 80px 0;
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 20px;
}

.about-content p {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.125rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: #f9fafb;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  border-left: 4px solid #0b5aaa;
}

.stat-card h3 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #0b5aaa;
  margin-bottom: 8px;
}

.stat-card p {
  color: #6b7280;
  font-weight: 500;
  margin: 0;
}

/* Mission & Vision */
.mission-vision {
  padding: 80px 0;
  background: #f9fafb;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mv-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.mv-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0b5aaa, #06b6d4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.mv-icon i {
  font-size: 2rem;
  color: white;
}

.mv-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 15px;
}

.mv-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* Values Section */
.values-section {
  padding: 80px 0;
  background: white;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  text-align: center;
  padding: 30px 20px;
}

.value-icon {
  width: 60px;
  height: 60px;
  background: #f0fdfa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon i {
  font-size: 1.5rem;
  color: #0b5aaa;
}

.value-card h4 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 12px;
}

.value-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* Global Presence */
.global-presence {
  padding: 80px 0;
  background: #f9fafb;
}

.presence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.presence-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.presence-card h4 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 15px;
}

.presence-card p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 15px;
}

.presence-card p strong {
  color: #374151;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-grid,
  .mv-grid,
  .presence-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-steps {
    flex-direction: column;
    gap: 30px;
  }

  .process-arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }
}

@media (max-width: 768px) {
  .services-hero h1 {
    font-size: 2.5rem;
  }

  .filter-tabs {
    gap: 10px;
  }

  .filter-tab {
    padding: 8px 16px;
    font-size: 0.875rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-footer {
    flex-direction: column;
  }

  .service-footer .btn {
    flex: none;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .industries-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .process-arrow {
    display: none;
  }
}

@media (max-width: 480px) {
  .services-hero h1 {
    font-size: 2rem;
  }

  .services-hero p {
    font-size: 1.125rem;
  }

  .service-card {
    padding: 20px;
  }

  .mv-card,
  .presence-card {
    padding: 30px 20px;
  }

  .about-content p {
    font-size: 1rem;
  }
}
