/* Keep background image fixed, full screen, and transparent */
body::before {
content: "";
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url("https://prices.elixirpharma-eg.com/wp-content/uploads/2025/09/elixir-2-1.png") repeat;
background-size: auto;
background-position: top left;
opacity: 0.2; /* 20% opacity */
z-index: -1; /* stays behind content */
}
