/* Service Pages CSS */
.service-page {
  min-height: 100vh;
  background-color: #2b3035;
  color: #ffffff;
}

/* Portfolio-style header for service pages */
.portfolio-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(43, 48, 53, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.back-to-home {
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.back-to-home:hover {
  opacity: 0.8;
}

.navbar-brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 4px;
}

.portfolio-title {
  color: white;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
}

/* Remove the old service header */
.service-header {
  display: none;
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #ffffff;
}

.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.5);
}

/* Service Content */
.service-content {
  background: rgba(43, 48, 53, 0.4);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.service-content h2 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
}

.service-content h3 {
  font-size: 1.3rem;
  font-weight: 400;
  margin: 2rem 0 1rem 0;
  color: #ffffff;
}

.service-content h4 {
  font-size: 1.1rem;
  font-weight: 400;
  margin: 1.5rem 0 0.5rem 0;
  color: #ffffff;
}

.service-content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-content ul, .service-content ol {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-content li {
  margin-bottom: 0.5rem;
}

.service-content strong {
  color: #ffffff;
  font-weight: 500;
}

/* Service Sidebar */
.service-sidebar {
  margin-top: 2rem;
}

.service-sidebar .card {
  background: rgba(43, 48, 53, 0.4);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-sidebar .card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.service-sidebar .card-body {
  padding: 1.5rem;
}

.service-sidebar .card-title {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
}

.service-sidebar .card-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-sidebar .list-unstyled {
  margin: 0;
  padding: 0;
}

.service-sidebar .list-unstyled li {
  margin-bottom: 0.5rem;
}

.service-sidebar .list-unstyled a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  padding: 0.25rem 0;
}

.service-sidebar .list-unstyled a:hover {
  color: #ffffff;
  text-decoration: none;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  border: none;
  border-radius: 6px;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.btn-outline-primary {
  background: transparent;
  border: 2px solid #007bff;
  color: #007bff;
  border-radius: 6px;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-primary:hover {
  background: #007bff;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .portfolio-header {
    padding: 0.75rem 1rem;
  }

  .navbar-brand-logo {
    width: 35px;
    height: 35px;
  }

  .portfolio-title {
    font-size: 1.3rem;
  }

  .service-content {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .service-content h2 {
    font-size: 1.5rem;
  }

  .service-content h3 {
    font-size: 1.2rem;
  }

  .service-sidebar {
    margin-top: 1.5rem;
  }

  .service-sidebar .card {
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .portfolio-title {
    font-size: 1.2rem;
  }

  .service-content {
    padding: 1rem;
  }

  .service-content h2 {
    font-size: 1.3rem;
  }

  .service-content h3 {
    font-size: 1.1rem;
  }
}

/* Glass morphism effect */
.service-content, .service-sidebar .card {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

.service-content {
  animation: fadeInUp 0.6s ease-out;
} 