.contact-section {
    max-width: 800px;
    margin: 100px auto 50px auto; /* space under navbar */
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.15);;
    padding-top: 1rem;
  }
  
  .contact-section h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: greenyellow;

  }
  
  .contact-intro {
    margin-bottom: 2rem;
    color: #e0e0e0;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
  }
  
  .form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #fff;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    background: rgba(0,0,0,0.4);
    border: 1px solid greenyellow;
    color: #fff;
    font-size: 1rem;
    outline: none;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    border: 1px solid greenyellow;
    background: #000;
  }
  
  .contact-btn {
    padding: 1rem;
    background: greenyellow;
    color: #000;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .contact-btn:hover {
    background: #yellowgreen;
    transform: translateY(-3px);
  }
  

  /*Get the actuall fuck out*/

  /* From Uiverse.io by jeremyssocial */ 
@keyframes blinkCursor {
  50% {
    border-right-color: transparent;
  }
}

@keyframes typeAndDelete {
  0%,
  10% {
    width: 0;
  }
  45%,
  55% {
    width: 6.2em;
  } /* adjust width based on content */
  90%,
  100% {
    width: 0;
  }
}

.terminal-loader {
  border: 0.1em solid #333;
  background-color: #1a1a1a;
  color: #0f0;
  font-family: "Courier New", Courier, monospace;
  font-size: 1em;
  padding: 1.5em 1em;
  width: 12em;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.terminal-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1.5em;
  background-color: #333;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  padding: 0 0.4em;
  box-sizing: border-box;
}

.terminal-controls {
  float: right;
}

.control {
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  margin-left: 0.4em;
  border-radius: 50%;
  background-color: #777;
}

.control.close {
  background-color: #e33;
}

.control.minimize {
  background-color: #ee0;
}

.control.maximize {
  background-color: #0b0;
}

.terminal-title {
  float: left;
  line-height: 1.5em;
  color: #eee;
}

.text {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  border-right: 0.2em solid yellowgreen; /* Cursor */
  animation:
    typeAndDelete 4s steps(11) infinite,
    blinkCursor 0.5s step-end infinite alternate;
  margin-top: 1.5em;
}

.contactSubTitle {
  font-size: 1.25rem;        
  font-weight: 400;          
  color: #b0bec5 !important;           
  margin-top: 0.5rem;        
  margin-bottom: 1rem;       
  line-height: 1.4;     
  text-align: center;        
}
