h1 {
  margin-block-end: 32px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.25;
}

h2 {
  text-align: center;
}

/* Hero section */
#Hero_Section {
  padding-block: 7rem;
}

#Hero_Section_Left_Column {
  max-width: 500px;
  margin-right: 50px;
  flex-shrink: 0;
  margin-right: 50px;
  max-width: 500px;
}

#Hero_Section_Left_Column .Button_Group {
  grid-column-gap: 24px;
}

#Hero_Section figure {
  position: relative;
  height: 100%;
  width: 100%;
  max-height: 400px;
  max-width: 600px;
  overflow: hidden;
  border-radius: 20px;
  flex-shrink: 1;
}

#Hero_Section figure img {
  height: 100%;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

#section {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.Home_Section {
  padding: 112px 64px;
}

#Article_Section h2 {
  color: #000;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 80px;
}

#Home_Articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 60px;
  text-align: center;
}

#Article_Section article figure {
  height: 240px;
  background-color: #f6f6f6;
  border-radius: 16px;
}

#Article_Section article h3 {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  margin: 20px 0;
}

#Article_Section article p {
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin: 20px 0;
}

#Article_Section article a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: black;
  text-decoration: none;
  font-weight: 500;
  margin: 20px 0;
}

#Section_3 small {
  display: block;
  color: #0669ff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 24px;
}

#Section_3 h2 {
  margin: 0;
  text-align: left;
  color: #000;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.25;
}

#Section_3 #Section {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.Left_Column {
  max-width: 500px;
  margin-right: 50px;
}

#Section_3 #Section p {
  color: #333;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  margin: 20px 0;
}

#Section_3 #Section figure {
  display: block;
  overflow: hidden;
  width: 100%;
  background: var(--color-border);
  height: 400px;
  border-radius: 32px;
}

#Section_3 #Section figure img {
  height: 100%;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

#Section_4 {
  text-align: center;
}

#Section_4 h2 {
  color: #000;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}

#Section_4 p {
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin: 20px 0;
}

#Section_4 .Button_Group {
  justify-content: center;
}

#progress-container,
#progress-bar {
  height: 5px;
  border-radius: 12px;
  transition: width 0.3s ease-in-out; /* 👈 Smooth animation */
}

#progress-container {
  background-color: #e6eaeb;
}

#progress-bar {
  width: 0%;
  background-color: #0669ff;
}

#HomePage_Form_Upload_Container {
  position: relative;
  width: 100%;
  flex-shrink: 1;
  max-width: 600px;
  position: relative;
  width: 100%;
  border-radius: 20px;
}

#HomePage_Form_Upload_Container a {
  background-color: #eee;
  border-radius: 3px;
  border: 1px solid #b4b4b4;
  box-shadow: 0 1px 1px rgb(0 0 0 / 0.2), 0 2px 0 0 rgb(255 255 255 / 0.7) inset;
  color: #333;
  font-size: 0.85em;
  font-weight: 700;
  line-height: 1;
  padding: 2px 4px;
  white-space: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
}

#HomePage_Form_Upload_Container a svg {
  width: 18px;
  height: 18px;
}

#HomePage_Form_Upload_Container p {
  font-size: var(--font-size-xs) !important;
  margin: 0 !important;
}

#HomePage_Form_Upload_Container #label-p {
  font-size: var(--font-size-sm) !important;
  color: #000 !important;
  font-weight: 600 !important;
  margin-block-end: var(--spacing-sm) !important;
}

#HomePage_Form_Upload_Container #File_And_Progress_Bar {
  position: absolute;
  bottom: var(--spacing-sm);
  left: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  padding-inline: var(--spacing-sm);
  align-items: center;
}

#HomePage_Form_Upload_Container input {
  display: none;
}

#HomePage_Form_Upload_Container label {
  font-weight: 600;
  color: black;
  cursor: pointer;
  transition: all 0.15s ease;
}

#HomePage_Form_Upload_Container label:hover,
#HomePage_Form_Upload_Container label:focus,
#HomePage_Form_Upload_Container label:hover svg path {
  color: #0669ff;
  fill: #0669ff;
}

.drop-zone {
  position: relative;
  outline: 1px dashed #999;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s;
  background: #f6f6f6;
  width: 100%;
  height: 300px;
  display: grid;
  place-content: center;
  margin-bottom: 24px;
}

.drop-zone.dragover {
  background-color: #f0f8ff;
  outline-color: #0669ff;
}

.file-label {
  color: #007bff;
  text-decoration: underline;
  cursor: pointer;
}

#Icons_Div {
  position: relative;
  width: 48px;
  height: 48px;
  margin-inline: auto;
  margin-block-end: 32px;
}

#Icons_Div svg {
  width: 48px;
  height: 48px;
}

#Upload_Icon {
  position: absolute;
  width: 24px;
  height: 24px;
  background: var(--color-text-main);
  border-radius: 50%;
  display: inline-flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  bottom: -10px;
  right: -10px;
}

#Upload_Icon svg {
  height: 14px;
  width: 14px;
}

.drop-zone.dragover #Upload_Icon {
  background: #0669ff;
}

#Homepage_Upload_Result #name {
  font-weight: 600 !important;
  color: black !important;
  font-size: var(--font-size-md) !important;
}

#Homepage_Upload_Result .middot {
  font-weight: 900;
  display: inline;
  padding-inline: 2px;
}

#Result_Details_Container {
  display: flex;
  margin-block-end: var(--spacing-xs);
  gap: var(--spacing-xxs);
}

#Result_Details_Container #File_Icon {
  display: flex;
}

#Result_Details {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#Result_Details p {
  font-size: var(--font-size-sm) !important;
}
