body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ff8a00;
  color: #fff;
  transition: background-color 0.3s, color 0.3s;
}

/* Loader styles */
.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #ff8a00; /* Match the body background */
}

#logo {
  font-size: 4em;
  color: #fff; /* Match the body text color */
  border-right: 2px solid;
  white-space: nowrap;
  overflow: hidden;
  margin: 0 auto;
  animation: typing 3.5s steps(10, end), blink-caret .75s step-end infinite;
}

/* Typewriter effect */
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

/* Cursor animations */
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: black }
}

/* Hide the loader and show the container after the animation */
@keyframes fadeIn {
  to {
    display: block;
    opacity: 1;
  }
}

.container {
  max-width: 800px;
  margin: 100px auto;
  padding: 20px;
  text-align: center;
  opacity: 0;
  animation: fadeIn ease 1.5s;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

p {
  font-size: 1.2em;
}

button {
  background-color: #fff;
  color: #ff8a00;
  padding: 15px 20px;
  margin: 20px 0;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s, color 0.3s;
}

button:hover {
  background-color: #ff8a00;
  color: #fff;
}

.contact-form {
  background-color: #fff;
  color: #333;
  padding: 20px;
  margin-top: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

label {
  display: block;
  margin-bottom: 10px;
  font-size: 1em;
}

input, textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0 20px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 1em;
}

.dark-mode {
  background-color: #333;
  color: #f0f0f0;
}

.dark-mode .contact-form {
  background-color: #444;
  color: #fff;
}

.dark-mode button {
  background-color: #f0f0f0;
  color: #333;
}

.dark-mode button:hover {
  background-color: #333;
  color: #f0f0f0;
}
