/**
 * Service Card Widget base styles.
 */

.service-card {
  height: 100%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.service-card a.disabled{
 cursor: auto;
}


.service-card a {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-image {
  height: 160px;
  overflow: hidden;
	position: relative;
}

.logo_image{
   position: absolute;
    bottom: 0;
    left: 12%;
    width: 7rem;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  padding: 28px;
  flex-grow: 1;
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 117%;
  letter-spacing: 0%;
  color: #003361;
  margin-bottom: 1rem;
}

.service-content p {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0%;
  color: #828282;
  margin-bottom: 1rem;
}

.service-btn {
  border: none;
  margin-top: auto;
  background-color: #009a17;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  height: 3rem;
  width: 3rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  overflow: hidden;
  padding: 0 0.9rem;
  position: relative;
}

.btn-text {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  opacity: 0;
  max-width: 0;
  transition: all 0.3s ease;
  margin-right: 0;
}

.btn-icon {
  width: 1.2rem;
  height: auto;
  transition: transform 0.3s ease;
}

/* Hover State */
.service-card:hover .service-btn {
  width: 100%;
  background-color: var(--hover-color, #009a17);
  justify-content: space-between;
}

.service-card:hover .btn-text {
  opacity: 1;
  max-width: 100px;
  margin-right: 10px;
}

.service-card:hover .btn-icon {
  transform: translateX(2px);
}


@media (min-width:640px) {}

@media (min-width:768px) {}

@media (min-width:1024px) {
  .service-image {
    height: 170px;
    overflow: hidden;
  }
}

@media (min-width:1280px) {}

@media (min-width:1536px) {
  .service-image {
    height: 13rem;
  }
}