* {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}

.outer-headings {
  height: 100vh;
  
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1 {
  font-size: 45px;
}

.inner-headings {
  border: 0px solid #ddd;
  height: 50px;
  line-height: 50px;
  font-size: 45px;
  text-transform: uppercase;
  overflow: hidden;
}

.inner-headings span {
  position: relative;
  color: crimson;
  animation: animation 10s ease infinite;
}

@keyframes animation {
  0%,
  100% {
    top: 0;
  }
  20% {
    top: 0;
  }
  25% {
    top: -50px;
  }
  45% {
    top: -50px;
  }
  50% {
    top: -100px;
  }
  70% {
    top: -100px;
  }
  75% {
    top: -150px;
  }
  95% {
    top: -150px;
  }
}


.marquee-container {
  width: 100%;
  overflow: hidden; /* Hides content outside the container */
  white-space: nowrap; /* Keeps content in a single line */
}

.marquee-content {
  display: inline-block;
  padding-left: 100%; /* Starts the text off-screen to the right */
  animation: scroll-left 8s linear infinite; /* Defines the animation */
}

@keyframes scroll-left {
  0% {
    transform: translateX(0); /* Start position */
  }
  100% {
    transform: translateX(-100%); /* End position (moves fully off-screen to the left) */
  }
}


    .letter-pad {
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #ddd;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  font-family: "Times New Roman", serif;
  line-height: 1.9;
  position: relative;
}

/* Left Letterhead Strip */
.letter-pad::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: #0d6efd; /* Change to your theme color */
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

/* Signature Styling */
.signature {
  font-family: "Brush Script MT", cursive;
  font-size: 22px;
}
.letter-spacing {
  letter-spacing: 1.5px;
}

.blink {
  /* Shorthand animation property: duration, timing function, iteration count */
  animation: blink-animation 1s steps(1) infinite;
}

@keyframes blink-animation {
  /* At 50% of the animation cycle, the visibility is hidden */
  50% {
    visibility: hidden;
  }
}