body {
  font-family: "Montserrat", sans-serif;
  background-color: #000000;
  color: #ffffff;
  margin: 0;
}

/* ===== Scrollbar CSS ===== */

/* Firefox */
html {
  scrollbar-width: none;
  scrollbar-color: #00000091 transparent;
}

/* Styles the scrollbar track (background) */
::-webkit-scrollbar-track {
  background: transparent; /* Makes the track background transparent */
}

/* Styles the scrollbar handle */
::-webkit-scrollbar-thumb {
  background-color: #66666691; /* Makes the scrollbar handle black */
  border-radius: 10px; /* Optional: adds rounded corners to the scrollbar handle */
}

/* Styles the overall scrollbar width and height */
::-webkit-scrollbar {
  width: 0; /* Makes the scrollbar thin */
  height: 8px; /* Affects horizontal scrollbars */
}

nav {
  position: fixed;
  top: 0;
  padding: 30px 50px;
  box-sizing: border-box;
  left: 50%; /* Moves the left edge of the nav to the center of the screen */
  transform: translateX(-50%);
  width: 100%;
  z-index: 120; /* Ensures navbar is above the slider */
  background-color: transparent;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s ease-out;
}

nav.scrolled {
  background-color: #000000dd; /* Bg color when scrolled */
  padding: 5px 50px;
}

.nav-logo img {
  height: 50px; /* Per logo size */
}

.nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links span {
  display: block;
  cursor: pointer;
  color: white;
  font-weight: 500;
  text-decoration: none;
  margin-left: 20px;
  font-size: 21px;
  transition: 0.2s ease-out;
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, works in Chrome, Opera and Safari, Firefox 69+ */
}

.nav-links a {
  display: block;
  cursor: pointer;
  color: white;
  font-weight: 500;
  text-decoration: none;
  margin-left: 20px;
  font-size: 21px;
  transition: 0.2s ease-out;
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, works in Chrome, Opera and Safari, Firefox 69+ */
}

.nav-link-item:active {
  transform: scale(0.9);
  color: #e4b037e3;
}

.nav-link-item a {
  color: white;
  text-decoration: none;
  outline: none;
}

.slider-container {
  width: 100%;
  height: 100vh; /* Full viewport height */
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.slider {
  position: relative;
  height: 100%;
  transition: 2s ease-in-out;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.slide-text {
  cursor: default;
  position: absolute;
  top: 75%;
  width: 100%;
  box-sizing: border-box;
  padding: 0 10px;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}

.slide-text h2 {
  font-weight: 900;
  font-size: 45px;
  margin-bottom: 0px;
}

.slide-text p,
.slide-text span {
  font-size: 30px;
  margin: 0;
}

.slider-footer {
  background-color: #000000bb;
  padding: 15px 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.slider-footer p {
  text-align: center;
  font-size: 12px;
  width: 100%;
}

.page-content {
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 1250px) {
  .slider-container {
    width: 100%;
  }

  .slide-text h2 {
    font-size: 35px;
  }

  .slide-text p {
    font-size: 20px;
  }
}

.nav-icons {
  font-size: 30px;
  padding: 5px;
  display: none; /* Hide by default, shown in mobile view */
  cursor: pointer;
  position: fixed;
  top: 29px;
  right: 20px; /* Position the icons */
  z-index: 20; /* Ensure icons are above the nav-links */
  transition: 0.5s ease-out;
}

.nav-icons.nav-icon-scrolled {
  top: 6px;
}

.menu-backdrop {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0); /* Semi-transparent black */
  z-index: 10; /* Below the menu but above other content */
}

.menu-backdrop.active {
  display: block;
}

@media screen and (min-width: 600px) {
  .nav-icons {
    display: none !important;
  }
}

@media screen and (max-width: 600px) {
  nav.scrolled {
    padding: 5px 10px;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: -100%; /* Start off-screen to the right */
    height: 100vh;
    width: 40%; /* Adjust width as needed */
    background-color: #000000;
    transition: 0.5s ease; /* Smooth transition for sliding effect */
    z-index: 15;
    box-sizing: border-box;
    padding-top: 90px;
  }

  .nav-links.nav-links-scrolled {
    padding-top: 60px;
  }

  .nav-links span {
    text-align: left;
    margin-left: 0;
    margin-right: 26px;
  }

  .nav-links a {
    text-align: left;
    margin-left: 0;
    margin-right: 26px;
  }

  #hamburger-icon,
  #close-icon {
    display: block;
  }

  /* When menu is active */
  .nav-links.active {
    right: 0;
  }

  .nav-links > span:nth-child(1) {
    margin-bottom: 10px;
  }

  .nav-links span {
    font-size: 18px;
    font-weight: 600;
    margin-left: 0;
  }


  .nav-links > a:nth-child(1) {
    margin-bottom: 10px;
  }

  .nav-links a {
    font-size: 18px;
    font-weight: 600;
    margin-left: 0;
  }

  .slide-text {
    width: 100%;
  }

  .slider-footer p {
    margin: 0;
  }
}

@media screen and (max-width: 490px) {
  .nav-logo img {
    height: 40px; /* Adjust as per your logo size */
  }

  nav {
    padding: 30px 10px;
  }
}

.background-paralax-image {
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover the container without losing aspect ratio */
  z-index: -1; /* Ensure the image stays behind the content */
}

.section-container {
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 30px 0;
}

/* FEATURE SECTION */
.feature-section {
  color: white;
  text-align: center;
  /* margin: 100px auto 200px auto; */
  padding: 0 20px;
  box-sizing: border-box;
}

.feature-section h1 {
  font-size: 40px;
}

.feature-section-wrapper {
  padding: 30px 0;
  box-sizing: border-box;
}

.image-card-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 40px auto 0 auto;
}

