/* common style fot the notification */
.breadcrumbs {
  background-image: url("../assets/images/dashboard.jpg");
}

.can-img {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  overflow: hidden;
  width: 70px;
  height: 70px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1),
    0px 1px 3px rgba(0, 0, 0, 0.08);
  padding: 10px;
}

.can-img img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 50%;
}
.card-header_admin{
text-align: center;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
color: rgb(0, 55, 255);
font-size: 19px;
}
.card_details {
border-radius: 15px;
background: #F3F8F9;
box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}
.card_details:hover {
box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2);
transform: translateY(-5px);
}
.card-header_admin {
background: linear-gradient(135deg, #1B839A, #1BD8D8);
color: rgb(255, 255, 255);
text-align: center;
font-weight: bold;
border-top-left-radius: 15px;
border-top-right-radius: 15px;
padding: 20px;
}
.response-container {
background-color: #DCF3FA;
padding: 20px;
margin-top: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.form-group textarea {
resize: none;
height: 120px;
font-size: 0.95rem;
}
.status-container {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 15px;
}
.status-tag {
font-size: 1rem;
}
.candidate_name_text{
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
color: rgb(0, 55, 255);
font-size: 16px;
}
.candidate_name{
text-align: center;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
color: rgb(0, 55, 255);
font-size: 19px;
}
.candidate_name_btn{
text-align: center;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
color: rgb(31, 31, 31);
font-size: 18px;
}
#candidateCard {
animation: fadeIn 0.5s ease-in-out;
}
#companycard{
animation: fadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
#showCompanyBtn, #showCandidateBtn {
display: inline-block;
margin: 15px;
padding: 12px 30px;
font-size: 18px;
font-weight: bold;
text-align: center;
color: #000000;
background-color: #FFE5E5;
cursor: pointer;
box-shadow: inset 0px 4px 6px rgba(0, 0, 0, 0.2);
transition: all 0.3s ease-in-out;
position: relative;
border-radius: 5px;
}
.blinking-dot_reply {
position: absolute;
top: 40%;
right: 10px;
width: 10px;
height: 10px;
background-color: red;
border-radius: 50%;
animation: blink 1s infinite;
}
@keyframes blink {
0% {
opacity: 0;
}
50% {
opacity: 1;
}
100% {
opacity: 0;
}
}
.message-count_reply {
font-size: 14px;
font-weight: bold;
color: #fff;
background-color: red;
border-radius: 50%;
padding: 4px 8px;
position: absolute;
top: -10px;
right: -10px;
}
.notification-dropdown {
  display: none; 
  position: absolute;
  top: 30; 
  right: 15px; 
  width: 250px;
  background: white;
  border: 1px solid #ccc;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 15px;
  z-index: 9999;
  max-height: 400px; 
  overflow-y: auto; 
  position: fixed;
}

.notification-dropdown h5 {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.notification-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #555;
  padding: 10px 0;
}

.notification-item p {
  margin: 0;
  padding: 0;
}

.notification-item a {
text-decoration: none;
}

.notification-item p:hover {
  margin: 0;
  padding: 0;
  color: #002aff;
  cursor: pointer;
  font-weight: 500;
}

.notification-logo {
  width: 30px; /* Adjust logo size */
  height: 30px;
  margin-right: 10px;
  object-fit: cover;
}

/* Style for the notification text and time */
.notification-text {
  flex-grow: 1;
}

.notification-time {
  font-size: 12px;
  color: #aaa;
  margin-top: 5px;
}

.notification-time i {
  font-size: 12px;
  color: #aaa;
  margin-right: 5px;
}
.fa-bell{
  font-size: 25px;
}


/* end of notification */

