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


.eyes {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.eyes h1 {
    font-size: 4rem;
}


.eyes a{
  color: #00b3b3;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  position: relative;
  transition: color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
  
  text-shadow: 0 0 3px rgba(0, 179, 179, 0.7),
               0 0 6px rgba(0, 179, 179, 0.5),
               0 0 10px rgba(0, 179, 179, 0.3);
}

.eyes a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #00ffff, #8a2be2);
  opacity: 0.6;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transform: scaleX(0);
}

.eyes a:hover {
  color: #cea0ff;
  
  text-shadow: 0 0 6px rgba(176, 102, 255, 0.9),
               0 0 12px rgba(176, 102, 255, 0.7),
               0 0 18px rgba(176, 102, 255, 0.5);
}

.eyes a:hover::after {
  opacity: 1;
  transform: scaleX(1.2);
}


header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #333;
}

header h1 {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.container {
    max-width: 800px;
    margin: auto;
    padding: 2rem;
}

.chatbot-box {
    background-color: #111;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 1rem;
    height: 800px;
    overflow-y: auto;
    margin-bottom: 1rem;
}

section {
    margin-top: 3rem;
}

section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
}

textarea,
input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 0.75rem;
    background-color: #111;
    border: 1px solid #333;
    color: #fff;
    border-radius: 4px;
    margin-bottom: 1rem;
}

button.submit-button {
    background-color: #555;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
}

footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    color: #555;
    border-top: 1px solid #333;
    margin-top: 4rem;
}
canvas#bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}


@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
}

.error-shake {
  animation: shake 0.5s ease-in-out;
  border: 2px solid red !important;
}

.error-outline {
  border-color: red;
  transition: border-color 1s ease-out;
}

.error-message {
  color: red;
  font-size: 14px;
  margin-top: 5px;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}


.thank-you-message {
  font-size: 24px;
  text-align: center;
  opacity: 0;
  animation: fadeInGrow 0.7s forwards;
}

@keyframes fadeInGrow {
  0% {
    opacity: 0;
    transform: translateY(-10px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}




.tg-link {
  color: #00b3b3;
  text-decoration: none;
  font-weight: bold;
  font-size: 25px;
  position: relative;
  transition: color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
  
  text-shadow: 0 0 3px rgba(0, 179, 179, 0.7),
               0 0 6px rgba(0, 179, 179, 0.5),
               0 0 10px rgba(0, 179, 179, 0.3);
}

.tg-link::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #00ffff, #8a2be2);
  opacity: 0.6;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transform: scaleX(0);
}

.tg-link:hover {
  color: #cea0ff;
  
  text-shadow: 0 0 6px rgba(176, 102, 255, 0.9),
               0 0 12px rgba(176, 102, 255, 0.7),
               0 0 18px rgba(176, 102, 255, 0.5);
}

.tg-link:hover::after {
  opacity: 1;
  transform: scaleX(1.2);
}
