html,
body {
  max-width: 100%;
  overflow-x: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

html,
body,
div,
span,
h2,
h3,
p,
a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

body {
  line-height: 1;
}

.ar-container p.text-start {
  text-align: right;
  margin-bottom: 10px;
}
.en-container p.text-start {
  text-align: left;
  margin-bottom: 10px;
}

.button {
  display: inline-block;
  margin: 0 auto;
  padding: 10px 20px;
  color: white;
  background-color: #2764ec;
}

.container {
  min-height: 100vh;
  padding-top: 60px;
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  }

.congrats-img-container {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  overflow-x: hidden;
}

.list-container {
  display: flex;
  justify-content: center;
  line-height: 28px;
  margin-bottom: 30px;
}

.ar-container {
  font-family: Gulf, Montserrat;
  direction: rtl;
  line-height: 20px;
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.ar-container .list-container span {
  display: inline-block;
  margin-left: 10px;
}

.container h2 {
  font-weight: 700;
  line-height: 30px;
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}
.container h3 {
  font-weight: 700;
  line-height: 30px;
  font-size: 1.2rem;
  margin-bottom: 10px;
  margin-top: 20px;
}
.container p {
  margin-bottom: 20px;
  text-align: center;
  line-height: 24px;
}

.en-container {
  font-family: "Montserrat", Gulf;
  direction: ltr;
  line-height: 20px;
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto;
}

.en-container .list-container span {
  display: inline-block;
  margin-right: 10px;
}

a {
  color: #000000;
  text-decoration-line: none;
}
.social-link {
  display: inline-block;
  margin: 10px;
  transition: transform 0.3s, filter 0.3s;
}

.social-link:hover {
  transform: scale(1.1);
  filter: brightness(1.2); /* Brightens image on hover */
}

.social-logo {
  width: auto;  /* Adjust the size */
  height: 60px; /* Adjust the size */
}
.social-logo {
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.social-link:hover .social-logo {
  filter: grayscale(0%);
}

.contact-info a {
  color: #000; /* Set default color */
  text-decoration: none; /* Remove underline */
  display: inline-block; /* Allow transform to work without affecting layout */
  transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.contact-info a:hover {
  color: #ff0000; /* Set color on hover */
  transform: scale(1.1); /* Scale text on hover */
}