.breadcrumbs {
  background-color: #081828;
  position: relative;
  padding: 70px 0;
  padding-top: 50px;
  background-image: url("../images/job03.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
  text-align: center;  /* Center the text */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;  /* Align the content vertically */
}

.breadcrumbs.overlay::before {
  background-color: #2042e3;
  opacity: 0.8;
  z-index: -1;
}

.breadcrumbs .breadcrumbs-content {
  position: relative;
  text-align: center;
}

.breadcrumbs .breadcrumbs-content p {
  color: #fff;
  font-size: 14px;
  margin-top: 20px;
  text-align: center;
}

.breadcrumbs .breadcrumbs-content .page-title {
  font-size: 32px;
  color: #fff;
  font-weight: 700;
  position: relative;
  padding-bottom: 22px;
  line-height: 50px;
  text-align: center;
}

.breadcrumbs .breadcrumbs-content .page-title:before {
  position: absolute;
  content: "";
  left: 50%;  /* Move to the center horizontally */
  bottom: 0;
  height: 2px;
  width: 80px;
  background: #fff;
  transform: translateX(-50%);  /* Corrects the position by shifting it back */
}


.breadcrumbs .breadcrumbs-content .breadcrumb-nav {
  background: transparent;
  border-radius: 0;
  margin-bottom: 0;
  padding: 0;
  display: inline-block;
}

.breadcrumbs .breadcrumb-nav {
  text-align: center;  /* Center breadcrumb items */
  margin-top: 50px;
}

.breadcrumbs .breadcrumb-nav li {
  display: inline-block;
}

.breadcrumbs .breadcrumb-nav li,
.breadcrumbs .breadcrumb-nav li a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.breadcrumbs .breadcrumb-nav li a {
  padding-right: 15px;
  margin-right: 15px;
  position: relative;
  text-align: center;
}

.breadcrumbs .breadcrumb-nav li a:hover {
  text-decoration: underline;
}

.breadcrumbs .breadcrumb-nav li a:after {
  content: '';
  height: 80%;
  width: 2px;
  background-color: #fff;
  position: absolute;
  top: 2px;
  right: 0;
}

/* Overlay */
.overlay {
  position: relative;
}

.overlay::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background: #081828;
  content: "";
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 5;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .breadcrumbs {
      padding: 50px 0;
      background-size: cover;  /* Ensure the image covers the entire area */
      background-position: center;
  }

  .breadcrumbs .breadcrumbs-content .page-title {
      font-size: 24px;  /* Reduce font size for mobile */
      line-height: 40px;
  }

  .breadcrumbs .breadcrumbs-content p {
      font-size: 12px;  /* Adjust font size for mobile */
  }

  .breadcrumbs .breadcrumb-nav {
      margin-top: 30px;
  }

  .breadcrumbs .breadcrumb-nav li a {
      font-size: 12px;  /* Adjust font size for mobile */
      padding-right: 10px;
      margin-right: 10px;
  }

  .breadcrumbs {
  background-color: #081828;
  position: relative;
  padding: 70px 0;
  padding-top: 50px;
  background-image: url("assets/images/job03.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
  text-align: center;  /* Center the text */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;  /* Align the content vertically */
  height: 300px;
}

.card {
  max-height: 500px;
  max-width: 700px !important;
  background-color: white;
  border: 1px solid rgb(220, 219, 219);
 

}

.card_backgound{
  background-color: #efefef;
  max-width: 700px !important;
  max-height: 1500px;
  border-radius: 10px;
}


}

@media (max-width: 480px) {
  .breadcrumbs {
      padding: 30px 0;
  }

  .breadcrumbs .breadcrumbs-content .page-title {
      font-size: 24px;  /* Smaller font size for very small screens */
      line-height: 30px;
  }

  .breadcrumbs .breadcrumbs-content p {
      font-size: 14px;  /* Smaller font size for very small screens */
  }
  .breadcrumbs {
  background-color: #081828;
  position: relative;
  padding: 70px 0;
  padding-top: 50px;
  background-image: url("assets/images/job03.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
  text-align: center;  /* Center the text */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;  /* Align the content vertically */
  height: 300px;
}
}


/* Custom Checkbox with 50% border-radius */
.custom-checkbox {
  border-radius: 50% !important;
  width: 17px;
  height: 17px;
  border: 1px solid grey;
  background-color: #fff;
  margin-top: 8px;
}

/* Card Styling */
.card {
  max-height: 500px;
  max-width: 300px;
  background-color: white;
  border: 1px solid rgb(220, 219, 219);
}

/* Card Header Styling */
.card-header {
  z-index: 10;
  background-color: #fff;
  font-weight: bold;
  color: black;
  border-bottom: none;
}

/* Card Body Background Color */
.card-body {
  background-color: #ffffff;
  max-height: 300px;
  overflow-y: auto;
}

/* Sticky Card Header */
.card-header.sticky {
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Custom Scrollbar */
.card-body::-webkit-scrollbar {
  width: 8px;
}

.card-body::-webkit-scrollbar-thumb {
  background-color: #007bff;
  border-radius: 10px;
}

.card-body::-webkit-scrollbar-track {
  background-color: #f0f0f0;
}

/* Form Label Styling */
.form-check-label {
  color: grey;
  font-size: 16px;
  font-weight: 400;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
}

/* Flexbox for job category title and count */
.d-flex {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
}

/* Job Count Styling */
.job-count {
  font-weight: bold;
  color: #007bff; /* Optional: change this color to match your design */
  font-size: 16px;
}

/* Custom Checkbox Checked Styling */
.custom-checkbox:checked {
  background-color: #007bff;
  border-color: #007bff;
}

.card_backgound{
  background-color: #efefef;
  max-width: 300px;
  max-height: 1500px;
  border-radius: 10px;
}

/* Style for the pagination container */
#pagination {
display: flex;
justify-content: center;
list-style: none;
padding: 0;
margin: 20px 0;
}

/* Style for individual page items */
.page-item {
margin: 0 5px;
display: inline-block;
}

/* Style for the pagination links */
.page-link {
display: block;
padding: 10px 15px;
text-align: center;
text-decoration: none;
color: #007bff;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 50%;  /* This applies the circular shape */
transition: background-color 0.3s, color 0.3s;
}

/* Active page style */
.page-item.active .page-link {
background-color: #002aff;
color: white;
border-color: #007bff;
}

/* Hover effect for page links */
.page-link:hover {
background-color: #0037ff;
color: white;
}

/* Disabled page item style */
.page-item.disabled .page-link {
color: #ccc;
background-color: #f5f5f5;
border-color: #ddd;
}

/* Style for previous and next buttons */
.page-item .page-link {
padding: 10px 15px;
border-radius: 0%;  /* Circular shape for prev/next buttons as well */
}

/* Optional: Style for the "Previous" and "Next" buttons */
.page-item .page-link:focus {
outline: none;
}

/* Apply custom styling for the pagination container */
#pagination {
display: flex;
align-items: center;
}

/* Full Time Job - Blue Background */
.bg-full-time {
font-size: 14px;
      color: #1aa13e;
      background-color: #c9ffd8;
      padding: 3px 10px;
      border-radius: 20px;
      font-family: Georgia, 'Times New Roman', Times, serif;
}

.bg-part-time {
font-size: 14px;
      color: #391aa1;
      background-color: #d0c9ff;
      padding: 3px 10px;
      border-radius: 20px;
      font-family: Georgia, 'Times New Roman', Times, serif;
}


.bg-intern {
font-size: 14px;
      color: #c34e18;
      background-color: #ffd3bc;
      padding: 3px 10px;
      border-radius: 20px;
      font-family: Georgia, 'Times New Roman', Times, serif;
}

.navbars {
background-color: rgb(229, 229, 229) !important;
background-size: cover;
background-attachment: fixed;
position: relative;
z-index: 0;
padding: 15px 0;
color: rgb(0, 0, 0) !important; /* Default text color */
transition: background-color 0.8s ease, color 0.8s ease;
}
.navbars .nav-link {
color: rgb(0, 0, 0) !important; /* Default link color */
transition: color 0.8s ease;
}

/* Dark Overlay for Navbar */
.navbars::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
/* background: rgba(0, 0, 0, 0.8); */
background: rgba(235, 235, 235, 0.622); 

z-index: -1;
transition: background 0.8s ease;
}

