.header-area {
  width: 100%;
  padding-top: 40px;
  z-index: 10;
  display: flex;
  justify-content: center;
}

.bism-wrapper {
  /* Fix: Use a wider max-width on mobile to prevent squeezing */
  width: 90%;
  max-width: 500px;
  padding: 20px;
  position: relative;
  text-align: center;

  /* Premium Glassmorphism */
  /*background: rgba(255, 255, 255, 0.8);*/
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);

  /* Clean Border Design */
  border-top:3px solid var(--maroon);
  border-bottom: 3px solid var(--maroon);
  

  /* Lifted Shadow */
  box-shadow: 0 15px 35px rgba(122, 15, 44, 0.1);
  transition: transform 0.3s ease;
}
.bism-img {
  width: 100%;
  margin: auto;
}
.bism-ar {
  width: 100%;
  display: block;
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
  word-wrap: normal;
  font-size: clamp(1rem, 10vw, 3.5rem);
  color: var(--maroon);
  line-height: 1;
  margin: 0 0 12px 0;
  overflow: visible;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.bism-en {
  font-family: "Quicksand", sans-serif;
  font-size: clamp(0.6rem, 2.5vw, 0.75rem);
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--ruby2);
  text-transform: uppercase;
  line-height: 1.4;
}

/* Optimized Mobile View */
@media screen and (max-width: 600px) {
  .header-area {
    padding-top: 25px;
  }
  .bism-wrapper {
    width: 85%; /* Slightly wider to give character room */
    padding: 15px 10px;
    /* Remove outline on mobile if it feels cluttered */
    outline: none;
  }
}
