:root {
  --deep-bg: #0b1a2f;
  --accent-glow: #00f0ff;
  --card-border: #0ff0ff33;
  --text-main: #ffffff;
  --text-soft: #b0c8e0;
  --input-bg: #112541;
  --input-border: #00e6ffaa;
  --input-focus-border: #00f0ff;
  --error-color: #ff4d4d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: "Segoe UI", sans-serif;
  background-color: var(--deep-bg);
  color: var(--text-main);
  min-height: 100vh;
}


    
/* Header */
.header {
  background: #0b1a2f;
  color: white;
  padding: 1rem 0;
  position: sticky;
  box-shadow: 0px 2px rgb(29, 38, 53);;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem;
}
 .navbar {
  background-color: transparent;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 2px #00f0ff;
  position: relative;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-logo {
  height: 45px;
  margin-left: 5px;
}

.navbar-brand {
  font-size: 22px;
  font-weight: bold;
  color: gold;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 1px;
  text-shadow: 1px 1px 3px rgba(255, 215, 0, 0.6);
}

.navbar-right {
  margin-right: 2px;
}

.go-back-link {
  background-color: var(--accent-glow);
  color: #000;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.go-back-link:hover {
  background-color: #00b8cc;
}

li{
      color: white;
      transition: 0.5s;
      margin-left: 30px;
    }
    li:hover{
      color: gold;
      transition: 0.5s;
      border-bottom: 2px solid gold;
    }

.form-container {
  max-width: 720px;
  margin: 3rem auto 5rem;
  padding: 2rem 2.5rem;
  background: transparent;
  border: 1px solid var(--card-border);
  border-radius: 16px;
}

h1 {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: gold;
  margin-bottom: 0.25rem;
  text-align: center;
  letter-spacing: 1.5px;
}

.form-subtitle {
  font-size: 1rem;
  color: white;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 500;
}

form {
  width: 100%;
}

fieldset {
  border: 1px solid var(--card-border);
  padding: 1.5rem 1.5rem 2rem 1.5rem;
  margin-bottom: 2rem;
  border-radius: 12px;
}

legend {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--accent-glow);
  padding: 0 0.75rem;
  text-transform: uppercase;
}

label {
  display: block;
  font-weight: 500;
  margin-top: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--text-main);
  font-size: 0.95rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea,
input[type="file"] {
  width: 100%;
  background-color: var(--input-bg);
  border: 1.5px solid var(--input-border);
  border-radius: 10px;
  color: var(--text-main);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.55rem 1rem;
  transition: border-color 0.3s ease;
  font-family: 'Segoe UI', sans-serif;
}

input[type="file"] {
  padding: 0.4rem 0.5rem;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
textarea::placeholder {
  color: var(--text-soft);
  font-style: italic;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--input-focus-border);
  background-color: #0a1d33;
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--accent-glow) 50%),
    linear-gradient(135deg, var(--accent-glow) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px);
  background-size: 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2.5rem;
  cursor: pointer;
}

textarea {
  resize: vertical;
  min-height: 72px;
  max-height: 150px;
  font-family: 'Segoe UI', sans-serif;
}

.consent-fieldset {
  border: none;
  padding: 0;
  margin-bottom: 2rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 400;
  font-size: 0.9rem;
  margin-top: 0.75rem;
  color: var(--text-soft);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--accent-glow);
  border-radius: 4px;
}

/* Buttons */
.button-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}

.submit-btn,
.reset-btn {
  flex: 1;
  padding: 0.65rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.2s;
  letter-spacing: 1px;
}

.submit-btn {
  background-color: var(--accent-glow);
  color: var(--deep-bg);
}

.reset-btn {
  background-color: transparent;
  color: var(--accent-glow);
  border: 1.5px solid var(--accent-glow);
}

.submit-btn:hover,
.reset-btn:hover {
  transform: scale(1.03);
  background-color: #00dbe6;
  color: #00131f;
}

/* Error styling (for potential validation feedback) */
.error-message {
  color: var(--error-color);
  font-size: 0.85rem;
  margin-top: 0.3rem;
}



@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');




.footer {
  background: #0b1a2f; /* Unified background */
  color: #e9ecf8cc;
  padding: 3rem 2rem 2rem;
  font-family: 'Orbitron', sans-serif;
  position: relative;
  overflow: hidden;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, gold, rgb(235, 220, 138), rgb(168, 150, 46), rgb(245, 209, 8), rgb(201, 171, 3)) 1;
  box-shadow: inset 0 0 30px #004ea8aa;
  user-select: none;
}

.footer::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -30%;
  width: 160%;
  height: 200%;
  background:
    radial-gradient(circle at 25% 25%, #0078ff33 60px, transparent 70px),
    radial-gradient(circle at 75% 75%, #00b0ff44 70px, transparent 90px);
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
  animation: pulseGlow 15s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.12; }
  50% { opacity: 0.25; }
}

.footer .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  text-align: left;
}

.footer h3 {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  position: relative;
  color: #b9dffa;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #00b0ff, #004ea8);
  border-radius: 6px;
  box-shadow: 0 0 12px #0078ffaa;
}

.footer p, .footer a, .footer li {
  color: #f7f8f8dd;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer a {
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer a:hover, .footer a:focus {
  color: gold;
  text-shadow: 0 0 6px goldenrod;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li {
  margin-bottom: 0.8rem;
}

.footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
}

.footer .footer-links li {
  margin: 0;
}

.footer .footer-links a {
  font-weight: 600;
  color: #f4f6facc;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.footer .footer-links a:hover {
  color: gold;
  text-shadow: 0 0 10px goldenrod;
}

/* Social Icons Container */
.footer .social-icons {
  display: flex;
  gap: 1.6rem;
  margin-top: 0.4rem;
}

.footer .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #004ea833;
  box-shadow: 0 0 10px #004ea866;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  color: #e2eaf3;
  font-size: 1.6rem;
  cursor: pointer;
  user-select: none;
}

.footer .social-icons a:hover {
  background: rgb(153, 141, 71);
  box-shadow: 0 0 20px goldenrod;
  color: white;
  transform: scale(1.15);
}

/* Contact Info */
.footer .contact-info p {
  margin: 0.5rem 0;
}

/* Bottom copyright area */
.footer .bottom-bar {
  grid-column: 1 / -1;
  margin-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: #e5eef7aa;
  letter-spacing: 0.07em;
  border-top: 1px solid gold;
  padding-top: 1.5rem;
}

/* Logo image */
.logo_image{
    padding: 10px;
    margin-top: 5px;
    width: 250px;
    opacity: 1;
}

/* Button */
.btn-primary_one {
  background: #0056b3;
  color: white;
  padding: 10px;
  border-radius: 50px;
  transition: background 0.3s ease;
  font-weight: 100;
  z-index: 3;
  position: relative;
}

.btn-primary_one:hover {
  background: #003b82;
}


/* Scroll to top button */
.footer .scroll-top {
  position: fixed;
  right: 20px;
  bottom: 40px;
  background: gold;
  color: blue;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 15px #00b0ffdd;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
  font-size: 1.6rem;
  user-select: none;
}

.footer .scroll-top:hover {
  background: rgb(247, 229, 130);
  box-shadow: 0 0 25px rgb(236, 203, 117);
}

/* Responsive */
@media (max-width: 720px) {
  .footer .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer .social-icons {
    justify-content: center;
  }

  .footer h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .nav ul {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background: #0b1a2f;
    position: absolute;
    top: 70px;
    right: 1rem;
    width: 200px;
    padding: 1rem;
    border-radius: 8px;
  }

  .nav ul.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

