body {
  background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.85)), url('assets/bg.png') no-repeat center center fixed;
  background-size: contain;
  background-color: #0a0a0a; 
  color: #e0e0e0;
  font-family: 'Rajdhani', sans-serif;
  overflow: auto; 
}

html, body {
  height: 100%;
}

header{
  margin-top: 20px;
}

.font-orbitron {
  font-family: 'Orbitron', sans-serif;
}

.neon-green-text {
  color: #00ff9b;
}

.gradient-text {
  background: linear-gradient(to right, #ffffff, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.neon-green-border {
  border-color: #00ff9b;
}

.neon-green-bg {
  background-color: #00ff9b;
}

.glass-effect {
  background: rgba(16, 16, 16, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(45, 212, 191, 0.1);
}

.form-input {
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid #333;
  color: #e0e0e0;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus {
  outline: none;
  border-color: #00ff9b;
  box-shadow: 0 0 15px rgba(0, 255, 155, 0.3);
}

.submit-btn {
  background-color: #00ff9b;
  color: #0a0a0a;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  background-color: #ffffff;
  box-shadow: 0 0 20px rgba(0, 255, 155, 0.5);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.7);
}

.modal-content {
  position: relative;
  margin: 15% auto;
  padding: 30px;
  width: 90%;
  max-width: 400px;
  text-align: center;
}

.close-button {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.animated {
  opacity: 0;
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.contact-icon-link svg {
  transition: transform 0.3s ease, color 0.3s ease;
}

.contact-icon-link:hover svg {
  transform: scale(1.15);
  color: #ffffff;
}