* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
}

::-webkit-scrollbar {
  display: none;
}

.margin-bar {
  width: 37.6%;
}

/* Scroll Animation */
section.section {
  opacity: 0;
  transform: translateY(50px);
  transition: none;
}

section.section.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Hero section appears immediately */
.hero-section {
  opacity: 1;
  transform: translateY(0);
}
