.find_candidate_sec {
  padding-top: 40px;
  margin-top: 50px;
  padding-bottom: 0px;
}
.find_candidate_sec h2 {
  border-bottom: 1px solid #1a4ffc;
  padding: 13px 26px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(26,79,252,0.08);
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(90deg,#1a4ffc,#f61263,#ff7d48);
    background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  line-height: 1;
}

.find_candidate_sec h3 a {
  border-bottom: 1px solid #1a4ffc;
  padding-bottom: 5px;font-size: 24px;
}
/*.counter_sec_left {
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 10px;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 30px;
  background: #F9FBFC;
}
.counter_box {
  padding: 22px;
  text-align: center;
  border: solid 1px #f3f3f3;
  display: block;
  margin-bottom: 20px;
  background: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}
.counter_box:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transform: scale(1.03);
  transition: 0.35s;
}
.counter_box a {}
.counter_box h4 {
  color: #e60e34;
  padding-bottom: 10px;
  font-size: 21px;
}
.counter_box h5 {
  font-size: 25px;
  color: #1a4ffc;
}*/


.counter_sec_left {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 30px 0;
    background-color: #f8f9fb; /* light corporate background */
    font-family: 'Montserrat', sans-serif;
}

.counter_sec_left a {
    text-decoration: none;
    flex: 1 1 200px; /* responsive width */
    max-width: 220px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.counter_sec_left a:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.counter_box {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 5px solid #0046c3; /* corporate blue accent */
}

.counter_box h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 12px;
}

.counter_box h5 {
    font-size: 28px;
    font-weight: 700;
    color: #f61263; /* accent color for numbers */
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .counter_sec_left {
        gap: 15px;
        padding: 20px 0;
    }
    .counter_box {
        padding: 20px 10px;
    }
    .counter_box h5 {
        font-size: 24px;
    }
}



/*.find_candidate_form {
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 10px;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
}
.find_candidate_form label {
  margin-bottom: 0px;
}
.find_candidate_form .form-control {
  height: 40px;
}
.find_candidate_form h2 {}*/


.find_candidate_form {
  background: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

.find_candidate_form .row {
  margin-bottom: 15px;
}

.find_candidate_form select {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid transparent;
  border-bottom: 2px solid #0046c3; /* gradient bottom border alternative */
  border-radius: 6px;
  background-color: #f8f9fa;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  color: #333;
  transition: all 0.3s ease;
}

.find_candidate_form select:focus {
  outline: none;
  border-bottom: 2px solid #f61263; /* highlight border on focus */
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(246, 18, 99, 0.2);
}

.find_candidate_form select option {
  color: #333;
  padding: 8px;
}

.find_candidate_form .form-group {
  width: 100%;
}

@media (max-width: 767px) {
  .find_candidate_form {
    padding: 15px 20px;
  }
  
  .find_candidate_form .row {
    margin-bottom: 12px;
  }
}


/*.piechart_wrapper {
  padding: 20px 0px;
  background: #F9FBFC;
}
.piechart_box {
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 10px;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
  background: #fff;
}*/

/* Wrapper section */
.piechart_wrapper {
    padding: 40px 0;
    background-color: #f8f9fb; /* light corporate background */
    font-family: 'Montserrat', sans-serif;
}

/* Section Title */
.piechart_wrapper .title h2 {
    text-align: center;
    font-weight: 700;
    font-size: 28px;
    color: #0046c3; /* corporate blue */
    margin-bottom: 30px;
    position: relative;
}

.piechart_wrapper .title h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #f61263; /* accent gradient */
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Chart Boxes */
.piechart_box {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px 15px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.piechart_box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Pie Chart Title inside box */
.piechart_box svg text {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    fill: #0046c3 !important;
}

/* Legend styling */
.piechart_box circle {
    stroke: #ffffff;
    stroke-width: 1;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .piechart_wrapper .title h2 {
        font-size: 22px;
    }
    .piechart_box {
        padding: 15px 10px;
    }
}





.profile_sec {
  padding: 60px 0px;
}
.test_employer {
  border: 1px solid #ccc;
  margin-bottom: 20px;
  margin-top: 0px;
  display: flex;
  border-radius: 25px;
  padding: 40px 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  margin-left: 3px;
}
.employer_pic { float:left;}
.employer_pic i {
  font-size: 50px;
  padding-right: 20px;
}
.employer_detail {
  float: left;
    width: 100%;
    margin-left: 20px;
}
.employer_detail h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a4ffc;
}
.employer_detail h4 {
  font-size: 17px;
  padding-bottom: 18px;
  color: #e60e34;
}
.employer_detail p {}
.employer_detail p i {
  padding-right: 8px;
  font-size: 20px;
  color: #1a4ffc;
}
.employer_contact_box {
  margin-top: 12px;
}
.employer_contact_box ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0px;
}
.employer_contact_box ul li {
  display: inline;
  /*border: 1px solid #eee;
    padding: 7px 21px;
    border-radius: 40px;*/
  font-size: 14px;
  margin-right: 10px;
}
.employer_contact_box ul li a {
  color: #333;
}
.employer_contact_box ul li i {
  padding-right: 8px;
  font-size: 20px;
  color: #1a4ffc;
}





.job_openings {
  border: 1px solid #ccc;
  margin-bottom: 20px;
  margin-top: 0px;
  display: flex;
  border-radius: 25px;
  padding: 40px 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  margin-left: 3px;
}
.job_openings ul {
  list-style: none;
  margin-left: 0 !important;
  padding-left: 0 !important;
}
.job_openings ul li {
  display: block;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid #eee;
}
.job_openings ul li a {
  font-size: 15px;
  color: #333;
}
.job_openings ul li a:hover {
  color: #e60e34;
}
.job_openings ul li a i {
  padding-right: 8px;
  font-size: 18px;
  color: #e60e34;
}
.profile_sec .table-sm td, .table-sm th {
  padding: 10px;
}
/*Css Starts for checkbox select list*/
/*.dropdown-check-list {
  display:block;
}
.dropdown-check-list .anchor {
  position: relative;
  cursor: pointer;
  display: inline-block;
  padding: 5px 50px 5px 10px;
  border: 1px solid #ccc;width: 100%;
}
.dropdown-check-list .anchor:after {
  position: absolute;
content: "";
border-left: 1px solid black;
border-top: 1px solid black;
padding: 4px;
right: 10px;
top: 26%;
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.dropdown-check-list .anchor:active:after {
  right: 8px;
  top: 21%;
}
.dropdown-check-list ul.items {
  padding: 2px;
  display: none;
  margin: 0;
  border: 1px solid #ccc;
  border-top: none;padding-left: 20px;
}
.dropdown-check-list ul.items li {
  list-style: none; text-align: left; 
}
.dropdown-check-list ul.items li input {
  list-style: none;
padding-top: 13px;
margin-right: 10px;
}*/
/*Css Starts for checkbox select list*/
.job_post_listing_sec {
  padding: 60px 0px;
}
.job_list_filter_left {
  border: 1px solid #ccc;
  text-align: center;
  margin-top: 30px;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}
.job_list_filter_left h2 {
  background: linear-gradient(45deg, #1a4ffc, #f61263, #ff7d48);
  margin-bottom: 20px;
  color: #fff;
  font-size: 20px;
  line-height: 34px;
  padding-left: 20px;
  text-align: left;
}
.job_list_result_right {
  border: 1px solid #ccc;
  margin-bottom: 30px;
  margin-top: 30px;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.job_list_result_right h2 {
  background: linear-gradient(45deg, #1a4ffc, #f61263, #ff7d48);
  margin-bottom: 20px;
  color: #fff;
  font-size: 20px;
  line-height: 34px;
  padding-left: 20px;
}
.job_list_result_right h2 i {
  margin-right: 6px;
  font-size: 15px;
}
.job_list_box_top {
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 10px;
  /*box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);*/
  margin-top: 30px;
}
.user_thumb {
  float: left;
  padding-left: 10px;
  text-align: center;
}
.user_thumb i {
  font-size: 50px;
}
.user_thumb h4 {
  border: 1px solid green;
  padding: 8px 16px;
  margin-top: 15px;
  border-radius: 50px;
  font-size: 16px;
  color: green;
  display: inline-flex;

}
.user_detail_content {
  float: left;
  padding-left: 40px;
}
.user_detail_content h3 {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 10px;
  color: #e60e34;
}
.user_detail_content p {
  padding-bottom: 10px;
}
.user_detail_content ul {
  list-style: none;
}
.user_detail_content ul li {
  display: block;
  margin-bottom: 8px;
}
.user_detail_content ul li i {
  padding-right: 8px;
  font-size: 20px;
  color: #1a4ffc;
  vertical-align: middle;
}
.check_details {
  text-align: right;
  margin-top: 15px;
}
.check_detail_btn {
  border-radius: 5px;
  padding: 4px 13px;
  text-align: center;
  background: #F3603C;
  margin-bottom: 20px;
  display: inline-block;
  margin-right: 10px;
  color: white;
}
.check_detail_btn a {
  color: #fff;
}
.check_detail_btn:hover {
  background: #1a4ffc;
  cursor: pointer;
  text-decoration: none;
  color: white;
}
.inactive_btn {
  border-radius: 5px;
  padding: 4px 13px;
  text-align: center;
  background: #e60e34;
  display: inline-block;
}
.inactive_btn a {
  color: #fff;
}
.inactive_btn:hover {
  background: #1a4ffc;
  cursor: pointer;
  text-decoration: none;
}

.active_btn {
  border-radius: 5px;
  padding: 4px 13px;
  text-align: center;
  background: ##1e7e34;
  display: inline-block;
}
.active_btn a {
  color: #fff;
}
.active_btn:hover {
  background: #1a4ffc;
  cursor: pointer;
  text-decoration: none;
}

/*Css Starts For Dropdown checkbox filters*/
.job_list_filter_left .dropdown-menu-form {
  padding: 5px 10px 0;
  padding-left: 10px;
  max-height: 100px;
  overflow-y: scroll;
  width: 100%;
  /* padding-left: 42px;*/
  margin-left: 0px;
}
.job_list_filter_left .dropup, .dropdown {
  position: relative;
  margin-bottom: 20px;
}
.job_list_filter_left .dropdown-menu {
  top: 145%;
}
.job_list_filter_left .dropdown .btn {
  width: 100%;
  padding: 0;
  font-weight: bold;
  color: #333;
}
.job_list_filter_left .form-control {
  height: 40px;
  margin-bottom: 20px;
}
.job_list_filter_left .dropdown a {
  text-align: left;
}
.job_list_filter_left .dropdown .open a {
  text-align: left;
}
.job_list_filter_left .btn .caret {
  float: right;
  margin-top: 8px;
}
.job_list_filter_left .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"], .radio input[type="radio"], .radio-inline input[type="radio"] {
  top: 0;
}
.find_candidate_form .dropdown-menu-form {
  padding: 5px 10px 0;
  padding-left: 10px;
  max-height: 100px;
  overflow-y: scroll;
  width: 100%;
  padding-left: 42px;
  margin-left: -13px;
  margin-top: 10px;
}
.find_candidate_form .dropup, .dropdown {
  position: relative;
  margin-bottom: 20px;
}
.find_candidate_form .dropdown-menu {
  top: 145%;
}
.find_candidate_form .dropdown .btn {
  width: 100%;
  padding: 0;
  font-weight: bold;
  color: #333;
}
.find_candidate_form .form-control {
  height: 40px;
}
.find_candidate_form .dropdown a {
  text-align: left;
  box-shadow: none;
  border: none;
}
.find_candidate_form .dropdown .open a {
  text-align: left;
}
.find_candidate_form .btn .caret {
  float: right;
  margin-top: 8px;
  border-top: 5px solid #aaa;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}
.find_candidate_form .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"], .radio input[type="radio"], .radio-inline input[type="radio"] {
  top: 0;
}
.contact_form {
  padding: 34px;
  border: 1px solid #ccc;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  background: #F9FBFC;
  margin-top: 25px;
}
.contact_form input {
  height: 40px;
}
.contact_form h2 {
  background: #1a4ffc;
  text-align: center;
  color: #fff;
  font-size: 20px;
  line-height: 36px;
  margin-bottom: 25px;
}
.contact_form label {
  display: block;
  font-weight: bold;
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 8px;
  color: #000;
}
.contact_form label i {
  font-size: 20px;
  padding-right: 10px;
  vertical-align: middle;
  color: #e60e34;
}
.contact_sbmt_btn {
  background: #e60e34;
  color: #fff;
  padding: 10px 20px;
  border-radius: 3px;
  margin: 0 auto;
  display: block;
}
.contact_sbmt_btn:hover {
  background: #1a4ffc;
  color: #fff;
  cursor: pointer;
}
.inner_title_wrapper {
  padding: 12px 0px;
  background: linear-gradient(45deg, #1a4ffc, #f61263);
  margin-top: 72px;
  /* border-top: 1px solid #ff7a49;
  border-bottom: 1px solid #ff7a49;*/
}
.inner_text {
  padding-top: 0px;
}
.inner_text h1 {
  margin-bottom: 0px;
  color: white;
}
.inner_title_wrapper .breadcrumb {
  background: none;
  padding-top: 10px;
  float: right;
  margin: 0px;
  padding-bottom: 0;
}
.inner_title_wrapper .breadcrumb ul {
  background: none;
  padding-top: 17px;
}
.inner_title_wrapper .breadcrumb li {
  background: none;
  padding-top: 0px;
}
.inner_title_wrapper .breadcrumb li a {
  background: none;
  padding-top: 0px;
  color: white;
}
/* Style the list */
ul.breadcrumb {
  padding: 10px 16px;
  list-style: none;
  background-color: #eee;
}
/* Display list items side by side */
ul.breadcrumb li {
  display: inline;
  font-size: 18px;
}
/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li + li:before {
  padding: 8px;
  color: black;
  content: "/\00a0";
}
/* Add a color to all links inside the list */
ul.breadcrumb li a {
  color: #0275d8;
  text-decoration: none;
}
/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
  color: #01447e;
  text-decoration: underline;
}
/*Css Ends For Dropdown checkbox filters*/
.advanced_search_sec {
  /*padding: 60px 0px;*/
}
.advanced_search_sec select[multiple], select[size] {
  height: 35px !important;
}
.advanced_search_sec table, th, td {
  padding: 20px !important;
}
.search_btn {
  border-radius: 5px;
  padding: 7px 11px;
  text-align: center;
  background: #e60e34;
  margin-right: 10px;
  color: #fff;
}
.search_btn i {
  padding-right: 5px;
  font-size: 15px;
}
.view_profile_btn {
  border: 1px solid #1a4ffc;
  color: #1a4ffc;
  padding: 7px 11px;
  text-align: center;
}
.shortlisted_candidate_sec {
  padding: 60px 0px;
}
.shortlisted_box {
  margin-bottom: 10px;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #1a4ffc;
  transition: all 0.3s ease-in-out;
  max-width: 600px;
  width: 100%;
}
.shortlisted_box h2 {
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-size: 22px;
}
.shortlistlisted_detail {
  border: 1px solid #ccc;
  padding: 20px;border-radius: 20px;
}
.shortlistlisted_detail ul {
  list-style: none;
}
.shortlistlisted_detail ul li {
  padding: 8px 0;
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: center;
  border-bottom: 1px dashed #eee;
}
.shortlistlisted_detail ul li i {
  padding-right: 8px;
  font-size: 20px;
  color: #1a4ffc;
  vertical-align: middle;
}
.shortlistlisted_detail ul li span {
  font-weight: bold;
}
.mode_of_interview {
  border: 1px solid #ccc;
  margin-top: 20px;
  text-align: center;
  border-radius: 20px;
  padding: 20px;
}
.mode_of_interview h4 {
  background: #260E4D;
  margin-bottom: 20px;
  color: #fff;
  font-size: 15px;
  line-height: 27px;
  border-radius: 20px;
  padding: 8px;
}
.online_mode {
  border-radius: 50px;
  padding: 4px 13px;
  border: 1px solid #F3603C;
  margin-bottom: 15px;
  display: inline-block;
  margin-right: 10px;
  color: #1a4ffc;
  font-weight: bold;
}
.online_mode:hover {
  background: #1a4ffc;
  cursor: pointer;
  color: #fff;
}
.offline_mode:hover {
  background: #1a4ffc;
  cursor: pointer;
  color: #fff;
}
.view_candidate_profile:hover {
  cursor: pointer;
  color: #fff;
  opacity: 0.85;
}
.unlist_candidate:hover {
  background: #1a4ffc;
  cursor: pointer;
  color: #fff;
}
.offline_mode {
  border-radius: 50px;
  padding: 4px 13px;
  border: 1px solid #F3603C;
  margin-bottom: 15px;
  display: inline-block;
  margin-right: 10px;
  color: #1a4ffc;
  font-weight: bold;
}
.mode_of_interview i {
  padding-right: 8px;
  font-size: 15px;
  color: #1a4ffc;
}
.mode_of_interview i:hover {
  color: #fff;
}
.action {
  border: 1px solid #ccc;
  margin-top: 20px;
  text-align: center;
  border-radius: 20px;
  padding: 20px;
}
.action i {
  padding-right: 8px;
  font-size: 15px;
  color: #fff;
}
.action h4 {
  background: #260E4D;
  margin-bottom: 20px;
  color: #fff;
  font-size: 15px;
  line-height: 27px;
  border-radius: 20px;
  padding: 8px;
}
.view_candidate_profile {
  display: inline-block;
  margin: 5px 0;
  padding: 5px 10px;
  border-radius: 50px;
  background: linear-gradient(45deg, #1a4ffc, #f61263, #ff7d48);
  color: #fff;
  font-size: 13px;
  transition: 0.3s;color:#fff;
}
.unlist_candidate {
  border-radius: 50px;
  padding: 4px 13px;
  border: 1px solid #F3603C;
  margin-bottom: 20px;
  display: inline-block;
  margin-right: 10px;
  color: #1a4ffc;
  font-weight: bold;
}
.job_detail_sec {
  padding: 60px 0px;
}
.job_box {
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}
.job_box h2 {
  background: #260E4D;
  margin-bottom: 20px;
  color: #fff;
  font-size: 20px;
  line-height: 34px;
  padding-left: 20px;
}
.job_box ul {
  display: block;
}
.job_box ul li {}
.job_box ul li i {
  color: #1a4ffc;
  top: 7px;
}
.posting {
  padding-top: 10px;
  padding-bottom: 25px;
}
.posting h2 {}
.posting ul {
  list-style: none;
}
.posting ul li {
  display: inline;
  margin-right: 15px;
  color: #260E4D;
}
.posting ul li i {}
.view_all {
  border-radius: 5px;
  padding: 2px 13px;
  text-align: center;
  background: #1a4ffc;
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  float: right;
}
.view_all:hover {
  background: #e60e34;
  color: #fff;
}
.job_detail_tabbing {
  margin-top: 20px;
}
.job_detail_tabbing h2 {
  margin-bottom: 18px;
  font-size: 24px;
}
.job_detail_tabbing p {
  text-align: justify;
}
.panel .panel-heading .nav-tabs {
  margin-bottom: 30px;
  padding-top: 35px;
  ;
}
.job_describe_detail {
  padding: 10px;
}
.job_describe_detail h3 {
  padding-bottom: 5px;
}
.job_describe_detail ul {
  list-style: none;
}
.job_describe_detail ul li {
  display: block;
  margin-bottom: 8px;
}
.job_describe_detail ul li i {
  padding-right: 8px;
  font-size: 20px;
  color: #1a4ffc;
  vertical-align: middle;
}
.recruiter {
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}
.recruiter h2 {
  background: #e60e34;
  margin-bottom: 20px;
  color: #fff;
  font-size: 20px;
  line-height: 34px;
  padding-left: 20px;
}
.recruiter_pic {
  text-align: center;
}
.recruiter_pic img {}
.recruiter_pic i {
  font-size: 60px;
  padding-bottom: 10px;
}
.recruiter_detail {
  text-align: center;
  border: 1px solid #ccc;
  padding: 10px;
  background: #F9FBFC;
  border-radius: 4px;
}
.recruiter_detail h4 {
  padding-bottom: 10px;
  color: #e60e34;
}
.recruiter_detail h5 {}
.social_media_share {
  text-align: center;
  margin-top: 25px;
}
.social_media_share ul {
  list-style: none;
}
.social_media_share ul li {
  margin-right: 6px;
  display: inline;
}
.social_media_share ul li a {}
.social_media_share ul li a i {
  font-size: 25px;
}
.social_media_share ul li a:hover {}
/*.show_profile { 
  padding: 2px 13px;
  text-align: center;
  background: #1a4ffc;
  margin-top: 22px;
  cursor: pointer;
}
.show_profile a {
  color: #fff;
}
.show_profile a i {
  color: #fff;
  padding-right: 10px;
}
.show_profile:hover {
  background: #e60e34;
  color: #fff;
}*/
/*css Style for Social Media Sharing*/
.social_media_share .fa:hover {
  opacity: 0.7;
}
.social_media_share .fa-facebook {
  background: #3B5998;
  color: white;
  color: white;
  padding: 6px 10px;
  font-size: 16px;
  border-radius: 3px;
}
.social_media_share .fa-twitter {
  background: #55ACEE;
  color: white;
  color: white;
  padding: 6px 7px;
  font-size: 16px;
  border-radius: 3px;
}
.social_media_share .fa-google {
  background: #dd4b39;
  color: white;
}
.social_media_share .fa-linkedin {
  background: #007bb5;
  color: white;
  color: white;
  padding: 6px 7px;
  font-size: 16px;
  border-radius: 3px;
}
.social_media_share .fa-youtube {
  background: #bb0000;
  color: white;
}
.social_media_share .fa-instagram {
  background: #125688;
  color: white;
  color: white;
  padding: 6px 7px;
  font-size: 16px;
  border-radius: 3px;
}
.social_media_share .fa-pinterest {
  background: #cb2027;
  color: white;
}
.fa-rss {
  background: #ff6600;
  color: white;
}
.shortlist_btn {
  border-color: #2e6da4;
  border-radius: 5px;
  padding: 7px 13px;
  text-align: center;
  background: #1a4ffc;
  margin-top: 10px;
  cursor: pointer;
}
.shortlist_btn:hover {
  background: #e60e34;
  color: #fff;
  border: none;
}


/* Table wrapper for corporate look */
.table {
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

/* Header style */
.table th {
    background: #0046c3; /* deep blue corporate header */
    color: #ffffff;
    font-weight: 600;
    text-align: left;
    padding: 12px 18px;
    font-size: 15px;
}

/* Table body cells */
.table td {
    padding: 12px 18px;
    color: #333333;
    font-size: 14px;
    border-top: 1px solid #e0e0e0;
}

/* Table rows hover effect */
.table tbody tr:hover td {
    background-color: #f2f6fc; /* subtle hover */
    transition: 0.2s ease-in-out;
}

/* Buttons inside table */
.table button {
   font-weight: 500;
  display: inline-block;
  margin: 7px 0;
    margin-top: 7px;
  padding: 9px 19px;
  border-radius: 50px;
  background: linear-gradient(45deg, #1a4ffc, #f61263, #ff7d48);
  font-size: 13px;
  transition: 0.3s;
  color: #fff;
}
.edit_btn{font-weight: 500;
  display: inline-block;
  margin: 7px 0;
    margin-top: 7px;
  padding: 9px 19px;
  border-radius: 50px;
  background: linear-gradient(45deg, #1a4ffc, #f61263, #ff7d48);
  font-size: 13px;
  transition: 0.3s;
  color: #fff;}


/* Links inside table */
.table a {
    color: #0046c3;
    text-decoration: none;
    font-weight: 500;
}

.table a:hover {
    text-decoration: underline;
    color: #001f66;
}

/* Address box styling */
.address-box {
    background: #f9f9f9;
    padding: 8px 12px;
    border-radius: 4px;
    margin-bottom: 6px;
    border-left: 3px solid #0046c3;
    font-size: 14px;
}

/* Responsive for smaller devices */
@media (max-width: 767px) {
    .table th, .table td {
        padding: 10px 12px;
        font-size: 13px;
    }
    .table button {
        padding: 4px 10px;
        font-size: 12px;
    }
}



#module_shortlist h5 {
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}
#module_shortlist h6 {
  padding-bottom: 20px;
  font-size: 14px;
  font-weight: bold;
}
#offer_letter_form {}
#offer_letter_form .modal-content {
  width: 55%;
}
#offer_letter_form .table td {}
.interview_status {
  text-align: center;
  border-radius: 50px;
  padding: 7px 13px;
  border: 1px solid #F3603C;
  margin-right: 10px;
  display: block;
  margin-top: 20px;
  background: #F9FBFC;
}
.interview_status h4 {
  margin-bottom: 0px;
}
.skill_section {
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 10px;
  margin-bottom: 30px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
  /* new added code */
  height: 90vh;
  overflow-y: auto;
}
/*.skill_box {
  border: 1px solid #ccc;
  padding: 15px;
  margin-bottom: 20px;
  text-align: center;
}*/

.skill_box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 25px;
}

.skill_box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.skill_box .employee_pic {
  position: relative;
  margin-bottom: 15px;
}

.skill_box .employee_pic i {
  font-size: 70px;
  color: #0046c3; /* icon color */
  margin-bottom: 10px;
}

.skill_box .employee_pic h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #333;
  font-family: 'Montserrat', sans-serif;
}

.skill_box .skill_content {
  margin-bottom: 15px;
}

.skill_box .skill_content h4 {
  font-size: 16px;
  color: #f61263; /* accent color for skill */
  margin-bottom: 10px;
  font-weight: 600;
}

.skill_box .skill_content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.skill_box .skill_content ul li {
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.skill_box .skill_content ul li i {
  color: #28a745; /* check icon color */
  margin-right: 8px;
}

.skill_box .show_profile a {
  display: inline-block;
  background: linear-gradient(45deg, #1a4ffc, #f61263);
  border: none;
  color: #fff;
  border-radius: 50px;
  padding: 9px 26px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(26,79,252,0.3);
}

.skill_box .show_profile a:hover {
  background: #f61263;
  color: #fff;
}

.skill_box .show_profile a i{padding-right: 10px;}

.dnld_csv{display: inline-block;
  background: linear-gradient(45deg, #1a4ffc, #f61263);
  border: none;
  color: #fff;
  border-radius: 50px;
  padding: 9px 26px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(26,79,252,0.3);}
.dnld_csv{background: #f61263;
  color: #fff;}

/*.employee_pic {
  text-align: center;
}
.employee_pic i {
  font-size: 60px;
  padding-bottom: 12px;
  color: #303030;
}
.employee_pic h3 {
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
  padding-bottom: 0;
  background: #260E4D;
  font-weight: normal;
  font-size: 17px;
  color: #fff;
  line-height: 25px;
}
.skill_content {}
.skill_content h4 {
  padding-bottom: 8px;
}
.skill_content ul {
  list-style: none;
  text-align: left;
}
.skill_content ul li {
  display: block;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 5px;
  margin-bottom: 5px;
}
.skill_content ul li i {
  font-size: 14px;
  color: #1a4ffc;
  padding-right: 10px;
}*/
.view_profile_button {
  border: 1px solid #1a4ffc;
  text-align: center;
  margin-top: 14px;
  padding: 2px 0px;
}
.view_profile_button a {
  color: #000;
}
.view_profile_button a:hover {
  color: #fff;
}
.view_profile_button a i {
  padding-right: 8px;
}
.view_profile_button:hover {
  background: #1a4ffc;
  color: #fff;
}
.blog_wrapper {
  padding: 60px 0px;
}
.blog_box {
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 30px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}
.blog_box_detail {
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 30px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}
.blog_box_detail img {
  margin-bottom: 20px;
}
.blog_box_detail h2 {
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 10px;
  color: #1a4ffc;
}
.blog_box_detail h3 {
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 10px;
  padding-top: 20px;
  color: #1a4ffc;
}
.blog_box_detail h4 {
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 25px;
}
.blog_box_detail p {
  text-align: justify;
}
.blog_box_detail ul {
  list-style: none;
}
.blog_box_detail ul li {
  margin-bottom: 5px;
}
.blog_box_detail ul li i {
  padding-right: 8px;
}
.blog_box:hover {
  border: 1px solid #1a4ffc;
  cursor: pointer;
  transition: 0.35s;
}
.blog_box img {
  margin-bottom: 12px;
}
.blog_box h4 {
  padding-bottom: 5px;
  line-height: 26px;
  border-bottom: 1px solid #333;
  margin-bottom: 5px;
}
.blog_box p {
  font-size: 14px;
  line-height: 20px;
  text-align: justify;
}
.read_more {
  background: #1a4ffc;
  text-align: center;
  display: block;
  color: #fff;
  margin-top: 10px;
  line-height: 30px;
}
.read_more:hover {
  background: #e60e34;
  color: #fff;
  cursor: pointer;
}
.videocall_sec {
  padding: 60px 0px;
}
.videocall_box {
  border: 1px solid #ccc;
  padding: 50px 0px;
  border-radius: 5px;
  margin-bottom: 30px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  text-align: center;
}
.videocall_box h4 {
  padding: 10px 0px;
  border: 1px solid #ccc;
  border-radius: 50px;
  display: block;
  width: 50%;
  margin: 0 auto;
  color: #260E4D;
  font-weight: bold;
}
.videocall_box a {
  padding-top: 20px;
}
.videocall_box a span {
  background: #1a4ffc;
  text-align: center;
  display: inline-block;
  color: #fff;
  margin-top: 18px;
  line-height: 30px;
  padding: 3px 20px;
  border-radius: 50px;
  font-size: 15px;
}
.videocall_box a span:hover {
  background: #e60e34;
  color: #fff;
}
.videocall_box a i {
  font-size: 100px;
  padding-top: 30px;
}
.sign_in_form {
  padding: 25px;
  /*border-radius: 8px;*/
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
  background: rgba(0, 0, 0, 0.10);
  background: /*rgba(224, 225, 224, 0.18)*/ #fff;
}
.sign_in_form label {
  margin-bottom: 8px;
  color: #000 !important;
}
.sign_in_form label i {
  font-size: 20px;
  padding-right: 10px;
  vertical-align: middle;
  color: #e60e34;
}
.sign_in_form span {
  text-align: center;
  color: #000;
}
.sign_in_form span a {
  color: #e60e34;
}
.sign_in_form_main {
  padding: 20px;
  /*border-radius: 8px;*/
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
  background: rgba(0, 0, 0, 0.10);
  background: /*rgba(224, 225, 224, 0.18)*/ rgba(234, 235, 234, 0.38);
}
.sign_in_form_main label {
  margin-bottom: 8px;
  color: #000;
}
.sign_in_form_main label i {
  font-size: 20px;
  padding-right: 10px;
  vertical-align: middle;
  color: #e60e34;
}
.sign_in_form_main span {
  text-align: center;
  color: #000;
}
.sign_in_form_main span a {
  color: #e60e34;
}
.sign_in_form_main .forgot-password {
  color: #000;
}
.sign_in_form_main .forgot-password i {
  padding-right: 8px;
}
.sign_in_form_main .section-title {
  text-align: center;
  padding-bottom: 15px;
}
.sign_in_form_main .section-title h2 {
  font-size: 25px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-bottom: 12px;
  position: relative;
  color: #000;
}
.sign_in_form_main .section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}
.sign_in_form_main .section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #F3603C;
  bottom: 0;
  left: calc(50% - 20px);
}
.signin_btn {
  width: 100%;
  background: #1a4ffc !important;
  padding: 10px 20px;
  color: #fff;
  display: inline-block;
  font-size: 16px;
}
.signin_btn i {
  padding-right: 10px;
}
.signin_btn:hover {
  background: #e60e34 !important;
  color: #fff;
}
.sign_in_form input {
 /* height: 40px;*/
}
.sign_in_form select {
  height: auto;
}
.sign_in_form select .form-control {
  padding: 0px !important;
}
.sign_in_form input[type="radio"] {
  height: 20px;
  width: 20px;
  margin-left: 15px;
  margin-right: 5px;
}
.sign_in_form input[type="checkbox"] {
  height: inherit;
}
.login_left_part {
  /* background: #260E4D;
	  height: 558px;*/
}
.login_left_part img {
  min-height: 490px;
}
.login_left_part h3 {
  text-align: center;
  color: #fff;
  font-weight: normal;
  font-size: 15px;
  background: #1a4ffc;
  padding: 10px 0px;
}
.login_left_part p {
  padding: 20px;
  color: #fff;
}
.social_sharing {}
.social_sharing h4 {
  color: #000;
  font-size: 16px;
  margin-bottom: 19px;
  margin-top: 24px;
  text-transform: capitalize;
  font-weight: 500;
  text-align: center;
}
.social_sharing ul {
  display: flex;
  justify-content: center;
  list-style: none;
}
.social_sharing ul li {
  margin-right: 10px;
}
.social_sharing ul li a {
  display: block;
  height: 35px;
  line-height: 35px;
  text-align: center;
  transition: all 0.5s ease 0s;
  width: 35px;
  color: #fff;
  border-radius: 5px;
}
.bg--facebook {
  background: #3b5998;
}
.bg--twitter {
  background: #00aced;
}
.bg--instagram {
  background: #125688;
}
.bg--googleplus {
  background: #dd4b39;
}
.nav-tabs {
  border-bottom: 1px solid #e60e34;
}
.nav-tabs > li > a {
  color: #333;
  letter-spacing: 1px;
  font-family: 'poppinsregular';
}
/*Css Starts For About Us page*/
.about_us_wrapper {
  padding-top: 60px;
}
.about_us_wrapper h2 {
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 8px;
  font-weight: normal;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding-top: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.about_us_wrapper h2::before {
  background: #e60e34;
  border: 0 none;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  bottom: -2px;
  width: 40px;
  border-radius: 30px;
}
.about_us_wrapper p {
  text-align: justify;
}
.get_started {
  background: #e60e34;
  padding: 5px 10px;
  color: #fff;
  border-radius: 3px;
  display: inline-block;
  margin-top: 20px;
}
.get_started:hover {
  background: #1a4ffc;
  color: #fff;
}
.advertising_sec {
  padding: 60px 0px;
}
.advertising_box {
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 10px;
  text-align: center;
}
.advertising_box i {
  color: #e60e34;
}
.advertising_box h5 {
  font-family: 'poppinsregular';
  font-size: 16px;
  padding: 10px 0px;
}
.advertising_box:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transform: scale(1.03);
  transition: 0.35s;
  border-radius: 5px;
}
.overview_wrapper {
  padding: 60px 0px;
}
.overview_wrapper h3 {
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
  font-weight: normal;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding-top: 20px;
  font-family: 'poppinsregular';
}
.overview_wrapper h3::before {
  background: #e60e34;
  border: 0 none;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  bottom: -2px;
  width: 40px;
  border-radius: 30px;
}
/*.overview_wrapper h2 {
	  font-size: 25px;
	  margin-bottom: 20px;
	  position: relative;
	  padding-bottom: 8px;
	  font-weight: normal;
	  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
	  padding-top: 20px;
	}*/
/*.overview_wrapper h2::before {
	  background: #e60e34;
	  border: 0 none;
	  content: "";
	  height: 3px;
	  left: 0;
	  position: absolute;
	  bottom: -2px;
	  width: 40px;
	  border-radius: 30px;
	}*/
.overview_wrapper p {
  text-align: justify;
  line-height: 27px;
}
.overview_wrapper ul {
  padding-left: 40px;
  padding-top: 10px;
  list-style: none;
}
.overview_wrapper ul li {
  margin-bottom: 5px;
}
.overview_wrapper ul li::before {
  font: normal normal normal 12px/1 FontAwesome;
  font-size: 12px;
  font-size: 12px;
  font-size: 12px;
  content: "\f00c";
  font-size: 16px;
  position: relative;
  top: 0px;
  margin-left: -22px;
  color: #e60e34;
  left: -7px;
}
.our_mission {
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 10px;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  float: left;
}
.our_mission p {
  text-align: justify;
}
.our_mission img {
  margin-bottom: 10px;
}
/*.our_mission .section-title {
	  padding-bottom: 10px;
	}
	.our_mission h3 {
	  font-size: 20px;
	  font-weight: 500;
	  text-transform: none;
	  margin-bottom: 10px;
	  position: relative;
	  color: #1a4ffc;
	  font-family: 'poppinsregular';
	  border: 1px solid;
	  display: inline-block;
	  width: 80%;
	  padding: 10px;
	}
	.our_mission h3::before {
	  content: "";
	  position: absolute;
	  display: block;
	  width: 120px;
	  height: 1px;
	  background: #ddd;
	  bottom: -1px;
	  left: calc(50% - 60px);
	}*/
.our_vision {
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 10px;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  float: left;
}
.our_vision img {
  margin-bottom: 10px;
}
.our_vision p {
  text-align: justify;
}
/*.our_vision .section-title {
	  padding-bottom: 10px;
	}
	.our_vision h3 {
	  font-size: 20px;
	  font-weight: 500;
	  text-transform: none;
	  margin-bottom: 10px;
	  position: relative;
	  color: #1a4ffc;
	  font-family: 'poppinsregular';
	  border: 1px solid;
	  display: inline-block;
	  width: 80%;
	  padding: 10px;
	}
	.our_vision h3::before {
	  content: "";
	  position: absolute;
	  display: block;
	  width: 120px;
	  height: 1px;
	  background: #ddd;
	  bottom: -1px;
	  left: calc(50% - 60px);
	}*/
.our_values {
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 10px;
  text-align: center;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  float: left;
}
.our_values img {
  margin-bottom: 10px;
}
.our_values p {
  text-align: justify;
}
.our_values .section-title {
  padding-bottom: 10px;
}
/*.our_values h3 {
	  font-size: 20px;
	  font-weight: 500;
	  text-transform: none;
	  margin-bottom: 10px;
	  position: relative;
	  color: #1a4ffc;
	  font-family: 'poppinsregular';
	  border: 1px solid;
	  display: inline-block;
	  width: 80%;
	  padding: 10px;
	}
	.our_values h3::before {
	  content: "";
	  position: absolute;
	  display: block;
	  width: 120px;
	  height: 1px;
	  background: #ddd;
	  bottom: -1px;
	  left: calc(50% - 60px);
	}*/
/*Css Ends For About Us page*/
.job_detail_tabbing .nav-tabs1 {
  border-bottom: 1px solid #e60e34;
  padding-top: 20px;
}
.job_detail_tabbing .nav-tabs1 li {
  margin-right: 20px;
  padding-bottom: 8px;
}
.job_detail_tabbing .nav-tabs1 > li > a {
  color: #333;
  letter-spacing: 1px;
  font-family: 'poppinsregular';
  padding: 10px;
}
.job_detail_tabbing .nav-tabs1 > li > a:hover {
  background: #dc3545;
  color: #fff;
}
.job_detail_tabbing .nav-tabs1 > li > a.active {
  background: #dc3545;
  color: #fff;
}
.job_detail_tabbing .panel-default1 > .panel-heading1 {
  color: #333;
  background-color: #f5f5f5;
  border-color: #ddd;
}
.job_detail_tabbing .panel-default1 {
  border-color: #ddd;
}
.job_detail_tabbing .panel-title1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}
/*Profile Top cSs Starts*/
.nav_top {
  list-style: none;
  padding-top: 6px;
  margin-right: 10px;float: right;
}
.nav_top .dropdown-menu > li {
  padding: 0 20px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 5px;
}
.nav_top .dropdown-menu > li > a {
  color: #000;
}
.navtop li a i {
  color: #260E4D;
}
.navbar-profile ul.nav_top > li > a {
  color: #000;
  padding-top: 0px;
  padding-bottom: 15px;
  line-height: 20px;
}
.navbar-profile ul.nav_top > li > a span {
  color: #000;
}
.navbar-profile ul.nav_top li a .caret {
  color: #000;
}
.navbar-profile ul.nav_top li a:hover {
 /* color: #333 !important;*/
  background: none !important;
}
.nav_top .dropdown-menu > li:hover {
  background: #F3603C;
}
.navbar-profile ul.nav_top > li .dropdown-menu {
  right: 0;
  left: auto;
  top: 59px;
  border-radius: 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.navbar-profile ul.nav_top .dropdown-menu {
  border: none;
  width: auto;
  background: #fff !important;
}
.main_banner {}
.main_banner .carousel-caption {
  top: 300px;
  position: absolute;
  height: 200px;
  padding: 12px !important;
  border-radius: 10px;
}
.main_banner .carousel-inner > .item > a > img, .carousel-inner > .item > img {
  width: 100%;
  height: auto;
}
.welcome_text {
  /*text-align: center;*/
}
.welcome_text h1 {
  font-size: 25px;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.welcome_text p {
  text-align: justify;
  margin-bottom: 10px;
}
.welcome_text .read_more {
  background: #e60e34;
  border: none;
  padding: 8px 0px;
  border-radius: 3px;
  margin: 17px auto 0 auto;
  width: 145px;
  text-align: center;
}
.welcome_text .read_more a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}
.welcome_text .read_more:hover {
  text-decoration: none;
  cursor: pointer;
  background: #1a4ffc;
}
.welcome_text ul {
  list-style: none;
  margin-left: 35px;
}
.welcome_text ul li {}
.welcome_text ul li::before {
  font: normal normal normal 12px/1 FontAwesome;
  font-size: 12px;
  font-size: 12px;
  content: "\f00c";
  font-size: 16px;
  position: relative;
  top: 0px;
  margin-left: -28px;
  color: #e60e34;
  left: -7px;
}
.welcome_text ul li {
  margin-bottom: 8px;
  font-size: 15px;
}
.intro_box {
  border: 1px solid #ccc;
  padding: 8px;
  border-radius: 5px;
  min-width: 260px;
  margin-bottom: 10px;
  text-align: center;
}
.intro_box i {
  color: #1a4ffc;
}
.intro_box h5 {
  font-size: 16px;
  line-height: 42px;
  font-family: 'poppinsregular';
}
.quick_contact {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 5px;
}


/* Pagination */
    .simple-pagination ul {
      display: flex;
      justify-content: center;
      list-style: none;
      padding-left: 0;
      margin-top: 20px;
    }

    .simple-pagination ul li {
      margin: 0 5px;
    }

    .simple-pagination ul li a,
    .simple-pagination ul li span {
      display: block;
      padding: 8px 12px;
      border-radius: 50px;
      background: #fff;
      color: #1a4ffc;
      border: 1px solid #1a4ffc;
      font-weight: 600;
      transition: 0.3s;
      text-decoration: none;
    }

    .simple-pagination ul li a:hover {
      background: linear-gradient(45deg, #1a4ffc, #f61263, #ff7d48);
      color: #fff;
      border-color: transparent;
    }

    .simple-pagination ul li span.current {
      background: linear-gradient(45deg, #1a4ffc, #f61263, #ff7d48);
      color: #fff;
      border-color: transparent;
    }




@media (max-width: 767px) {
	
	#contact iframe{ width: 100%;}
  .signup-step-container {
    padding: 30px 0px;
  }
  .login_left_part img {
    height: 100% !important;
    min-height: inherit;
  }
  .navbar-profile {
    /*  position: absolute;*/
    display: inline-block;
    width: auto;
    right: 40px;
    top: 0;
    text-align: right;
    margin: auto;background:#eee;width: 100%;
  }
  .employer_contact_box ul li i {
    float: left;
  }
  .navbar-profile ul.nav_top > li > a span {
    display: none;
  }
  .animate__animated, .animate__bounceInRight {
    position: absolute;
    bottom: 89%;
    left: 34%;
  }
  .animate__animated, .animate__bounceInRight h1 {
    font-size: 11px !important;
  }
  .inner_text {
    text-align: center;
  }
  .signup-step-container {
    padding: 10px 0px;
  }
  .user_detail_content {
    padding-left: 0px;
  }
  /*.inner_title_wrapper{ margin-top: 122px;}*/
  .inner_text h1 {
    font-size: 25px;
  }
  .job_list_result_right {
    margin-top: 0px;
  }
  .shortlisted_candidate_sec {
    padding: 30px 0px;
  }
  .find_candidate_sec {
    margin-top: 100px;
  }
  .profile_sec {
    padding: 30px 0px;
  }
  .inner_title_wrapper {
    margin-top: 70px;
  }
  .blog_wrapper {
    padding: 30px 0px;
  }

.sign_in_form {
  padding: 0px;
}
.employer_contact_box ul li {
  display: block;
  margin-bottom: 10px;
}
.find_candidate_form .dropdown-toggle::after {
  display: none;
}
.posting ul li {
  display: block;
}
.find_candidate_sec h2{font-size: 17px;text-align: center;
}
}
.find_candidate_sec h3 a{font-size: 17px;
  display: inline-block;
  padding: 18px 26px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(26,79,252,0.12), rgba(246,41,119,0.06));
  box-shadow: 0 6px 18px rgba(26,79,252,0.08);
  color: #1a4ffc;}
.find_candidate_sec h3{text-align: center;}




@media (max-width: 767px) {

  .navbar-profile {text-align: right;
  
    background: #eee!important;
    width: 100%!important;


}

}



@media screen and (min-device-width: 767px) and (max-device-width: 1024px) { 
   #contact iframe{ width: 100%!important;}	

   .navbar-profile {text-align: right;
  
    background: #eee;
    width: 100%;
  }
  .find_candidate_sec h3 a{
  font-size: 17px;
  }
                                                                                                                                                                                                                                                                                                              
}


                                                                                       


/*Profile Top cSs Ends*/