    .apply-btn {
  background: #fff;               /* White background */
  border: none;                   /* No border */
  color: #000;                    /* Black text */
  font-weight: bold;              /* Bold text */
  padding: 12px 30px;             /* Spacing */
  border-radius: 50px;            /* Rounded pill shape */
  display: inline-flex;           /* Flex for arrow alignment */
  align-items: center;            /* Vertical align */
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.1); /* subtle shadow */
}

.apply-btn .arrow {
  background: #ffc107;            /* Yellow circle */
  color: #000;                    /* Black arrow */
  border-radius: 50%;             /* Round shape */
  padding: 8px 12px;              /* Circle size */
  margin-left: 12px;              /* Space between text & arrow */
  font-weight: bold;
  transition: background 0.2s ease-in-out;
}

.apply-btn:hover {
  transform: translateY(-2px);     /* Slight lift effect */
}

.apply-btn:hover .arrow {
  background: #e0a800;             /* Darker yellow on hover */
}


form input[type="file"] {
    padding: 10px;
    border: 2px dashed #ddd;
    background-color: #f9f9f9;
}

form input, 
form select, 
form textarea {
    width: 100%;
    color: #757575;
    padding: 15px;
     border: 2px solid #eee; 
     border-radius: 8px; 
    font-size: 16px;
    /* margin-bottom: 20px; */
    transition: all 0.3s ease;
    background-color: #f9f9f9;
    /* border-color: #f5a623; */
         
}

form input:focus,
form select:focus,
form textarea:focus {
    outline: none;
    box-shadow: none;
    border-color: #ddd; /* same as normal border */
}



form button {
    padding: 15px 15px;
    background-color: #f5a623; 
    border: none;
    color: white;
    font-size: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* form button:hover {
    background-color: #f08500;
} */

form label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-family: "Outfit", sans-serif;
    color: #808080;
    font-weight: 300;
}

/* resume upload */
.custom-file-upload {
    border: 2px dashed #ccc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    cursor: pointer;
    border-radius: 8px;
    text-align: center;
    background-color: #fff;
}
.custom-file-upload:hover {
    border-color: #0f0101ff;
}
.custom-file-upload h5 {
    font-weight: bold;
    margin-bottom: 5px;
}
.custom-file-upload p {
    font-size: 14px;
    color: #090000ff;
    margin: 0;
}
.custom-file-upload input[type="file"] {
    display: none; /* hide default input */
}

.iti {
  width: 100%; /* input full width */
}

.iti__selected-flag {
  height: 100%; /* flag box height input  equal */
}


.addi{
    /* font-weight: bold; */
    font-size: 20px;
   
}
.expr{
    /* font-weight: bold; */
    font-size: 20px;
}
.add{
    /* font-weight: bold; */
    font-size: 20px;
}


/* add attachment */

.upload-box {
  border: 2px dashed #ccc;
  border-radius: 6px;
  padding: 20px;
  background-color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 300px; 
  /* margin: auto; */
  position: relative;
}

.upload-box input[type="file"] {
  display: none;
}

.upload-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fffcfcff;
  margin-right: 15px;
  background-color: gray;
}

.upload-right {
  text-align: left;
  line-height: 1.2;
}

.upload-box:hover {
  background-color: #f9f9f9;
  border-color: #999;
}


/* checkbox */
.custom-checkbox {
    width: 18px;
    height: 18px;
    border: 1px solid #555;
    border-radius: 2px;
    margin-top: 12px; /* extra top space  */
  }

  .custom-checkbox:checked {
    background-color: #f9b233;
    border-color: #f9b233;
  }

  .form-check-label {
    font-size: 13px;
    line-height: 1.5;
  }


  .rmv{
    margin-top: 30px;
  }



/* Overlay */
.popup-overlay {
  display: none; 
  position: fixed; 
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: scroll;
  scroll-behavior: smooth;
}

/* Popup Box */
.popup-content {
  position: relative;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  /* max-width: 1000px; */
  width: 45%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Close Button */
.popup-close {
  position: absolute;
  top: 20px; right: 20px;
  background: #004d40;
  color: #fff;
  border: none;
  font-size: 24px;
  border-radius: 50%;
  width: 40px; height: 40px;
  cursor: pointer;
  line-height: 40px;
  text-align: center;
}

/* Layout */
.popup-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

/* Left Side */
.popup-left {
  text-align: center;
}
.popup-img {
  max-width: 180px;
  margin: auto;
  display: block;
}

/* Right Side */
.popup-right {
  text-align: left;
  padding: 20px;
}
.popup-title {
  color: #f7a800;
  font-size: 32px;
  font-weight: bold;
}
.popup-text {
  margin: 15px 0;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}
.popup-logo {
  width: 180px;
  margin: 20px 0;
}
.popup-follow {
  font-weight: bold;
  margin-top: 10px;
  text-transform: uppercase;
}

/* Social Links */
.popup-social {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
.popup-social li a {
  color: #333;
  font-size: 20px;
  transition: color 0.3s ease;
}
.popup-social li a:hover {
  color: #f7a800;
}

/* Responsive */
@media(max-width: 768px){
  .popup-inner {
    flex-direction: column;
  }
  .popup-right {
    text-align: center;
  }
  .popup-content{
        width: 95%;
  }
  .popup-img {
    max-width: 90px;
    
  }
  .popup-social{
    justify-content: center;
  }

}

/* ----------- Mobile (0px - 576px) ----------- */
@media (max-width: 576px) {
  .popup-inner {
    flex-direction: column;
    text-align: center;
  }
  .popup-right {
    text-align: center;
  }
      .popup-content {
        width: 95%;
        padding: 15px;
        margin-top: 220px;
        overflow: scroll;
        margin-bottom: 100px;
    }
  .popup-img {
    max-width: 80px;
    margin: 0 auto 15px;
  }
  .popup-social {
    justify-content: center;
    gap: 8px;
  }
}

/* ----------- Tablets (577px - 768px) ----------- */
@media (min-width: 577px) and (max-width: 768px) {
  .popup-inner {
    flex-direction: column;
    text-align: center;
  }
  .popup-right {
    text-align: center;
  }
  .popup-content {
    width: 95%;
    padding: 20px;
    margin-top: 220px;
        overflow: scroll;
        margin-bottom: 100px;
  }
  .popup-img {
    max-width: 120px;
    margin: 0 auto 20px;
  }
  .popup-social {
    justify-content: center;
    gap: 10px;
  }
}

/* ----------- Small Laptops (769px - 1024px) ----------- */
@media (min-width: 769px) and (max-width: 1024px) {
  .popup-inner {
    flex-direction: row;
    align-items: center;
  }
  .popup-right {
    text-align: left;
  }
  .popup-content {
    width: 95%;
    padding: 25px;
    margin-top: 220px;
        overflow: scroll;
        margin-bottom: 100px;
  }
  .popup-img {
    max-width: 150px;
  }
  .popup-social {
    justify-content: flex-start;
    gap: 12px;
  }
}

