/* core_sections.css - Core Capabilities & Services (English) */
.hs-core-sections {
  padding: 60px 0;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  color: #1f2937;
}
.hs-core-sections .hs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.hs-top { text-align: center; margin-bottom: 24px; }
.hs-title { margin: 0; font-weight: 700; color: #0b2a44; }
.hs-sub { margin-top: 8px; color: #5b6b78; max-width: 900px; margin-left: auto; margin-right: auto; }

.hs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}

/* card */
.hs-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 8px 28px rgba(11, 42, 68, 0.06);
  transition: transform 0.36s ease, box-shadow 0.36s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px);
}
.hs-card.in-view {
  opacity: 1;
  transform: translateY(0);
}
.hs-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 48px rgba(11, 42, 68, 0.12);
}

/* icon */
.hs-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(11,42,68,0.06), rgba(11,42,68,0.02));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #0b2a44;
  transition: transform 0.36s;
}
.hs-card:hover .hs-card-icon { transform: translateY(-6px) scale(1.05); }

/* title & body */
.hs-card-title { margin: 6px 0 10px; font-weight: 600; color: #0b2a44; }
.hs-card-body { color: #4b5963; line-height: 1.6; margin-bottom: 12px; text-align: left; }
.hs-card-bullets, .hs-list { margin: 8px 0 0 16px; color: #4b5963; }
.hs-card-bullets li, .hs-list li { margin-bottom: 6px; }

/* links */
.hs-card-link {
  display: inline-block;
  margin-top: 12px;
  color: #0b66ff;
  text-decoration: none;
  font-weight: 600;
}
.hs-card-link:hover { text-decoration: underline; }

@media (max-width: 1100px) {
  .hs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .hs-grid { grid-template-columns: 1fr; }
  .hs-core-sections { padding: 40px 0; }
  .hs-card { padding: 20px; }
}
