/* ===================== home show card start ====================== */
.feature-row {
  display: flex;
  gap: 20px;
  width: 100%;
  padding: 20px 0;
  flex-wrap: wrap;
}

/* Box Style */
.feature-box {
  position: relative;
  text-align: center;
  padding: 25px 15px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

/* Left & Right Middle Border (80%) */
.feature-box::before,
.feature-box::after {
  content: "";
  position: absolute;
  top: 10%;
  height: 80%;
  width: 3px;
  background: linear-gradient(180deg, transparent, #000000, transparent);
}

.feature-box::before {
  left: 0;
}

.feature-box::after {
  right: 0;
}

/* Image */
.feature-box img {
  width: 70px;
  margin-bottom: 15px;
}

/* Title */
.feature-box h4 {
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
}

/* Stylish Explore Button */
.explore-btn {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 30px;
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

/* Button Hover */
.explore-btn:hover {
  background: linear-gradient(135deg, #0056b3, #0099cc);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

/* Box Hover Effect */
.feature-box:hover {
  transform: translateY(-8px);
}


/* Tablet */
@media (max-width: 992px) {
  .feature-box {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }

  .home-banner .content h1 {
    font-family: Noto Serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 15px;
    letter-spacing: 0.2px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .feature-box {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* ===================== home show card end ====================== */