/* =====================
   PRODUCTS SECTION
   ===================== */
.nb-products {
  padding: 70px 0;
  background: linear-gradient(180deg, #E2E8F0 0%, #FFFFFF 100%);
}

.nb-products .nb-section-title { margin-bottom: 48px; }
.nb-products .nb-section-title h2 { color: #1a1a2e; }
.nb-products .nb-section-title p  { font-size: 18px;
    color: #475569;
    font-weight: 500;
    line-height: 1.6; }

/* 2 column grid */
.nb-products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Card */
.nb-products__card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;padding:16px;
  flex-direction: column;
}
.nb-products__card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
  transform: translateY(-4px);
}

/* Image wrapper */
.nb-products__img-wrap {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
  flex-shrink: 0;border-radius: 16px;
}
.nb-products__img {
  width: 100%;
  height: 100%;
  display: block;border-radius: 16px;
  transition: transform 0.45s ease;
}
.nb-products__card:hover .nb-products__img {
  transform: scale(1.04);
}

/* Logo badge — bottom left of image */
.nb-products__logo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 12px 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  max-width: 200px;
}
.nb-products__logo-badge img {
  height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nb-products__logo-badge--text {
  font-size: 18px;
  font-weight: 800;
  color: #1a1a2e;
  letter-spacing: -0.5px;
}

/* Card body */
.nb-products__body {
  padding: 28px 0 0 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.nb-products__body h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 10px;
  line-height: 1.35;
}
.nb-products__body p {
  font-size: 16px; font-weight:500;
  color: #334155;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

/* Explore More link */
.nb-products__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}
.nb-products__link svg {
  transition: transform 0.3s ease;
}
.nb-products__link:hover {
  color: #4f46e5;
  gap: 10px;
}
.nb-products__link:hover svg {
  transform: translate(3px, -3px);
}

/* Responsive */
@media(max-width:768px) {
  .nb-products__grid       { grid-template-columns: 1fr; }
  .nb-products__img-wrap   { height: 260px; }
  .nb-products{padding:30px 0}
}
@media(max-width:568px) {
.nb-products{ padding:25px 0}
.nb-products .nb-section-title{margin-bottom:25px;}
}
@media(max-width:480px) {
  .nb-products__img-wrap   { height: 220px; }
  .nb-products__body       { padding: 20px; }
  .nb-products__body h3    { font-size: 17px; }
}
