/* Service List Styles */

.service-list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-list-clean li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #555;
}
.service-list-clean li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #198754;
  font-weight: bold;
}

/* Service Item Card */
.service-item {
  min-height: 480px;
  background-color: #198754;
  padding: 25px 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}
.service-item:hover .service-content h3,
.service-item:hover .service-content li {
  color: #fff;
}
.service-item .icon-box i {
  color: #fff;
}

/* Active Service Item */
.service-item.active .service-content h3,
.service-item.active .service-content li,
.service-item.active .service-list-clean li::before {
  color: #fff;
}

/* Text Utilities */
.text-white {
  color: white;
}


.text-white:hover {
  color: #555;
}

.text-555{
  color: #555 !important;
}
.contact-info{
  background-color: #ebfff6;
}


/* Custom Border */
.custum-border {
  border: 1px solid var(--white-color) !important;
}
/* Icon Circle */
.what-we-item .icon-box {
 
  display: flex;
  align-items: center;
  justify-content: center;
  background: #198754; /* Green circle */
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* Icon Inside Circle */
.what-we-item .icon-box i {
  font-size: 20px;       /* Bigger icon */
  color: #ffffff;        /* White icon */
  transition: all 0.3s ease;
}

/* Hover Effects */
.what-we-item:hover {
 color: #ffffff;
  transform: translateY(-3px);
 
}

.what-we-item:hover .icon-box {
  background: #ffffff;   /* Circle becomes white */
  border: 2px solid #198754;
}

.what-we-item:hover .icon-box i {
  color: #198754;        /* Icon turns green */
}



/* Responsive */
@media (min-width:768px) {
  .service-item {
    margin-bottom: 30px;
  }
}
.text-justify{
  text-align: justify;
}