.specification-container {
  width: 400px;
  color: white;
  padding: 0 10px 0 10px;
  margin-bottom: 30px;
  border-left: 3px solid #e4b037;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.specification-container > span:nth-child(1) {
  text-align: left;
  margin-right: 20px;
  width: 200px;
  font-weight: 700;
  font-size: 20px;
  white-space: nowrap;
}

.specification-info-elements {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.specification-info-elements span {
  font-weight: 400;
  font-size: 13px;
  text-align: left;
}

.system-components-container {
  margin-top: 14%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
}

.system-components-container > div:nth-child(2) {
  margin: 0 5%;
}

.system-components-card img {
  width: 350px;
}

@media screen and (max-width: 375px) {
  .system-components-card img {
    width: 280px;
  }
}

.system-components-card h2 {
  border-top: 3px solid #e4b037;
  padding-top: 20px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.system-components-paragraph {
  margin-top: 50px;
  font-size: 20px;
  text-align: center;
  font-weight: 500;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 820px) {
  .system-components-container {
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    margin-top: 50px;
  }

  .system-components-header {
    margin-top: 110px;
  }

  .system-components-container div {
    margin: 70px 0;
  }

  .system-components-container > div:nth-child(2) {
    margin: 0;
  }

  .feature-section-heading {
    margin-top: 80px;
  }
}

@media screen and (max-width: 450px) {
  .system-components-header {
    font-size: 30px !important;
  }

  .feature-section-heading {
    font-size: 40px !important;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(200px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
}

.animate-on-scroll.animate {
  animation: fadeInUp 1s forwards;
  animation-timing-function: ease-in-out;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-100px) translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

.animate-in-view {
  opacity: 0;
}

.animate-in-view.animate {
  animation: fadeInRight 1s forwards;
  animation-timing-function: ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-in-view-opacity {
  opacity: 0;
}

.animate-in-view-opacity.animate {
  animation: fadeIn 1s forwards;
  animation-timing-function: ease-in-out;
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  80% {
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-pop-in-view {
  opacity: 0;
}

.animate-pop-in-view.animate {
  animation: popIn 1s forwards;
  animation-timing-function: ease-in-out;
}

.custom-loader {
  width: 50px;
  height: 50px;
  display: grid;
  border: 4px solid #0000;
  border-radius: 50%;
  border-color: #e4b037 #0000;
  animation: s6 1s infinite linear;
}
.custom-loader::before,
.custom-loader::after {
  content: "";
  grid-area: 1/1;
  margin: 2px;
  border: inherit;
  border-radius: 50%;
}
.custom-loader::before {
  border-color: #a3a3a3 #0000;
  animation: inherit;
  animation-duration: 0.5s;
  animation-direction: reverse;
}
.custom-loader::after {
  margin: 8px;
}

@keyframes s6 {
  100% {
    transform: rotate(1turn);
  }
}

/* Full-page overlay */
.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 11000;
  transition: 0.5s ease-in-out; /* Transition for the overlay sliding up */
}

/* Initially, we want the overlay to cover the entire screen */
.loader-overlay.active {
  transform: translateY(0);
  opacity: 1;
}

/* After loading, the overlay will slide up and out of view */
.loader-overlay.inactive {
  transform: translateY(-100%);
  opacity: 0;
}

.site-footer {
  background-color: black;
  color: white;
  padding: 40px 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 2px solid #e4b037;
}

@media screen and (max-width: 940px) {
  .site-footer {
    flex-direction: column;
    justify-content: flex-end;
    gap: 20px;
  }

  .footer-social-icons {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 493px) {
  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
  }
}

@media screen and (max-width: 325px) {
  .footer-social-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
  }
}

.responsive-break {
  display: inline-block;
}

@media screen and (max-width: 600px) {
  .responsive-break {
    display: block;
  }
}

.footer-social-icons a,
.footer-links a {
  color: white;
  text-decoration: none;
  margin: 10px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.footer-social-icons a {
  padding: 11px 15px;
  border: 2px solid #e4b037;
  border-radius: 50%;
}

.footer-links a {
  padding: 10px;
  border-bottom: 2px solid #e4b037;
  border-radius: 2px;
  font-weight: 500;
}

.footer-social-icons a:hover,
.footer-links a:hover {
  transform: scale(1.1); /* Hover effect */
  background-color: #e4b037; /* Change background on hover */
  color: black;
}

.footer-copy {
  text-align: center;
  margin: 10px;
}

.seo-hidden {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}