* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background: #ffffff;
  display: flex;
  justify-content: center;
  color: #6b4a2d;
}


.container {
  text-align: center;
  max-width: 600px;
  width: 100%;
  padding-top: 50px;   /* 🔴 TOP RED BOX */
  padding-bottom: 50px;/* 🔴 BOTTOM RED BOX */
}


.logo {
  width: 250px;      /* 👈 width set */
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* logo distort nahi hoga */
}
.brand {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 120px;
}

.arabic-brand {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 20px;
  direction: rtl;
}

.english-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
}

.status {
  margin-bottom: 120px;
}

.arabic-text {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 22px;
  margin-bottom: 12px;
  direction: rtl;
}

.english-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 600;
}
.status p.arabic-text, .status p.english-text {
    font-weight: 800 !important;
}
.english-text.small {
  font-size: 12px;
  letter-spacing: 2px;
  margin-top: 10px;
}

.contact {
  margin-top: 20px;
}

.phone {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  margin-top: 8px;
  font-style: italic;
}
