*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  font-family: ModamFaNumWeb;

  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
}
input,
textarea,
button,
select,
a,
img,
svg {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:focus,
a:hover,
a:active {
  outline: none;
}
.center {
  display: flex;
  justify-content: center;
  align-items: center;
}
:root {
  --body-color: #000000;
  --color-one: #c447e7;
  --color-two: #8825cd;
}
body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 90vh;
  background-color: var(--body-color);
}

::-webkit-scrollbar {
  display: none;
}
/* ! ----------------------------------------------- */
.header-landing {
  max-width: 800px;
  position: fixed;
  width: 100%;
  height: 70px;
  justify-content: space-between;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(14.5px);
  -webkit-backdrop-filter: blur(14.5px);
  z-index: 9;
}
.header-landing.fixed {
  position: fixed;
}

.header-img {
  width: 40px;
}
.hat {
  position: absolute;
  transform: rotate(15deg);
  top: 5px;
  right: 10px;
  width: 25px;
}
.header-btn {
  position: relative;
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  background-color: #fff;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 100ms ease;
}
.header-btn:hover {
  transform: scale(1.05);
}
.btn-animation {
  position: absolute;
  z-index: -1;
  background-color: #fff;
  width: 115px;
  height: 40px;
  inset: 0;
  right: -1px;
  top: -4px;
  border-radius: 8px;
  animation: boxbigger 1.4s infinite;
}
@keyframes boxbigger {
  0% {
    opacity: 40%;
    transform: scale(1);
  }
  100% {
    opacity: 0%;
    transform: scale(1.4);
  }
}
/* ! ----------------------------------------------- */
#tsparticles {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;

  background: transparent !important; /* 👈 مهم */
}
#tsparticles canvas {
  background: transparent !important; /* 👈 مهم */
}
/* ! ----------------------------------------------- */
.sec-1 {
  flex-direction: column;
  margin-top: 13rem;
  width: 100%;
  gap: 1.5rem;
  color: #fff;
}
.sec-1-title {
  text-align: center;
  font-weight: 1000;
  font-size: 4rem;
  background: linear-gradient(90deg, var(--color-one), var(--color-two));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sec-1-text {
  width: 350px;
  text-align: center;
  font-size: 1.3rem;
  color: #ffffff81;
}
/* ! ----------------------------------------------- */
.sec-2 {
  margin-top: 7rem;
  flex-direction: column;
  width: 100%;
}
.box {
  flex-direction: column;
  justify-content: flex-start;
  padding: 2rem;
  width: 85%;
  height: auto;
  background-color: #18181b;
  border-radius: 20px;
  border: 1px solid #52525b;
  color: #fff;
  cursor: pointer;
  margin-bottom: 20px;
  transition: all 300ms ease;
}
.bx-email:hover {
  border: 1px solid #ff00ff66;
  filter: drop-shadow(0 0 15px #ff00ff66);
}
.bx-email:hover > a {
  transition: all 300ms ease;
  color: #ff00ff;
}
.bx-tg:hover {
  border: 1px solid #008cff66;
  filter: drop-shadow(0 0 15px #008cff66);
}
.bx-tg:hover > a {
  transition: all 300ms ease;
  color: #008cff;
}
.box-call:hover {
  border: 1px solid #00ff2a66;
  filter: drop-shadow(0 0 15px #00ff2a66);
}
.box-call:hover > a {
  transition: all 300ms ease;
  color: #00ff2a;
}
.box-img {
  width: 50px;
  height: 50px;
  border-radius: 20px;
}
.img-email {
  background-color: #62006233;
}
.img-tg {
  background-color: #002c6233;
}
.img-call {
  background-color: #0f620033;
}
.box img {
  width: 25px;
}
.box-title {
  margin-top: 20px;
  font-size: 2.2rem;
  font-weight: 600;
}
.box-text {
  margin: 5px 0 30px 0;
  font-size: 1.5rem;
  color: #a5a5a5;
}
.box-link {
  text-decoration: none;
  color: #fff;
  font-size: 1.9rem;
}
/* ! ----------------------------------------------- */
.sec-3 {
  margin-top: 6rem;
  flex-direction: column;
  width: 100%;
}
.sec-3-title {
  font-weight: 800;
  font-size: 2rem;
  white-space: nowrap;
}
.sec-3-text {
  width: 270px;
  margin: 1.5rem 0 3.3rem 0;
  text-align: center;
  font-size: 1.2rem;
  color: #ffffff81;
}
.sec-3-btn1 {
  width: 90%;
  height: 55px;
  border-radius: 15px;
  margin-bottom: 15px;
  font-size: 1.5rem;
  font-weight: 600;
  background-color: #fff;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 200ms ease;
  position: relative;
}
.sec-3-btn2 {
  width: 90%;
  height: 55px;
  border-radius: 15px;
  font-size: 1.5rem;
  font-weight: 600;
  border: 1px solid #008cff51;
  outline: none;
  cursor: pointer;
  transition: all 200ms ease;
  background-color: #10283c;
  color: #008cff;
}
.sec-3-btn2:hover {
  background-color: #183853;
}
/* ! ----------------------------------------------- */
footer {
  margin-top: 120px;
  width: 100%;
  height: auto;
  flex-direction: column;
  padding-bottom: 3rem;
  border-top: 1px solid #ffffff3f;
  padding: 2rem;
}
.box-footer {
  width: 100%;
  justify-content: flex-start;
}
footer img {
  width: 40px;
  margin-bottom: 10px;
}
footer a {
  color: #ffffff95;
  text-decoration: none;
  font-size: 15px;
  margin: 0 10px;
  transition: all 250ms ease;
}
footer a:hover {
  color: var(--color-one);
  -webkit-background-clip: text;
  background-clip: text;
}
#progress-bar {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--color-two), var(--color-one));
  box-shadow: 0px 0px 40px 3px var(--color-one);
  width: 0%;
  transition: width 0.1s ease-out;
}