/* Navbar on Scroll */
.navbars.scrolled {
background: rgb(255, 254, 254); /* New background color */
color: black !important; /* Text color changes to black */
box-shadow: 0 0px 0px rgba(255, 255, 255, 0) ; 
}

.navbars.scrolled .nav-link {
color: black !important;
}

.navbars.scrolled::before {
background: rgba(255, 255, 255, 0); 
}
.bg_student{
background-color: rgb(255, 255, 255);
}


/*======================================
    Job Details CSS
========================================*/
.job-details {
  background-color: #f6f9fc;
}

.job-details .job-details-inner {
  padding: 40px;
  border-radius: 6px;
  border: 1px solid #eee;
  background-color: #fff;
  margin-bottom: 35px;
}

.job-details .job-details-head {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid #EDEDED;
}

.job-details .job-details-head .content .meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  color: #7E8890;
  display: block;
  margin-top: 10px;
}

.job-details .job-details-head .salary-type .salary-range {
  font-weight: 500;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  color: #7E8890;
}

.job-details .job-details-head .badge {
  display: inline-block;
  margin-top: 15px;
  font-size: 15px;
  color: #1aa13e;
  background-color: #c9ffd8;
  padding: 10px 10px;
  border-radius: 20px;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

.job-details .job-details-head li {
  display: inline-block;
  margin-right: 15px;
  font-size: 15px;
  color: grey;
  font-weight: 500;
}

.job-details .job-details-head li i {
  color: #2042e3;
  font-size: 15px;
}

.job-details .job-details-head li:last-child {
  margin-right: 0;
}

.job-details .job-details-head li a {
  color: #2042e3;
  font-weight: 600;
  font-size: 15px;
}

.job-details .job-details-head li a:hover {
  text-decoration: underline;
}

.job-details .job-details-body h6 {
  font-size: 20px;
  font-family: 'Times New Roman', Times, serif;
  font-weight: 600;
}

.job-details .job-details-body p {
  margin: 20px 0;
  font-size: 17px;
}

.job-details .job-details-body ul li {
  display: block;
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
  font-size: 15px;
  color: gray;
}

.job-details .job-details-body ul li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 8px;
  height: 6px;
  width: 6px;
  display: block;
  border-radius: 50%;
  background-color: #2042e3;
}

