body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  height: 100%;
  background: linear-gradient(135deg, #001f4d, #003580);
  overflow-x: hidden;
  position: relative;
  color: white;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: linear-gradient(135deg, #001f4d, #003580);
  padding: 0.8rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
}

.brand-text {
  color: white;
}

.brand-text:hover {
  color: #ffcc00;
}

.logo-img {
  height: 40px;
  margin-right: 10px;
}

.nav-links {
  display: flex;
  flex-direction: row;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  padding: 10px;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #ffcc00;
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger-menu span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: transform 0.3s ease;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
  padding: 20px;
  text-align: left;
  scroll-margin-top: 70px;
}

.hero-text {
  color: white;
  flex: 1;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.contact-form {
  flex: 1;
  max-width: 500px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-sizing: border-box;
  margin-bottom: 150px;
}

.contact-form h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #001f4d;
}

.contact-form p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #6c757d;
}

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

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  margin-bottom: 15px;
  border: 1px solid #ced4da;
  border-radius: 5px;
  box-sizing: border-box;
}

.contact-form button {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  color: white;
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-form button:hover {
  background-color: #0056b3;
  transform: scale(1.02);
}

.contact-form .option-group {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.contact-form .option {
  flex: 1;
  padding: 10px;
  border: 1px solid #ced4da;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
  box-sizing: border-box;
}

.contact-form .option:hover {
  background-color: #f1f1f1;
}

.contact-form .option.selected {
  border-color: #007bff;
  background-color: #e9f7ff;
}

.background-sparkles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
  opacity: 0.8;
  animation: sparkle-animation 6s linear infinite;
}

@keyframes sparkle-animation {
  0% {
    transform: scale(0) translateY(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.5) translateY(-100px);
    opacity: 1;
  }
  100% {
    transform: scale(0) translateY(-200px);
    opacity: 0;
  }
}

#purchasing-process {
  position: relative;
  padding: 50px 20px 50px;
  background-color: #f8f9fa;
  margin-top: 100px;
  scroll-margin-top: 70px;
}

.progress-container {
  position: fixed;
  top: 10%;
  left: 20px;
  height: 80%;
  width: 10px;
  background: #e0e0e0;
  border-radius: 5px;
  z-index: 1;
  overflow: hidden;
}

.progress-bar {
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, #e5ff00, #003580);
  border-radius: 5px;
  transition: height 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.step-box {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 40px;
  margin-left: 60px;
  opacity: 0.6;
  transform: scale(0.95);
  transition: opacity 0.3s, transform 0.3s, border-color 0.3s;
}

.step-box.active {
  background: #e6f7ff;
  opacity: 1;
  transform: scale(1);
  border-color: #003580;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.step-number {
  background: #003580;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  box-sizing: border-box;
}

#faqs {
  color: white;
  padding: 20px;
  scroll-margin-top: 70px;
}

.accordion-item {
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}

.accordion-button:not(.collapsed) {
  background-color: #f0f8ff;
  color: #000;
  font-weight: bold;
}

.accordion-collapse {
  background-color: #f9f9f9;
  border-top: 1px solid #ddd;
}

.footer {
  background-color: #001f4d;
  color: white;
  padding: 20px 0;
  text-align: center;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 10px;
    background: linear-gradient(135deg, #001f4d, #003580);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 15px 0;
    text-align: center;
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger-menu {
    display: flex;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .contact-form {
    max-width: 100%;
    padding: 20px;
    margin-bottom: 100%;
  }

  .contact-form .option-group {
    flex-direction: column;
  }

  #purchasing-process {
    margin-top: 50px;
    padding: 80px 20px 30px;
    margin-top: 50%;
  }

  .step-box {
    margin-left: 20px;
  }

  .step-number {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .contact-form button {
    font-size: 0.9rem;
    padding: 8px;
  }

  .step-number {
    width: 25px;
    height: 25px;
    font-size: 0.9rem;
  }

  .step-box {
    padding: 15px;
  }
}

.footer {
  background-color: #001f54;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  font-family: Arial, sans-serif;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.company-name {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
}

.social-icons a {
  margin: 0 10px;
  font-size: 24px;
  color: #fff;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ffcc00;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.copyright {
  font-size: 14px;
  color: #ccc;
}
