.hero {
  background: linear-gradient(135deg, #6c63ff, #5dd9c1);
  color: white;
  padding: 50px 0;
  text-align: center;
}
.feature-icon {
  font-size: 2.5rem;
  color: #6c63ff;
}
.section {
  padding: 30px 0;
}
.navbar {
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.bill-form input {
  max-width: 400px;
  margin: 0 auto;
}
.focus-target {
transition: opacity 0.3s ease;
}
.faded {
opacity: 0.4;
}
.loader {
	position: relative;
	width: 80px;
	height: 80px;
	margin:50px auto;
}
.loader div {
	position: absolute;
	width: 16px;
	height: 16px;
	background: #fff;
	border-radius: 50%;
	animation: pulse 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	box-shadow: 0 0 10px #fff, 0 0 20px #fff;
}
.loader div:nth-child(1) {
	top: 8px;
	left: 32px;
	animation-delay: -0.4s;
}
.loader div:nth-child(2) {
	top: 32px;
	left: 56px;
	animation-delay: -0.2s;
}
.loader div:nth-child(3) {
	top: 56px;
	left: 32px;
	animation-delay: 0s;
}
.loader div:nth-child(4) {
	top: 32px;
	left: 8px;
	animation-delay: -0.6s;
}
@keyframes pulse {
	0% {
		transform: scale(0.5);
		opacity: 0.3;
	}
	50% {
		transform: scale(1.2);
		opacity: 1;
	}
	100% {
		transform: scale(0.5);
		opacity: 0.3;
	}
}
.service a {
	text-decoration:none;
	color:inherit;
}