.job-details .job-details-body ul li:last-child {
  margin-bottom: 0;
}

.job-details .job-details-sidebar .sidebar-widget {
  padding: 40px;
  border-radius: 6px;
  border: 1px solid #eee;
  background-color: #fff;
  margin-bottom: 30px;
}

.job-details .job-details-sidebar .sidebar-widget:last-child {
  margin-bottom: 30px;
}

.job-details .job-details-sidebar .sidebar-widget .title {
  font-size: 20px;
  margin-bottom: 20px;
  line-height: 1;
  position: relative;
  padding-left: 18px;
  font-weight: 600;
  line-height: 28px;
  text-transform: capitalize;
  font-family: 'Times New Roman', Times, serif;
}

.job-details .job-details-sidebar .sidebar-widget .title::before {
  position: absolute;
  left: 0;
  top: 1px;
  height: 100%;
  width: 3px;
  background-color: #2042e3;
  content: '';
}

.job-details .job-details-sidebar .sidebar-widget .list-unstyled li {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 500;
  color: blue;
}

.job-details .job-details-sidebar .sidebar-widget .list-unstyled li strong {
  color: #081828;
  font-weight: 600;
  display: inline-block;
  margin-right: 2px;
  font-size: 15px;
}

.job-overview li {
  padding: 10px 15px;
  font-size: 16px;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.job-overview li:last-child {
  border-bottom: none; 
}

.job-overview strong {
  font-weight: 600;
  color: #333;
}
.deadline-item {
  background-color: #f7f7f7;
  padding: 12px 20px;
  border-left: 5px solid #e74c3c;  
  font-size: 16px;
  font-weight: 600;
  color: #333;  
  font-family: 'Arial', sans-serif; 
  border-radius: 8px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.deadline-item strong {
  color: #e74c3c; 
  font-family: 'Roboto', sans-serif; 
}

/* Hover effect for the "Application Deadline" */
.deadline-item:hover {
  background-color: #e74c3c !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px); 
  font-weight: 600 !important; 
  color: white !important;
}

.job-overview li:hover {
  background-color: #f9f9f9;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
}

.image_job_apply{
  width: 50px;
  height: 50px;
}

/* --------------- Slider --------------- */

.slider__top {
  margin-top: 60px;
}
.slider__text {
  font-size: 1.2rem;
  color: #333;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px !important;
}

.slider__top .swiper-button-prev,
.slider__top .swiper-button-next {
  top: 30px;
  z-index: 10;
  border: 2px solid black;
  border-radius: 50% !important;
  padding: 20px !important; 
  color: rgb(0, 55, 128);
  background-color: rgb(96, 179, 246);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5px;
}
.swiper-button-prev,
.swiper-button-next {
  width: 14px !important; 
  height: 14px !important; 
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px;
}

.slider__top .arrow-icon {
  width: 30px !important; 
  height: 30px !important;
}

.slider__top .arrow-icon path {
  fill: rgb(0, 73, 128); 
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.slider__text {
  font-size: 1.2rem;
  color: #333;
}
.arrow-icon {
  width: 9px !important; 
  height: 9px !important; 
  fill: currentColor; 
  transition: transform 0.3s ease; 
}

.Carouseltiitle {
  font-size: 2rem; 
}

@media (max-width: 768px) {
  .Carouseltiitle {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .Carouseltiitle {
    font-size: 1.5rem;
  }
}

@media (max-width: 400px) {
  .Carouseltiitle {
    font-size: 1.25rem;
  }
}

.Carouseltiitle {
  font-size: 2rem; 
  font-weight: 700; 
  color: #4b4b4b;
  text-align: center; 
  text-transform: uppercase;
  letter-spacing: 1px; 
  padding: 15px 0; 
  margin-bottom: 25px; 
  border-bottom: 2px solid #4d9ef5; 
  font-family: 'Times New Roman', Times, serif;
}

@media (max-width: 576px) {
  .Carouseltiitle {
    font-size: 1.5rem; 
    letter-spacing: 0.5px; 
  }
}
.swiper {
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 20px !important;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

