
/* Blue overlay with radial gradient */
.blue-overlay {
  background: radial-gradient(45.15% 42.05% at 49.04% 57.08%, rgba(4, 3, 14, 0) 0.01%, #170808 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* Ensure it's above the image */
  opacity: 0.35; /* Set the opacity to 20% */
}

/* Image background for the main section */
.cover-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/header1.jpeg') no-repeat center center;
  background-size: cover;
  z-index: -1;
}

