body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #000;
  color: #fff;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  padding: 15px 0;
  display: flex;
  justify-content: center;
  gap: 40px;
  z-index: 1000;
  border-bottom: 1px solid #0DCAF0;
}

nav a {
  color: #0DCAF0;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  text-shadow: 0 0 5px #0DCAF0;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #0dcaf0;
  text-shadow: 0 0 10px #0dcaf0, 0 0 15px #0dcaf0;
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 60px;
  background: radial-gradient(circle at center, #0DCAF0 0%, #000 70%);
}

.content {
  padding: 100px 20px 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.content .logo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 30px;
  display: block;
  object-fit: cover;
  filter: drop-shadow(0 0 10px #0DCAF0) drop-shadow(0 0 20px #4682B4);
}

.logo {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  margin-bottom: 30px;
  object-fit: cover;
  filter: drop-shadow(0 0 10px #0DCAF0) drop_shadow(0 0 20px #4682B4);
}

h1 {
  font-size: 3.5em;
  color: #0DCAF0;
  text-shadow: 0 0 30px #0DCAF0, 0 0 60px #4682B4, 0 0 90px #0DCAF0;
  margin: 0;
}

p {
  font-size: 1.2em;
  line-height: 1.6;
}

p.tagline {
  font-size: 1.8em;
  color: #0DCAF0; /* Electric Green */
  text-shadow: 0 0 20px #0DCAF0, 0 0 35px #0DCAF0, 0 0 50px #0DCAF0;
  margin-top: 10px;
  font-weight: bold;
}

.slogan {
  font-size: 1.4em;
  color: #0DCAF0;
  text-shadow: 0 0 15px #0DCAF0, 0 0 25px #0DCAF0, 0 0 40px #0DCAF0;
  margin-top: 20px;
}

.cta {
  margin-top: 30px;
  padding: 15px 30px;
  background: #0DCAF0;
  color: #000;
  border: none;
  border-radius: 5px;
  font-size: 1.2em;
  cursor: pointer;
  text-shadow: 0 0 5px #000;
  transition: background 0.3s ease;
}

.cta:hover {
  background: #4682B4;
  color: #fff;
}

.contact-form {
  max-width: 600px;
  margin: 40px auto;
  padding: 30px;
  background: #1a1a1a;
  border: 1px solid #0DCAF0;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(13, 202, 240, 0.3);
  text-align: left; /* Align text within form to left */
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #0DCAF0;
  font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  width: calc(100% - 20px); /* Adjust for padding */
  padding: 10px;
  border: 1px solid #4682B4;
  border-radius: 4px;
  background-color: #000;
  color: #fff;
  font-size: 1em;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
  border-color: #0DCAF0;
  box-shadow: 0 0 8px rgba(13, 202, 240, 0.6);
  outline: none;
}

.submit-btn {
  display: block;
  width: 100%;
  padding: 15px;
  background: #0DCAF0;
  color: #000;
  border: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  text-shadow: 0 0 5px #000;
  transition: background 0.3s ease, color 0.3s ease;
}

.submit-btn:hover {
  background: #4682B4;
  color: #fff;
}

footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 15px;
  font-size: 0.9em;
  border-top: 1px solid #0DCAF0;
}

#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  transition: opacity 0.5s ease-out;
}

#splash-screen .logo {
  animation: fadeIn 1.5s ease-in-out;
}

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

@media (max-width: 600px) {
  h1 {
    font-size: 2.5em;
  }

  p.tagline {
    font-size: 1.2em;
  }

  .logo {
    max-width: 200px;
  }
}