body {
  background-color: #356bb7;
}
* {
  font-family: 'Alexandria', sans-serif !important;
}
.header-btn {
  background-color: #ef6341;
  display: flex;
  justify-content: space-around;
  border: none;
  border-radius: 30px;
  padding:  0;
  padding-right: 10%;
  align-items: center;
}
.explore-btn {
  background-color: #356bb7;
  display: flex;
  justify-content: space-around;
  border: none;
  border-radius: 30px;
  padding-right: 5%;
  align-items: center;
  font-size: x-small;
  font-weight: bold;
  width: 50%;
}
.explore-btn img {
  width: 40px;
}
@media (min-width: 768px) {
  .w-md-50 {
    width: 50% !important;
    font-size: small;
  }
  .explore-btn img {
    width: 40px;
  }
}

/* Add arrow rotation and card height equalization */
.arrow-rotate-en {
  transform: rotate(180deg);
}

/* Center explore-btn on English */
.center-en {
  justify-content: center !important;
  padding-right: 0%;
  display: flex !important;
}

/* Equal height for category cards */
.categories .row.g-4 {
  display: flex;
  flex-wrap: wrap;
}
.categories .col-md-6.my-3 {
  display: flex;
}
.categories .card {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 350px;
  justify-content: space-between;
}

/* Standardize image dimensions - only for category images, not button icons */
.categories .card > img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  margin-bottom: 15px;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('/water_mark.jpeg');
  background-repeat: repeat;
  background-attachment: fixed;
  background-size: 200px auto;
  opacity: 0.3;
  z-index: -1;
  pointer-events: none;
}@media (max-width: 768px) {
  body::before {
    background-size: 150px auto;
  }
  
}

/* Slide-in animation for header image */
.header-img {
  animation: header-img-slide-in 1s cubic-bezier(0.4,0,0.2,1) both;
}
body[dir="rtl"] .header-img {
  animation-name: header-img-slide-in-rtl;
}

@keyframes header-img-slide-in {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes header-img-slide-in-rtl {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}