  .stepper {
      display: flex;
      align-items: center;
    }

    .step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
    }
 .expert-recommendation::before {
           content: "★\00A0\00A0 Expert Recommended";
    font-weight: bold;
    font-style: italic;
    color: #fff;
    font-size: 11px;
    display: inline-flex
;
    align-items: center;
    background-color: #FF8A00;
    padding: 3px 11px;
    border-radius: 20px;
    position: absolute;
    left: 72px;
    top: 11px;
        }
         .expert-recommendation .card-text.col-10{
             margin-top:20px;
         }
    .step .circle {
      width: 50px;
      height: 50px;
      border: 3px solid #FF8A00;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 18px;
      font-weight: 600;
      background-color: white;
      color: #777;
      transition: all 0.3s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .step.active .circle {
      border-color: #FF8A00;  /* Primary color */
      color: white;
      background-color: #FF8A00;  /* Primary color */
      box-shadow: 0 6px 12px rgba(255, 138, 0, 0.5);
      transform: scale(1.1);
    }

    .step .text {
      margin-top: 12px;
      font-size: 16px;
      font-weight: 500;
      color: #555;
      transition: color 0.3s ease;
      position: absolute;
      top: 60px;
    }

    .step.active .text {
      color: #05264E;  /* Primary color */
    }

    .connector {
      width: 125px; /* Adjust as needed for spacing */
      height: 3px;
      background-color: #ccc;  /* Dark theme color */
      transition: background-color 0.3s ease;
    }

    .step.active + .connector:not(.active) {
      background: linear-gradient(90deg, #FF8A00 54%, #ccc 54%);  /* Primary to dark theme gradient */
    }

    .connector.active {
      background: #FF8A00;  /* Primary color */
    }

    .profile-card {
      position: relative;
      width: 150px;
      height: 150px;
      border-radius: 50%;
      background-color: #fff;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      cursor: pointer;
    }

    .profile-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
    }

    .edit-icon {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 30px;
      height: 30px;
      background-color: #FF8A00;  /* Primary color */
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .edit-icon i {
      font-size: 16px;
      color: white;  /* Icon color to stand out */
    }

    /* Hide the file input */
    #file-input {
      display: none;
    }
    .#FF8A00-heading{
        color:#FF8A00;
    }
.btn-custom {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    text-align: center;
    border-radius: 65px;
    border: 2px solid transparent;
    cursor: pointer;
    font-weight: bold;
    transition: all .3s ease-in;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .btn-custom {
        padding: 10px 20px; /* Reduce padding */
        font-size: 14px; /* Reduce font size */
        border-radius: 50px; /* Adjust border radius for smaller screens */
    }
}

         /* Primary button */
        .btn-custom-primary {
            background-color: #FF8A00;
            color: white;
            border-color: #FF8A00;
        }

        .btn-custom-primary:hover {
            background-color: #05264E;
            color: white;
            border-color: #05264E;
            transform: scale(1.05); /* Scale effect on hover */
        }

        /* Secondary button */
        .btn-custom-secondary {
            background-color: #05264E;
            color: white;
            border-color: #05264E;
        }

        .btn-custom-secondary:hover {
            background-color: #FF8A00;
            color: black;
            border-color: #FF8A00;
            transform: scale(1.05); /* Scale effect on hover */
        }
        .gap-1{
            gap:10px;
        
            
        }
        .control-label:after {
  content:"*";
  color:red;
}
@media(max-width:1200px){
     .connector {
      width: 70px; /* Adjust as needed for spacing */
      
    }
     
}
@media(max-width:800px){
.step .text {
     display:none;
    }
     .step .circle {
      width: 30px;
      height: 30px;
     font-size:13px; 
     }
     .mt-100 {
     margin-top:10px;    
     }
     
}

/* Media query for screens smaller than 768px (e.g., tablets or mobile) */
@media (max-width: 768px) {
  h1 {
    font-size: 1.5rem; /* Smaller size for h1 */
  }

  h2 {
    font-size: 1.4rem; /* Smaller size for h2 */
  }

  h3 {
    font-size: 1.3rem; /* Smaller size for h3 */
  }

  h4 {
    font-size: 1.2rem; /* Smaller size for h4 */
  }

  h5 {
    font-size: 1.1rem; /* Smaller size for h5 */
  }

  h6 {
    font-size: 1rem; /* Smaller size for h6 */
  }

  p {
    font-size: 0.875rem; /* Smaller size for paragraphs */
  }

  span {
    font-size: 0.75rem; /* Smaller size for spans */
  }
}

