* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #fff;
  background-color: #000;
}
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #000;
}

#matrix {
  display: block;
}
.container {
  position: relative;
  z-index: 1;
}

.code {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  animation: matrix 5s linear infinite;
}

.code span {
  font-size: 40px;
  font-weight: bold;
  color: #00ff00;
  margin: 10px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.header {
  padding: 50px;
  text-align: center;
}

.header h1 {
  font-size: 50px;
  margin-bottom: 20px;
}

.content {
  padding: 50px;
}

.cta-btn {
  background-color: #00ff00;
  color: #000;
  border: none;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background-color: #000;
  color: #00ff00;
}

@keyframes matrix {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

@media (max-width: 767px) {
  .header h1 {
    font-size: 40px;
    margin-bottom: 10px;
  }
  
  .content {
    padding: 20px;
  }
  
  .cta-btn {
    padding: 8px 16px;
    font-size: 16px;
  }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.web-solutions {
  padding: 50px 0;
  text-align: center;
}

.web-solutions h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.web-solutions p {
  font-size: 22px;
  margin-bottom: 30px;
}

.services {
  display: flex;
  justify-content: space-between;
}

.service {
  width: 30%;
}

.service h3 {
  font-size: 32px;
  margin-bottom: 10px;
}

.service p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.why-choose-us {
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 48px;
  margin-bottom: 30px;
}

.why-choose-us ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 30px;
}

.why-choose-us li {
  width: 30%;
  margin-bottom: 30px;
}

.why-choose-us h3 {
  font-size: 30px;
  margin-bottom: 15px;
}

.why-choose-us p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 0;
}

.start-project {
  color: #2b2b2b;
  padding: 80px 0;
  text-align: center;
}

.start-project h2 {
    color: #fff;
  font-size: 48px;
  margin-bottom: 30px;
}

.cta-button {
  background-color: #2b2b2b;
  border: none;
  color: #fff;
  display: inline-block;
  font-size: 24px;
  margin-top: 30px;
  padding: 20px 40px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #fff;
  color: #2b2b2b;
  cursor: pointer;
}
.contact-us {
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.contact-us h2 {
  font-size: 48px;
  margin-bottom: 30px;
}

.cta-button {
  background-color: #fff;
  border: none;
  color: #2b2b2b;
  display: inline-block;
  font-size: 24px;
  margin-top: 30px;
  padding: 20px 40px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #2b2b2b;
  color: #fff;
  cursor: pointer;
}








.form {
  background-color: #222;
  color: #fff;
  padding: 20px;
  margin: 50px 0;
}

.form h2 {
  font-size: 1.8em;
  margin: 0 0 20px;
  animation: type 2s steps(27, end) 0s 1 normal forwards;
}

.form label {
  display: block;
  margin: 10px 0;
  font-size: 1.1em;
}

.form .cursor {
  display: inline-block;
  width: 30px;
  animation: blink 1s steps(1, end) infinite;
}

.form .typed {
  display: inline-block;
  animation: type 2s steps(27, end) 0s 1 normal forwards;
}

.form input,
.form textarea,
.form button {
  display: block;
  margin: 10px 0;
  padding: 10px;
  font-size: 1.1em;
  border: none;
  background-color: transparent;
  border-bottom: 2px solid #fff;
  color: #fff;
  width: 100%;
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: #6c9aff;
}

.form button {
  background-color: #6c9aff;
  color: #222;
  padding: 10px 20px;
  font-size: 1.1em;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.form button:hover {
  background-color: #89c2ff;
}

.hidden {
  visibility: hidden;
  position: absolute;
  top: -9999px;
  left: -9999px;
}

@keyframes type {
  from { width: 0; }
}

@keyframes blink {
  to { visibility: hidden; }
}

@media screen and (max-width: 600px) {
  .form {
    margin: 30px 0;
  }
  
  .form input,
  .form textarea,
  .form button {
    font-size: 1em;
  }
  
  .form button {
    padding: 8px 16px;
  }
}


.cursor {
  display: inline-block;
  width: 10px;
  height: 1em;
  background-color: #0f0;
  margin-left: 5px;
}

.cursor.blink {
  animation: blink 0.5s step-end infinite;
}

@keyframes blink {
  from, to {
    background-color: #0f0;
  }
  50% {
    background-color: transparent;
  }
}


/*
.form-container {
  background-color: black;
  color: green;
  font-family: monospace;
  padding: 2rem;
}
.input-container input:focus ~ label,
.input-container textarea:focus ~ label {
  font-size: 18px;
  top: -30px;
}

.input-container .cursor {
  animation: blink 1s infinite;
  background-color: #fff;
  height: 24px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
}

.input-container input:focus ~ .cursor,
.input-container textarea:focus ~ .cursor {
  animation: none;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}
.input-container {
  position: relative;
}

label {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-100%);
}

input,
textarea {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid green;
  color: green;
  font-family: monospace;
  font-size: 1.2rem;
  margin: 1rem 0;
  padding: 0.5rem;
  width: 100%;
}

.cursor {
  background-color: green;
  height: 1.2rem;
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 0.5rem;
}

.hidden {
  display: none;
}

#submit-button {
  background-color: green;
  border: none;
  color: black;
  cursor: pointer;
  font-size: 1.2rem;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
}
*/

