/* =========================
   SOLUTIONS SECTION
========================= */

.solutions {
  padding: 70px 20px;
  background: #f5f7fb;
  font-family: 'Segoe UI', sans-serif;
}

/* ===== Heading ===== */

.solutions .solutions-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.solutions .subtitle {
  font-size: 13px;
  color: #2f6df6;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.solutions .title {
  font-size: 30px;
  color: #1a1a1a;
  font-weight: 600;
  line-height: 1.4;
}

/* ===== Grid Layout ===== */

.solutions .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== Cards ===== */

.solutions .column {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  height: 100%;
}

.solutions .column:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(47, 109, 246, 0.15);
}

.solutions .column h3 {
  font-size: 14px;
  color: #7a8ca5;
  margin-bottom: 18px;
  font-weight: 600;
}

/* ===== Items ===== */

.solutions .item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 16px 0;
  font-size: 15px;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1.5;
}

.solutions .item:hover {
  color: #2f6df6;
  transform: translateX(6px);
}

/* ===== Icons ===== */

.solutions .item i {
  background: #eef4ff;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  min-width: 36px;
  text-align: center;
  color: #2f6df6;
}

/* ===== Highlight (Agentic AI) ===== */

.solutions .highlight {
  background: #eef4ff;
  padding: 12px;
  border-radius: 10px;
  justify-content: space-between;
}

.solutions .highlight span {
  background: #ff3b3b;
  color: #fff;
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 20px;
  margin-left: auto;
}

/* ===== CTA Button ===== */

.solutions .cta {
  text-align: center;
  margin-top: 50px;
}

.solutions .cta button {
  padding: 14px 28px;
  border: none;
  background: #2f6df6;
  color: #fff;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.solutions .cta button:hover {
  background: #1d4ed8;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

/* Tablet */
@media (max-width: 992px) {
  .solutions .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {

  .solutions {
    padding: 50px 15px;
  }

  .solutions .title {
    font-size: 24px;
  }

  .solutions .container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .solutions .column {
    padding: 20px;
  }

  .solutions .item {
    font-size: 14px;
  }
}