* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0a0a0a;
  font-family: 'Inter', sans-serif;
  color: white;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 80px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.navbar a.active,
.navbar a:hover {
  color: #ccff00;
}

.contact-section {
  padding: 140px 80px 80px;
  text-align: center;
}

.contact-section h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  color: #ccff00;
  margin-bottom: 20px;
}

.contact-section .subtitle {
  color: #bbb;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.contact-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 350px;
}

form input,
form textarea {
  padding: 15px;
  border-radius: 15px;
  border: 1px solid #333;
  background-color: #1e1e1e;
  color: #fff;
  font-size: 1rem;
  resize: none;
}

form input:focus,
form textarea:focus {
  border-color: #ccff00;
  outline: none;
}

form button {
  background-color: #ccff00;
  border: none;
  color: #000;
  padding: 15px 35px;
  border-radius: 50px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

form button:hover {
  background-color: #aee000;
}

.contact-info {
  width: 300px;
  text-align: left;
}

.contact-info h2 {
  font-family: 'Orbitron', sans-serif;
  color: #ccff00;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.contact-info p {
  margin: 10px 0;
  color: #bbb;
  font-size: 1rem;
}


.contact-scroll-section {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 600px;
  margin: 50px auto;
}

.contact-card {
  background-color: #1e1e1e;   
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 255, 153, 0.2); 
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 255, 153, 0.3);
}

.contact-card h3 {
  font-family: 'Orbitron', sans-serif;  
  font-size: 1.5rem;
  color: #ccff00;                       
  margin-bottom: 15px;
}

.contact-card p {
  font-family: 'Inter', sans-serif;     
  font-size: 1rem;
  color: #bbb;
  line-height: 1.5;
}





footer {
  background-color: #0a0a0a;
  text-align: center;
  padding: 30px 0;
  font-size: 0.9rem;
  color: #777;
}