/* Career Button */
.career-btn {
  position: absolute;
  top: 20px;
  right: 100px;   /* move it left of Login button */
  width: 80px;
  height: 45px;
  background: #606161;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  z-index: 1100;
  transition: 0.3s;
}

.career-btn:hover {
  background: #09646d;
  color: #fff;
}


@media (max-width: 576px) {
  .career-btn {
    width: 60px;
    height: 35px;
    font-size: 15px;
    top: 10px;
    right: 65px; /* keep position relative to smaller size */
  }
}











/* Login Button (inside carousel, top-right) */
.login-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 70px;
  height: 45px;
  background: #606161;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  z-index: 1100; /* Above carousel */
  transition: 0.3s;
}

.login-btn:hover {
  background: #09646d;
  color: #fff;
}

/* Small screens */
@media (max-width: 576px) {
  .login-btn {
    width: 50px;
    height: 35px;
    font-size: 15px;
    top: 10px;
    right: 10px;
  }
}
