@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background-color: #121212 !important;
  color: #fff !important;
    font-family: "Poppins", sans-serif !important;

}

/* Default: transparent */
.transparent-navbar {
  background-color: transparent !important;
  transition: background-color 0.3s, backdrop-filter 0.3s;
  padding: 12px 24px;
}

.custom-toggler {
    border: none; /* Remove the border */
    padding: 0;
}

.custom-toggler:focus,
.custom-toggler:active {
    outline: none;
    box-shadow: none; /* Remove any additional focus styles */
}

/* Custom styles for the navbar-toggler-icon */
.custom-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Class to be added when scrolling down */
.navbar.scrolled {
background-color: rgba(0, 0, 0, 0.6) !important;
backdrop-filter: blur(10px);}
.navbar.open {
background-color: rgba(0, 0, 0, 0.6) !important;
backdrop-filter: blur(10px);}

.carousel-item {
    position: relative;
    height: 100vh;
}




/* Optional: background for dropdown menu section */



.navbar .nav-link {
  color: #fff !important;
  margin-right: 15px;
}

.custom-btn {
  border-radius: 30px !important;
  transition: background-color 0.3s, color 0.3s;
}

.custom-btn:hover {
  background-color: #8F0310 !important;
  color: #fff !important;
}


.filter-section {
  background-color: #121212;
  padding: 30px 0  !important;

}

.gradient-border {
  width: 100% !important; /* take full width of col-6 */
  padding: 2px !important;
  border-radius: 50px !important;
  background: linear-gradient(to left, #8F0310, #ccc 60%, #FFFFFF) !important;
  display: block !important; /* not inline-block */
  box-sizing: border-box !important;
}

.filter-dropdown {
  width: 100% !important;
  background-color: black !important;
  color: white  !important;
  border: none  !important;
  border-radius: 50px !important;
  padding: 8px 14px !important;
  height: auto !important;
  font-size: 15px !important;
  appearance: none !important;
  box-sizing: border-box !important;
}


.filter-dropdown option {
  background-color: black !important;
  color: white !important;
}


.filter-input {
  background-color: black !important;
  color: white  !important;
  border: 1px solid white !important;
  border-radius: 25px !important;
  padding: 10px !important;
}

.filter-dropdown option {
  background-color: black;
  color: white;
}

.filter-input::placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

.form-select:focus,
.form-control:focus {
  border-color: #fff !important;
  box-shadow: none !important;
  background-color: black !important;
  color: white !important;
}

.btn-outline-light {
  border: 1px solid white;
  color: white;
}

.btn-outline-light:hover {
  background-color: white;
  color: black;
}

.btn-light {
  background-color: white;
  color: black;
}

@media (max-width: 767px) {
  .gradient-border {
    width: 100% !important;
    padding: 2px !important; /* Ensure border is thick enough to show the full gradient */
    border-radius: 50px !important;
    margin-bottom: 12px; /* space between dropdowns */
  }

  .filter-dropdown {
    height: 44px !important; /* enough height to show full circle */
    font-size: 14px !important;
    padding: 2px 14px !important;
    border-radius: 50px !important; /* full circle border */
  }

  .filter-input {
    font-size: 14px !important;
    padding: 6px 12px !important;
    border-radius: 50px !important;
    height: 44px;
  }

  .btn {
    font-size: 14px !important;
    padding: 10px 14px !important;
    border-radius: 50px;
    width: 100% !important;
    margin-bottom: 10px !important;
  }

  .filter-box {
    padding: 20px !important;
  }
}

/* Base button style */
.custom-btn-outline,
.custom-btn-fill {
  padding: 10px 20px;
  font-size: 15px;
  border-radius: 25px;
  border: 1px solid white;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

/* Outline style (Save Search) */
.custom-btn-outline {
  background-color: transparent;
  color: white;
}

.custom-btn-outline:hover {
  background-color: white;
  color: black;
}

/* Filled style (Search) */
.custom-btn-fill {
  background-color: white;
  color: black;
  border: 1px solid white;
}

.custom-btn-fill:hover {
  background-color: #ddd;
  color: black;
}
.job-card {
  background-color: #111 !important;
  border-radius: 20px !important;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
}

.job-title {
  font-size: 20px;
  font-weight: bold;
  color: white;
}

.company-name {
  font-size: 16px;
  color: #ccc;
}

.red-icon {
  color: #8F0310; /* red */
}

.profile-circle {
  width: 45px;
  height: 45px;
  background-color: #222;
  color: #e50914;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
}
@media (max-width: 768px) {
  .job-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .right-section {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 15px;
  }

  .profile-img {
    margin-bottom: 0 !important;
  }
}
.custom-pagination {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
  flex-wrap: wrap;
}

.custom-pagination li {
  display: inline-block;
}

.page-btn,
.page-number {
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid #999;
  text-decoration: none;
  color: white;
  background-color: transparent;
  transition: all 0.3s;
  font-size: 14px;
}

.page-btn:hover,
.page-number:hover {
  background-color: #8F0310;
  color: white;
  border-color: #8F0310;
}

.page-number.active {
  background-color: #1a1a1a;
  color: white;
  border-color: transparent;
}

.page-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
@media (max-width: 767px) {
  .custom-pagination {
    gap: 6px;
  }

  .custom-pagination .page-number:nth-child(n+5):nth-child(-n+10) {
    display: none; /* Hide 4-9 on mobile */
  }

  .custom-pagination .page-btn,
  .custom-pagination .page-number {
    padding: 6px 10px;
    font-size: 13px;
  }
}
/* Logo Styling */
.footer-logo {
  max-width: 140px !important;
  height: auto;
}

/* Footer Links */
.footer-links li a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 10px;
  transition: color 0.3s ease;
  font-size: 15px;
  font-weight: 300;
}

.footer-links li a:hover {
  color: #ccc;
}

/* Social Icons */
.social-icons a {
  color: #fff;
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
}

/* Responsive Text Alignment */
@media (max-width: 767.98px) {
 

  .footer-section .footer-logo {
    margin: 0 auto;
  }
}