@font-face {
  font-family: yekanRegular;
  src: url("../fonts/YekanB-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  padding: 0;
  margin: 0;
}

body {
  font-family: yekanRegular;
  background: #5b5b5b;
}

#theWholeThing {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  margin: auto;
  overflow: hidden;
}

#theWholeThing .container {
  width: 90%;
  height: 90vh;
  border-radius: 15px;
  margin: auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 0;
}

#theWholeThing .container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../images/bk/bk.JPG);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  filter: brightness(40%);
  z-index: -1;
}

/* استایل هدر */
.custom-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #888888;
  height: 70px;
  padding: 10px 50px;
  background: rgba(0, 0, 0, 0.5)
}

#header-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  text-wrap: nowrap;
}

#contact-btn-div,
#logo-brand-menu-div {
  display: flex;
}

#logo-brand-menu-div {
  gap: 20px;
}

#logoDiv img {
  height: 100%;
}

.custom-header #brandName {
  font-size: 1.5rem;
  font-weight: bold;
  margin-right: 0px;
  margin-left: 0px;
  text-transform: uppercase;
}

.custom-header .contact-btn {
  width: auto !important;
  background-color: #ffaa00;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.custom-header .contact-btn:hover {
  background-color: #ff8800;
}

h1,
.contact-btn {
  margin: auto;
}

.contact-btn {
  height: 20px;
  margin-left: 0px;
}

h1 {
  margin-right: 0px;
}

h3 {
  margin-bottom: 25px !important;
}

#login-section {
  height: 75vh;
  padding: 0px 20px 10px;
  text-align: center;
  display: flex;
  justify-content: center;
}

#login-section .container {
  width: 90%;
  height: 103%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#titlesDiv {
  color: white;
  margin: auto;
}
#titlesDiv * {
  margin: 0 !important;
}

#titlesDiv > * {
  margin-top: 20px;
}

#login-section div .section-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
}

#login-section div .login-Cards {
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  overflow: hidden;
}

.login-card {
  width: calc(100% / 5);
  transition: all 0.4s ease;
  height: auto;
  border-radius: 0 !important;
}

.login-card:hover {
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  filter: brightness(70%);
  scale: 1.02;
}

.login-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #444;
}

.clicked-animation {
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

#card3 {
  border-radius: 0 !important;
  margin-right: 0;
}

/* header menu */
#logo-brand-menu-div ul {
  direction: rtl;
  list-style: none;
  text-decoration: none;
  display: flex;
  gap: 15px;
  margin: auto;
  margin-right: 5px;
}

#header-menu li a {
  margin: auto;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
}