/* Custom styles for Ironstone Security */

/* Background image with overlay */
body {
  background-image: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

/* Dark overlay for readability */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 6, 23, 0.75);
  z-index: -1;
  pointer-events: none;
}

/* Ensure header and content have good contrast */
header {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Main content areas */
.swiper-container,
.strip,
.mx-auto {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

/* Blog section */
.mx-auto.my-10 {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 8px;
}
