.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.badge {
  background: linear-gradient(145deg, #ffffff, #e6e6e6);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1),
              0 1px 3px rgba(0, 0, 0, 0.08);
  padding: 10px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #c00113;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
  border: 1px solid #ccc;
}

.badge:hover {
  background: #f7f7f7;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}
.brand-icon {
    color: #B10319;
  }
.margine-top-20{
margin-top: 40px;
} 
.weblink a:hover {
  color: #000; 
  font-size: 13px;
}
@media (min-width: 768px) {
  .list-right-wrap {
    position: relative;
    padding-left: 30px;
    min-height: 150px;
  }

  .list-right-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background-color: #c00113;
    border-radius: 2px;
  }
}

@media (max-width: 767px) {
  .list-right-wrap {
    padding-left: 15px; 
    margin-bottom: 20px; 
  }

  .list-right-wrap::before {
    display: none; 
  }
}
