/* Custom overrides – change anything here */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Example: make primary buttons purple */
.bg-primary {
  background-color: #0047ab !important; /* Cobalt */
  border-color: #0047ab;
}
.btn-primary {
  background-color: #0047ab; /* Cobalt */
  border-color: #0047ab;
}
.btn-primary:hover {
  background-color: #2a52be; /* Cerulean Blue */
  border-color: #2a52be;
}

.pizza {
  visibility: hidden;
  position: absolute;
}

/* .btn-primary {
  background-color: #6f42c1;
  border-color: #6f42c1;
}
.btn-primary:hover {
  background-color: #5a2d91;
  border-color: #5a2d91;
} */

/* Heading text */
.text-primary {
  color: #0047ab !important; /* Cobalt */
}

/* DevSecOps consistent styling - use cobalt blue for info elements */
.border-info {
  border-color: #0047ab !important; /* Cobalt */
}
.text-info {
  color: #0047ab !important; /* Cobalt */
}

/* Column Headers - Professional styling with icons */
.column-header {
  background: linear-gradient(135deg, #0047ab 0%, #2a52be 100%);
  color: white;
  padding: 1.5rem 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 60px;
}

/* .column-header:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
} */

.column-header::before {
  font-size: 1.5rem;
  font-weight: bold;
}

/* 
.column-header.devsecops::before {
  content: "⚙️";
}

.column-header.cloud-arch::before {
  content: "☁️";
}

.column-header.cloud-migration::before {
  content: "🚀";
} */

/* Service Cards - Professional styling */
.service-card {
  border: 2px solid #0047ab;
  border-radius: 8px;
  padding: 2rem;
  background-color: white;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: 0 8px 16px rgba(0, 71, 171, 0.15);
  border-color: #2a52be;
  transform: translateY(-4px);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.service-card h4 {
  color: #0047ab;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.service-points {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.service-points li {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.5;
}

.service-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2a52be;
  font-weight: bold;
}

/* Center cards on small screens */
@media (max-width: 576px) {
  .card { margin: 1rem; }
}
