.contact-page {
  max-width: 700px;
  margin: 40px auto;
  padding: 30px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(10, 10, 10, 0.9));
  border-radius: 15px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-top: 0px;
  padding-top: 0px;
}

.contact-page h1 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #00BFFF; /* Bright blue */
  text-shadow: 0 0 5px rgba(0, 191, 255, 0.7);
}

.contact-page p {
  text-align: center;
  margin-bottom: 25px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ccc;
}

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

.contact-page label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #ccc;
  font-size: 1rem;
}

.contact-page input[type="text"],
.contact-page input[type="email"],
.contact-page textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1rem;
  box-sizing: border-box;
  resize: vertical;
  transition: background 0.3s, box-shadow 0.3s;
}

.contact-page input[type="text"]::placeholder,
.contact-page input[type="email"]::placeholder,
.contact-page textarea::placeholder {
  color: #888;
}

.contact-page input[type="text"]:focus,
.contact-page input[type="email"]:focus,
.contact-page textarea:focus {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px #00BFFF;
  outline: none;
}

.contact-page .g-recaptcha.btn-cap {
  background: linear-gradient(135deg, #00BFFF, #1E90FF);
  color: #fff;
  border: none;
  padding: 14px 25px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  transition: background 0.4s, transform 0.2s, box-shadow 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 12px rgba(0, 191, 255, 0.4);
}

.contact-page .g-recaptcha.btn-cap:hover {
  background: linear-gradient(135deg, #1E90FF, #00BFFF);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 191, 255, 0.6);
}

.contact-page input[type="file"] {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
}

.contact-page input[type="file"]:hover {
  background: rgba(255, 255, 255, 0.1);
}

.contact-page input[type="file"]::-webkit-file-upload-button {
  background: linear-gradient(135deg, #00BFFF, #1E90FF);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: none; /* Remove extra shadow */
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.contact-page input[type="file"]::-webkit-file-upload-button:hover {
  background: linear-gradient(135deg, #1E90FF, #00BFFF);
  transform: translateY(-2px);
  box-shadow: none; /* Remove extra shadow */
}
