html,
body {
  overflow-x: hidden;
}


@font-face {
  font-family: 'Font Awesome 6 Pro';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/fa-regular-400.woff2') format('woff2');
}

@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/fa-brands-400.woff2") format("woff2"),
    url("../fonts/fa-brands-400.ttf") format("truetype");
}


@font-face {
  font-family: 'Font Awesome 6 Pro';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/fa-solid-900.woff2') format('woff2'),
    url('../fonts/fa-solid-900.woff') format('woff');
}

.fas {
  font-family: "Font Awesome 6 Pro";
  /* or "Font Awesome 6 Solid" */
  font-weight: 900;
}

body {
  background-color: #121212;
  color: #ffffff;
}

/* Light Mode Overrides */
.light-mode {
  background-color: #ffffff;
  color: #000000;
}

.light-mode .career-form input,
.light-mode .career-form textarea {
  color: #000 !important;
  border-color: #000 !important;
}

.light-mode .career-form input::placeholder,
.light-mode .career-form textarea::placeholder {
  color: #000 !important;
}

.light-mode .career-form button {
  border-color: #000;
  color: #000;
}

.light-mode .career-form button:hover {
  background-color: #000;
  color: #fff;
}

.light-mode .toggle-text {
  color: #000 !important;
}

.dark-mode .toggle-text {
  color: #fff !important;
}

#theme-toggle {
  background-color: #121212 !important;
  color: #ffffff !important;
  border: none;
  padding: 6px 16px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

#theme-toggle:hover {
  background-color: #1e1e1e !important;
}

/* Default: Night Mode (dark text) */
.theme-paragraph {
  color: white !important;
}

/* Light Mode */
body.light-mode .theme-paragraph {
  color: black !important;
}

body.light-mode .stay-dark {
  background-color: #000 !important;
  color: #fff !important;
}

/* Keep modal header and paragraph text white */
body.light-mode .stay-dark h4,
body.light-mode .stay-dark p,
body.light-mode .stay-dark .modal-title {
  color: #fff !important;
}

/* Keep white border and text for close button */
body.light-mode .stay-dark .btn-close {
  filter: invert(1);
  /* ensures visibility on white themes */
}

/* Prevent color changes in light mode for scroll percentage */
body.light-mode .stay-dark {
  background-color: #000 !important;
  color: #000 !important;
}

/* Optional: Target span inside if needed */
body.light-mode .stay-dark span {
  color: #000 !important;
}



/* Optional: Keep footer always dark */
footer,
.footer,
footer * {
  color: white !important;
  
}

.about-banner {
  background-image: url(img/trion1c.jpg);
  /* Replace with your actual image path */
  background-size: cover;
  background-position: center;
  height: 300px;
  /* Adjust as needed */
  position: relative;
}

.about-banner h1 {
  font-size: 3rem;
  z-index: 2;
}

/* Optional: add overlay if needed */
.about-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  /* Dark overlay */
  z-index: 1;
}

.career-form {
  /* background-color: rgba(255, 255, 255, 0.1); */
  border-radius: 8px;
  /* box-shadow: 0 0 20px rgba(255, 255, 255, 0.05); */
}

.transparent-input {
  background-color: transparent !important;
  /* Makes background transparent */
  color: white !important;
  /* Sets text color to white */
  border: 1px solid white !important;
  /* Optional: white border for visibility */
  border-radius: 0;
}

.transparent-input::placeholder {
  color: white;
  /* Placeholder text in white */
  opacity: 1;
  /* Ensures placeholder is fully visible */
}

.transparent-input:focus {
  background-color: transparent;
  color: white;
  box-shadow: none;
  border-color: white;
}


.career-form button {
  background-color: transparent;
  color: #fff;
  font-weight: bold;
  border-radius: 0;
  border: 2px solid #fff;
  transition: all 0.3s ease;
}

.career-form button:hover {
  background-color: #fff;
  color: #000;
  border-color: #fff;
}