@import url('../style.css'); /*This is to import the colors and font*/

.row-box-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; 
  max-width: 1400px;
  margin: 40px auto;
}

.row-custom-box {
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.row-custom-box:hover {
  transform: translateY(-5px);
}

.row-box-top {
  width: 100%;
  height: 8px; 
  background: var(--accent-dark);
}

.row-custom-box img {
  width: 100%;
  height: auto;
  display: block;
}

.row-box-btn {
  display: inline-block;
  margin: 15px 0;
  padding: 10px 20px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.row-box-btn:hover {
  background: var(--accent-dark-hover);
}