/* Media query for screens smaller than 480px (e.g., mobile) */
@media (max-width: 480px) {
  h1 {
    font-size: 1.2rem; /* Even smaller size for h1 */
  }

  h2 {
    font-size: 1.1rem; /* Even smaller size for h2 */
  }

  h3 {
    font-size: 1rem; /* Even smaller size for h3 */
  }

  h4 {
    font-size: 0.95rem; /* Even smaller size for h4 */
  }

  h5 {
    font-size: 0.9rem; /* Even smaller size for h5 */
  }

  h6 {
    font-size: 0.85rem; /* Even smaller size for h6 */
  }

  p {
    font-size: 0.75rem; /* Even smaller size for paragraphs */
  }

  span {
    font-size: 0.7rem; /* Even smaller size for spans */
  }
}
.suggestion-box {
  position: absolute;
    width: calc(100% - 30px);
   
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-height: 200px;
    overflow-y: auto; /* Allows scrolling if there are too many suggestions */
    z-index: 9999; /* Ensures it's above other content */
    display: none; /* Initially hidden */
    
    margin-top: 5px;
}
.suggestion-box.show{
    display:block !important;
}

.suggestion-box .suggestion-item {
    margin: 0; 
    padding: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #fff;
    transition: background-color 0.3s ease;
    background-color:#ff8c00;
}

.suggestion-box .suggestion-item:hover {
    background-color: #fff;
    color:#ff8c00;
}

.suggestion-box .suggestion-item.selected {
    background-color: #e0e0e0;
    font-weight: bold;
}

.note-editor.note-airframe .note-editing-area .note-editable, .note-editor.note-frame .note-editing-area .note-editable {
    padding:10px 35px !important;
}
.card{
    cursor:pointer;
}
.job_details_description_list {
    height: 353px;
    overflow-y: auto; /* Enable vertical scrolling */
    overflow-x: hidden;
}
.job_details_description_list::-webkit-scrollbar {
    width: 8px; /* Width of the scrollbar */
}

.job_details_description_list::-webkit-scrollbar-thumb {
    background-color: #FF8C00; /* Scrollbar thumb color */
    border-radius: 5px; /* Rounded scrollbar thumb */
    border: 2px solid #f9f9f9; /* Add a border to create a gap effect */
}

.job_details_description_list::-webkit-scrollbar-track {
    background-color: #f1f1f1; /* Scrollbar track color */
    border-radius: 5px; /* Rounded scrollbar track */
}

/* Add hover effect for the scrollbar thumb */
.job_details_description_list::-webkit-scrollbar-thumb:hover {
    background-color: #FF6A00; /* Slightly darker shade on hover */
}

/* Firefox scrollbar */
.job_details_description_list {
    scrollbar-width: thin; /* Thin scrollbar */
    scrollbar-color: #FF8C00 #f1f1f1; /* Thumb and track colors */
}
.add_more_btn{
  background: transparent;
    border: 1px dashed #FF8A00;
    color: #FF8A00;
    width: 100%;
    padding: 15px;
    border-radius: 15px;
    font-size: 22px;
    transition: .3s all ease;
    cursor:pointer;
}
.add_more_btn:hover {
   transform:scale(1.02);
}
.add_more_btn:focus{
    outline:none;
}
.job_preview_card{
    border-radius:10px;
    overflow:hidden;
}

.job_preview_card .card-title{
    color:#FF8A00;
} 

 
.deleteBox {
 position: absolute;
    top: 15px;
    /* margin-left: -137px; */
    background: #ffbc6d;
    width: 200px;
    height: 80px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 9;
    right: 58px;
    height: auto;
}
.deleteBox::after{
      position: absolute;
    content: '';
     
    z-index: 999999;
    right: -7px;
    top: 10px;
    border-left: 10px solid #ffbc6d;
    border-bottom: 10px solid transparent;
    border-top: 10px solid transparent;
}

.deleteBox p {
  color: #FFF;
  margin: 10px 0;
}

.deleteBox span {
  display: inline-block;
  padding: 8px 16px;
  margin: 5px;
  color: #FFF;
  background-color: #38B87C;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.deleteBox span.cancel {
  background-color: red;
}

.deleteBox span.cancel:hover {
  background-color: #d80000;
}

.deleteBox span.confirm:hover {
  background-color: #2c9162;
}

.delete.selected .deleteBox {
  opacity: 1;
  visibility: visible;
}

.delete.loading {
  opacity: 0.5;
}

.delete.deleted {
  background-color: #d9534f;
}
.skill_active{
    color:#FF8A00;
}
.ai_loader {
  width: 50px;
  aspect-ratio: 1;
  display: grid;
  border: 4px solid #0000;
  border-radius: 50%;
  border-color: #ccc #0000;
  animation: l16 1s infinite linear;
}
.ai_loader::before,
.ai_loader::after {    
  content: "";
  grid-area: 1/1;
  margin: 2px;
  border: inherit;
  border-radius: 50%;
}
.ai_loader::before {
  border-color: orange #0000;
  animation: inherit; 
  animation-duration: .5s;
  animation-direction: reverse;
}
.ai_loader::after {
  margin: 8px;
}
@keyframes l16 { 
  100%{transform: rotate(1turn)}
}
.upload_loader {
  width: 35px;
  aspect-ratio: 4;
  background: radial-gradient(circle closest-side,#fff 90%,#0000) 0/calc(100%/3) 100% space;
  clip-path: inset(0 100% 0 0);
  animation: l1 1s steps(4) infinite;
}
@keyframes l1 {to{clip-path: inset(0 -34% 0 0)}}
button:focus-visible{
    outline:0;
    
}