body {
  margin: 0px;
  font-family: system-ui;
}

p {
  margin: 0px;
}

h2 {
  margin: 0%;
}

/* Body */
.head {
  background-color: #1a1a1a;
  color: rgb(255, 255, 255);
  padding: 20px 20px;
}

.head-flex {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}

.logo {
  max-height: 40px;
}

.body {
  padding: 20px;
  background-color: #121212;
  color: #ffffff;
}

.section-title {
  margin-top: 20px;
  text-align: center;
  position: relative;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  padding-bottom: 8px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #fac400;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.text-section-title {
  font-family: system-ui;
  font-weight: 400;
  font-style: normal;
  text-indent: 2em;
  text-align: justify;
}

.Upload {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* From Uiverse.io by csemszepp */
.custum-file-upload {
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: space-between;
  gap: 20px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border: 2px dashed #e8e8e8;
  background-color: #212121;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0px 48px 35px -48px #e8e8e8;
}

.custum-file-upload:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.custum-file-upload .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.custum-file-upload .icon svg {
  height: 80px;
  fill: #e8e8e8;
}

.custum-file-upload .text {
  display: flex;
  align-items: center;
  justify-content: center;
}

.custum-file-upload .text span {
  font-weight: 400;
  color: #e8e8e8;
}

.custum-file-upload input {
  display: none;
}

/* From Uiverse.io by elijahgummer */
#file {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

/* Styled label as button */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: linear-gradient(45deg, #ffc75d, #ffc708);
  box-shadow: 0 0 24px #ffb20861;
  border: 2px solid #ffe825;
  border-radius: 100px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease,
    text-shadow 0.3s ease, transform 0.1s ease;
  padding: 10px 20px;
  color: #09090b;
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

/* Subtle gradient animation */
.button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.25),
    transparent 70%
  );
  transform: translateX(-100%) translateY(-100%);
  transition: transform 0.5s ease;
}

.button:hover::before {
  transform: translateX(0) translateY(0);
}

.button:hover {
  background-color: #ffc75d !important;
  box-shadow: 0 0 34px #ffb20861 !important;
  text-shadow: 0 0 4px #ffe825;
  border-color: #ffe825 !important;
}

.button:active {
  transform: scale(0.97);
}

.button:focus-visible {
  outline: 3px solid rgba(255, 232, 37, 0.8);
  outline-offset: 4px;
}

.icon {
  margin-right: 8px;
  filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.3));
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* footer */
.footer {
  padding: 40px 0;
  color: #ffffff;
  background-color: #000000;
}

.footer-box {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-around;
}

.goldeniq-text {
  color: #ffffff;
  text-decoration: none;
}

.goldeniq-text:hover {
  color: #fac400;
  text-decoration: underline;
}

@media (max-width: 760px) {
  .footer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-in {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
