@import url("header.css");
@import url("footer.css");
@import url("hero.css");
@import url("services.css");
@import url("approach.css");
@import url("technologies.css");
@import url("animations.css");
@import url("mission.css");
@import url("faq.css");
@import url("about.css");
@import url("contactus.css");
@import url("hidden_details.css");

/* Font import */

h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 900; /* Use the boldest weight */
  font-size: 4rem; /* Adjust the size as needed */
}

h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 100; /* Use the boldest weight */
  font-size: 2rem; /* Adjust the size as needed */
}

h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 200; /* Use the boldest weight */
  font-size: 1.5rem; /* Adjust the size as needed */
}

h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 100; /* Use the boldest weight */
  font-size: 1.2rem; /* Adjust the size as needed */
}

p {
  font-family: "Poppins", sans-serif;
  font-weight: 300; /* Use the boldest weight */
  font-size: 1.2rem; /* Adjust the size as needed */
}

td {
  font-family: "Poppins", sans-serif;
  font-weight: 300; /* Use the boldest weight */
  font-size: 1.2rem; /* Adjust the size as needed */
}

.main-body {
  background-color: #000000;
}


.loading-spinner-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1050; /* Ensure it appears above other elements */
}


.snackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 16px;
  position: fixed;
  z-index: 1050;
  left: 50%;
  bottom: 30px;
  font-size: 16px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  transition: visibility 0s, opacity 0.5s ease-in-out;
  opacity: 0;
}

.snackbar.show {
  visibility: visible;
  opacity: 1;
}


@media (max-width: 767.98px) {
  #hero,
  .hero-container,
  .hero-container > .row,
  .col-md-4.text-center.d-flex.align-items-center.justify-content-center {
    height: auto !important;
    min-height: unset !important;
    overflow: visible !important;
  }
  .hero-image {
    width: 90vw;
    max-width: 350px;
    height: auto;
    display: block;
    margin: 2rem auto 0 auto;
    object-fit: contain;
  }
}

/* Scroll to Top Arrow */
.scroll-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  background: #222;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.scroll-to-top:hover {
  background: #f8139c;
  color: #fff;
}