.hero {
  background-image: url('images/Demo/header-img.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: white;
  padding: 6rem 0;
  text-align: center;
  margin-top: 70px;
  /* height: 100%; */
}


.card-demo {
  padding: 1px;
}

@media (max-width: 991.98px) {
  .hero h1 {
    padding-top: 100px;
    font-size: 2rem;
    line-height: 1.4;
  }

  .hero p {
    font-size: 1.2rem;
    padding: 0 1rem;
  }
}

@media (max-width: 767.98px) {
  .hero h1 {
    font-size: 2rem;
    line-height: 1.4;
  }

  .hero p {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

@media (max-width: 767.98px) {
  .hero h1 {
    font-size: 2rem;
    line-height: 1.4;
  }

  .hero p {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

/* Extra small screens */
@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.7rem;
  }

  .hero p {
    font-size: 0.80rem;
  }
}

.careers-title {
  color: #000000;
  font-weight: 700;
  font-size: 40px;
  text-align: center;
}

.para {
  font-size: 17px;
}

@media (max-width: 991.98px) {
  .careers-title {
    font-size: 2rem;
  }

  .para {
    font-size: 1.05rem;
  }
}

@media (max-width: 767.98px) {
  .careers-title {
    font-size: 1.8rem;
  }

  .para {
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .careers-title {
    font-size: 1.6rem;
  }

  .para {
    font-size: 0.95rem;
  }
}


.badge-icon {
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

.career-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.career-card:hover {
  transform: translateY(-5px);
}

footer {
  background-color: #4B0082;
  color: white;
  padding: 2rem 0;
}

a {
  color: #4B0082;
}

p {
  font-size: 17px;
}


.perk-card {
  border: 2px solid #a855f7;
  /* Optional border color similar to the image */
  transition: transform 0.2s ease;
}

.perk-card:hover {
  transform: translateY(-5px);
}

.perk-card img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.position-card {
  transition: all 0.3s ease;
  background: #f9f9ff;
}

.position-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.font-weight-semi-bold {
  font-weight: 500;
}

.btn-outline-primary-1 {
  background-color: #3f06a3;
  color: #ffffff;

}

.btn-outline-primary-1:hover {
  background-color: #ffffff;
  color: #3f06a3;
  border: 1px solid #3f06a3;
}


.additional-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.info-item {
  padding: 1.25rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.info-item:hover {
  transform: translateY(-2px);
}

.info-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  gap: 0.75rem;
}

.info-icon {
  color: #3f06a3;
  font-weight: bold;
}

.info-item h5 {
  font-size: 1.05rem;
  margin: 0;
  color: #333;
}

.info-item p {
  margin: 0;
  color: #555;
  line-height: 1.5;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-pill {
  background: rgba(63, 6, 163, 0.08);
  color: #3f06a3;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.85rem;
}