.streams {
  text-align: center;
}
.streams section {
  display: inline-block;
  margin-left: 0.3%;
  cursor: pointer;
}

.streams section > span {
  font-size: 22px;
  margin-bottom: 0px;
}

.streams section .imgArea {
  width: 167px;
  height: 154px;
  overflow: hidden;
  position: relative;
  border: 7px solid #f6f6f6;
}

.streams section .imgArea img {
  width: 100%;
  height: 100%;
}

.streams section:hover .imgArea .hover {
  background: rgba(0, 0, 0, 0.7);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#70000000,endColorstr=#70000000);
}

.streams section .imgArea .hover {
  position: absolute;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
}

.streams section .imgArea .textBox {
  bottom: 0px;
  height: 100%;
  padding: 57px 3px 0px 3px;
  position: absolute;
  text-align: center;
  z-index: 2;
  width: 100%;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 80%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 80%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 80%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#cc000000',GradientType=0 ); /* IE6-9 */
}

.streams section .imgArea .textBox p {
  color: #fff;
  height: 75px;
  overflow: hidden;
  font-family: "Alef", arial;
}

@media only screen and (max-width: 600px) {
}

/* Modern Companies List Design */
.companies_list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  padding: 20px;
}

.companies_list .company_item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}

.companies_list .company_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: #80e5c3;
}

.companies_list .company_item a {
  width: 100%;
  height: 140px;
  background: #f8f9fa;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  padding: 10px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.companies_list .company_item a img {
  max-width: 70% !important;
  max-height: 70%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.companies_list .company_item:hover a img {
  transform: scale(1.05);
}

.companies_list .company_item a span {
  font-size: 1em;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-top: 8px;
  line-height: 1.2;
}

.companies_list .company_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #80e5c3 0%, #00c99f 50%, #2ad09d 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.companies_list .company_item:hover::before {
  opacity: 1;
}

/* Responsive Design for Companies List */
@media (max-width: 768px) {
  .companies_list {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
    padding: 15px;
  }

  .companies_list .company_item a {
    height: 120px;
  }

  .companies_list .company_item a span {
    font-size: 0.9375em;
  }
}

@media (max-width: 480px) {
  .companies_list {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 10px;
  }

  .companies_list .company_item a {
    height: 100px;
  }

  .companies_list .company_item a span {
    font-size: 0.875em;
  }
}
