@charset "utf-8";
/* CSS Document */
.service-card {
  display: block;
  padding: 30px 20px;
  text-decoration: none;
  color: #333;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.service-card p {
  color: #6c757d;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  background-color: #fff;
}

.icon-circle {
  width: 90px;
  height: 90px;
  border: 2px solid #22a6d5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.icon-circle i {
  font-size: 32px;
  color: #22a6d5;
  transition: all 0.3s ease;
}

/* Hover effects */
.service-card:hover .icon-circle {
  border-color: #0d6efd;
  background-color: #0d6efd;
}

.service-card:hover .icon-circle i {
  color: #fff;
}

.service-card:hover h5 {
  color: #0d6efd;
}

/*-------------------------------------------------Password Strength Start-----------------------------------------------------------------------*/
#passwordStrength
{
	height:12px;
	display:block;
	float:left;
	font: 9px Verdana, Geneva, Arial, Helvetica, sans-serif;
}

.strength0
{
	width:172px;
	background:#cccccc;
}

.strength1
{
	width:172px;
	background:#ff0000;
}

.strength2
{
	width:172px;	
	background:#ff5f5f;
}

.strength3
{
	width:172px;
	background:#56e500;
}

.strength4
{
	background:#4dcd00;
	width:172px;
}

.strength5
{
	background:#399800;
	width:172px;
}
#progress
{
	height:10px;
	width:600px;
	background-color:#CCC;
	font: 8px Verdana, Geneva, Arial, Helvetica, sans-serif;
}
/*-------------------------------------------------Password Strength End-----------------------------------------------------------------------*/
