.occupation-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 30px;
  }
  
  .occupation-card {
    position: relative;
    width: 250px;
    height: 400px;
    overflow: hidden;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .occupation-card:hover {
    transform: scale(1.03);
  }
  
  .occupation-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* No need for border-radius here, it's already clipped by parent */
  }
  
  .occupation-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 20px;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 6px 12px;
    border-radius: 8px;
  }
  .section-title {
    margin: 20px 90px;
    text-align: left;
    font-size: 26px;
    font-weight: bold;
    position: relative;
    color: #222;
  }
  
  .section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 3px;
    width: 60px;
    background-color:#e84d1c;
    border-radius: 2px;
  }
  