html, body {
  height: 100%; /* Make sure the body and HTML elements fill the entire height */
  margin: 0;    /* Remove any default margin */
  display: flex;
  flex-direction: column; /* Allow the page content to grow vertically */
}

.hero h1 { font-size: 3rem; font-weight: 700; }
.hero p { font-size: 1.2rem; margin-bottom: 30px; }
	
.hero {
  background: linear-gradient(to right, #0a0a0a, #1f1f1f);
  color: white;
  padding: 100px 20px;
  text-align: center;
}

.icon { font-size: 2rem; color: #0d6efd; margin-bottom: 15px; }
.trust-logos img { max-height: 40px; margin: 0 10px; }
footer { background: #111; color: #aaa; padding: 40px 20px; text-align: center; margin-top: auto; }

.service-box {
  padding: 30px;
  border-radius: 0.75rem;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.service-box .icon {
  font-size: 2rem;
  margin-bottom: 15px;
  transition: 0.3s;
}

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

.lock-hover:hover {
  background-color: #cce7ff;
  border: 2px solid #007bff;
  border-radius: 50%;
  padding: 30px;
}

.lock-hover:hover .icon {
  color: #007bff;
  animation: lockAnimation 1s ease-out infinite;
}

.lock-hover:hover h5,
.lock-hover:hover p {
  color: #007bff;
  animation: lockAnimation 1s ease-out infinite;
}
