.research {
  background-color:rgba(34, 197, 94,0.1) ;
  border-radius:20px;
  width:100%;
}

/* Card */
.research-box {
  position: relative;
  height: 320px;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* Image */
.research-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay */
.research-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.65)
  );
  z-index: 1;
}

/* Content */
.research-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  color: #ffffff;
}

/* Title – 2 lines */
.research-content .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Paragraph – 3 lines */
.research-content .desc {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  opacity: 0.9;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Arrow Button */
.view-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background:var(--primary);
  color: #fff;
  border: none;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.view-btn i {
  font-size: 18px;
}

/* Hover */
.research-box:hover .view-btn {
  transform: translate(2px, -2px);
  transition: 0.2s ease;
}


@media (max-width: 992px) {

}