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);
}

/* Glitch (PenTest) */
@keyframes glitch {
  0% { transform: translate(0); opacity: 1; }
  20% { transform: translate(-2px, 2px); opacity: 0.8; }
  40% { transform: translate(2px, -2px); opacity: 0.6; }
  60% { transform: translate(-1px, 1px); opacity: 0.9; }
  80% { transform: translate(1px, -1px); opacity: 0.7; }
  100% { transform: translate(0); opacity: 1; }
}

.pentest-hover:hover {
  background: linear-gradient(135deg, #1a1a1a, #2e2e2e);
  color: #0f0;
  box-shadow: 0 0 20px #0f0;
  border: 1px dashed #0f0;
}
.pentest-hover:hover .icon,
.pentest-hover:hover h5,
.pentest-hover:hover p {
  animation: glitch 0.6s infinite;
  color: #0f0 !important;
  text-shadow: 0 0 2px #0f0, 0 0 5px #0f0;
}

/* Radar Scan (Vulnerability Assessments) */
@keyframes scan {
  0% { box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.5); }
  100% { box-shadow: 0 0 0 20px rgba(0, 255, 0, 0); }
}

.scan-hover:hover {
  background-color: #e6ffe6;
  border: 1px solid #0f0;
}

.scan-hover:hover .icon {
  color: #0f0;
  animation: scan 1s infinite;
}

/* Flash Warning (Attack Simulations) */
@keyframes warningFlash {
  0%, 100% { background-color: #fff; }
  50% { background-color: #ffcccc; }
}

.warning-hover:hover {
  animation: warningFlash 0.8s infinite;
  border: 1px solid red;
}

.warning-hover:hover .icon {
  color: red;
}



/* Circular Lockdown (Security Consulting) */
@keyframes lockAnimation {
  0% {
    transform: scale(1);
    border-radius: 50%;
    opacity: 1;
  }
  50% {
    transform: scale(1.01);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    border-radius: 50%;
    opacity: 1;
  }
}

.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;
}
