* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}
html {
  scroll-behavior: smooth;
}
:root {
  --primary-color: #0d4dad;
  --color-white: #fff;
}
a {
  text-decoration: none;
  color: #fff;
}
li {
  list-style: none;
}
/*==================== NAVBAR SECTION =================================*/
nav {
  height: 70px;
  width: 100%;
  color: var(--primary-color);
  position: fixed;
  display: flex;
  justify-content: space-between;
  z-index: 2;
  background: var(--color-white);
  box-shadow: 5px 7px 30px 1px rgba(57, 11, 66, 0.57);
}
nav .container {
  width: 80%;
  text-align: center;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  text-transform: uppercase;
}
.nav-logo a {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
}
.nav-logo a img {
  width: 50px;
  height: 50px;
}
.navlinks ul {
  display: flex;
  gap: 20px;
  font-size: 15px;
}
.navlinks ul li a {
  position: relative;
  margin-bottom: 10px;
  color: var(--primary-color);
}
.navlinks ul li a i {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
}
.navlinks ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transform-origin: right center;
}
.navlinks ul li a:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
  transition-duration: 0.4s;
}

@media only screen and (min-width: 851px) {
  .menu-btn {
    display: none;
  }
}

@media only screen and (max-width: 850px) {
  .navlinks {
    position: absolute;
    top: 80px;
    right: 0px;
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--color-white);
    color: var(--primary-color);
    width: 300px;
    height: 400px;
  }
  .showlinks {
    position: absolute;
    top: 70px;
    right: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--color-white);
    color: var(--primary-color);
    width: 300px;
    animation: slidein 1s;
    height: 280px;
  }
  @keyframes slidein {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .navlinks ul {
    display: flex;
    flex-direction: column;
  }
}

/*==================== NAVBAR SECTION ENDS HERE =================================*/
/* Careers Page Specific Styles */
.careers-hero {
  background: linear-gradient(135deg, #6e48aa 0%, var(--primary-color) 100%);
  color: white;
  padding: 8rem 0 6rem;
  text-align: center;
}

.careers-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.careers-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

.hiring-status {
  background-color: #f8f9fa;
  padding: 4rem 0;
  text-align: center;
}

.hiring-status-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.hiring-status-icon {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.hiring-status h2 {
  color: #333;
  margin-bottom: 1rem;
}

.hiring-status p {
  color: #666;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.future-opportunities {
  padding: 6rem 0;
  background-color: #f9f9f9;
}

.future-form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.future-form h3 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #555;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
}

.form-group textarea {
  min-height: 120px;
}

.submit-btn {
  background: linear-gradient(135deg, #6e48aa 0%, var(--primary-color) 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(110, 72, 170, 0.3);
}

.culture-section {
  padding: 6rem 0;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto;
}

.culture-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.culture-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: inline-block;
}

.culture-card h3 {
  margin-top: 0;
  color: #333;
}
.cta-content , .section-header{
    text-align: center;
    justify-content: center;
}
/* ============================================ FOOTER ============================================== */
footer {
  width: 100%;
  display: flex;
  align-items: center;
  color: var(--color-white);
  height: auto;
  margin-top: 150px;
  background: var(--primary-color);
}
footer .container {
  margin: auto;
}
footer .grid_col-4 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: start;
}
.cols {
  justify-content: left;
  text-align: left;
  margin: 10px 10px;
}
.cols ul li {
  list-style-type: none;
  text-align: start;
}
.cols ul li a {
  display: flex;
  flex-direction: column;
  color: var(--color-white);
}
.cols ul li a:hover {
  text-decoration: underline;
}
.cols input {
  padding: 5px 5px;
  border: 2px solid var(--color-white);
  background: var(--primary-color);
}
.cols input::placeholder {
  color: var(--color-white);
}
.cols input:active {
  border: 1px solid var(--color-white);
}
.cols input :placeholder-shown {
  color: #000;
}
.cols_4 a {
  color: var(--color-white);
}
.cols_4 a i {
  gap: 10px;
  margin-right: 10px;
}
.divider {
  border: 0.5px solid var(--color-white);
  margin-top: 40px;
}
#ft {
  padding: 10px 10px;
  margin-top: 10px;
}

/*========================================== MEDIA QUERRIES =============================================*/
@media screen and (max-width: 650px) {
  footer .grid_col-4 {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: start;
  }
  .future-opportunities, .culture-section{
    height: auto;
  }
}

@media (max-width: 768px) {
  .careers-hero h1 {
    font-size: 2.5rem;
  }

  .future-form {
    padding: 2rem;
  }
}
