/* Hover effect for badges */
.badge-hover:hover {
    background-color: black !important;
    color: white !important;
    border-color: black !important;
    transition: 0.3s ease;
    cursor: pointer;    
}

/* Hover effect for Apply button */
.apply-btn:hover {
    color:rgba(250, 4, 4, 0.927);
    cursor: pointer;
    transition: color 0.3s ease;
}
.apply-btn {
    background: none;
    border: none;    
    font-size: 1.1rem;
    font-weight:bolder;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
 
}


/* typewriting effect on heading  */
.typewriter {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid black;
    width: fit-content;
}

/* Cursor blink animation */
.blink-caret {
    animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: black; }
}


  /* Apply rounded borders to all form controls inside the modal */
  #learnMoreModal .form-control {
    border-radius: 0.5rem;
  }

  /* Apply rounded borders to buttons inside the modal */
  #learnMoreModal .btn {
    border-radius: 0.5rem;
  }

  /* Optional: Make the file input look more consistent */
  #learnMoreModal input[type="file"] {
    padding: 0.4rem;
    border-radius: 0.5rem;
    border: 1px solid #ced4da;
  }

  #learnMoreModal .btn-close:focus {
    box-shadow: none;
    outline: none;
  }

  .custom-modal-width {
    max-width: 700px; /* You can adjust this to 750px, 800px etc. */
    width: 100%;
  }


  /* career page 2 css */


.job-card {
    
    color: #000;
    border-radius: 8px;
    padding: 20px;
    /* flex: 1 1 300px; */
    border: 1px solid #ccc;
    transition: all 0.3s ease;
    opacity: 0.8;
    background-color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
   
}

.job-card:hover {   
    /* background-color: #faf8c1; */
    cursor: pointer;
}

.job-card h4 {
    margin: 0 0 10px;
    font-size: 18px;
    transition: color 0.3s ease;
    text-decoration: underline;
}

.job-card p {
    font-size: 1rem;
    margin-bottom: 10px;
    transition: color 0.3s ease; 
}

.job-card a {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.job-card:hover a {  
    text-decoration: underline;
}


