/* Homepage product categories */
#products {
  position: relative;
  overflow: hidden;
  padding: 92px 0 96px;
  background:
    radial-gradient(circle at 5% 10%, rgba(13, 91, 199, 0.08), transparent 27%),
    radial-gradient(circle at 95% 85%, rgba(7, 59, 143, 0.07), transparent 25%),
    #f4f8fd;
}

#products::before {
  content: "";
  position: absolute;
  top: 55px;
  right: -90px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(13, 91, 199, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(13, 91, 199, 0.025),
    0 0 0 78px rgba(13, 91, 199, 0.018);
  pointer-events: none;
}

#products .container {
  position: relative;
  z-index: 1;
}

#products .section-title {
  max-width: 820px;
  margin: 0 auto 24px;
}

#products .section-title .small-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid #d9e7f8;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #0b4da2;
  font-size: 12px;
  letter-spacing: 1.4px;
}

#products .section-title .small-title::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e31d2b;
  box-shadow: 0 0 0 4px rgba(227, 29, 43, 0.1);
}

#products .section-title h2 {
  max-width: 760px;
  margin: 14px auto 0;
  color: #101d35;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.15;
  letter-spacing: -1px;
}

#products .section-description {
  max-width: 700px;
  margin-top: 14px;
  color: #637083;
  font-size: 15px;
  line-height: 1.75;
}

#products .section-title .line {
  display: none;
}

.product-assurance {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0 0 34px;
  flex-wrap: wrap;
}

.product-assurance span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 8px;
  background: #fff;
  color: #435168;
  font-size: 12px;
  font-weight: 650;
  box-shadow: 0 5px 16px rgba(7, 29, 73, 0.06);
}

.product-assurance i {
  color: #0d5bc7;
}

#products .row {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}

#products .category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid #e1e9f3;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(7, 29, 73, 0.055);
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

#products .category-card:focus-visible {
  outline: 3px solid rgba(13, 91, 199, 0.24);
  outline-offset: 3px;
}

#products .category-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  height: 3px;
  background: linear-gradient(90deg, #073b8f, #0d76db, #e31d2b);
  opacity: 0;
  transition: opacity 220ms ease;
}

#products .category-card:hover {
  transform: translateY(-7px);
  border-color: #c8d9ed;
  box-shadow: 0 20px 42px rgba(7, 29, 73, 0.13);
}

#products .category-card:hover::before {
  opacity: 1;
}

#products .product-company-logo {
  height: 58px;
  padding: 13px 18px 8px;
  justify-content: flex-start;
  background: #fff;
  border: 0;
}

#products .product-company-logo img {
  max-width: 104px;
  max-height: 31px;
}

#products .category-image {
  height: 185px;
  margin: 0 14px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid #edf2f7;
  border-radius: 13px;
  background: linear-gradient(145deg, #f8fbff, #f1f5fa);
}

#products .category-image img {
  transition: transform 280ms ease;
}

#products .category-card:hover .category-image img {
  transform: scale(1.055);
}

#products .category-card h5 {
  position: relative;
  margin: 0;
  padding: 19px 46px 0 18px;
  color: #14233a;
  text-align: left;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 750;
}

#products .category-card h5::after {
  content: "\2192";
  position: absolute;
  top: 14px;
  right: 17px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #edf4fd;
  color: #0d5bc7;
  font-size: 16px;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

#products .category-card:hover h5::after {
  color: #fff;
  background: #0d5bc7;
  transform: translateX(2px);
}

#products .category-card p {
  display: block;
  min-height: 0;
  max-width: none;
  margin: 0;
  padding: 10px 18px 22px;
  color: #667388;
  text-align: left;
  font-size: 13px;
  line-height: 1.65;
}

#products .text-center.mt-4 {
  margin-top: 36px !important;
}

#products .btn-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 10px;
  box-shadow: 0 10px 22px rgba(7, 59, 143, 0.2);
}

#products .btn-main i {
  transition: transform 180ms ease;
}

#products .btn-main:hover i {
  transform: translateX(3px);
}

@media (max-width: 767.98px) {
  #products {
    padding: 70px 0;
  }

  #products .section-title {
    margin-bottom: 20px;
  }

  #products .section-title h2 {
    font-size: 29px;
    letter-spacing: -0.5px;
  }

  .product-assurance {
    margin-bottom: 26px;
  }

  #products .category-image {
    height: 210px;
  }
}

@media (max-width: 575.98px) {
  #products .row {
    --bs-gutter-y: 16px;
  }

  #products .category-card {
    border-radius: 15px;
  }

  #products .category-image {
    height: 195px;
  }
}
