@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;
}
/* Custom 5-column layout for xl */
@media (min-width: 1200px) {
  .col-xl-2-4 {
    flex: 0 0 auto;
    width: 20%;
  }
}

.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;
}

.talent-section {
  background-color: transparent;
  color: white;
}

/* Make cards equal-height columns, keep existing look */
.talent-card {
  background-color: #111;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s;
  display: flex;            /* NEW: stack content vertically */
  flex-direction: column;   /* NEW */
}
.talent-card:hover { transform: translateY(-5px); }

/* Consistent image box (no distortion) */
.image-wrapper {
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 3 / 4;      /* NEW: pick a ratio you like */
  background: #000;         /* fallback while loading */
}

/* Image fills the box and crops neatly without breaking */
.image-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;        /* NEW: preserves clarity, crops excess */
  object-position: center;
}

/* Push actions to the bottom so heights are consistent */
.talent-card .action-buttons {
  margin-top: auto;         /* NEW */
}

.zoom-icon {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 6px;
  border-radius: 50%;
  color: #fff;
}

.location { font-size: 14px; color: #ccc; }

/* Buttons */
.icon-btn {
  border: 1px solid #555;
  background: transparent;
  color: white;
  border-radius: 10px;
  font-size: 13px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s;
}
.icon-btn:hover { background-color: #8F0310; border-color: #8F0310; color: white; }

.filter-btn {
  background-color: #8F0310;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 10px 20px;
  font-weight: 500;
  transition: 0.3s;
}
.filter-btn:hover { background-color: #8F0310; }

/* Optional: clamp long names/labels so text length doesn't change the card height */
/* Responsive, single-line clamp with cross-browser fallback */
.title-clamp,
.title-clamp a {
  /* primary (WebKit) clamp */
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;

  /* make it fluidly responsive */
  font-size: clamp(0.95rem, 2.5vw, 1.125rem); /* ~15.2px → 18px */
  line-height: 1.25;
  font-weight: 600;
  max-width: 100%;
  color: #fff; /* ensure white text */
}

/* Fallback when -webkit-line-clamp isn't supported */
@supports not (-webkit-line-clamp: 1) {
  .title-clamp,
  .title-clamp a {
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}

/* Optional: slightly smaller on very small phones */
@media (max-width: 360px) {
  .title-clamp,
  .title-clamp a { font-size: 0.9rem; }
}

.clamp-1{
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Mobile: use square thumbs if you prefer tighter rows */
@media (max-width: 575.98px){
  .image-wrapper { aspect-ratio: 1 / 1; }
}

.filter-sub {
  font-size: 14px;
  color: #aaa;
}

.autoplay-toggle {
  margin-left: 10px;
}

.autoplay-toggle input[type="checkbox"] {
  accent-color: #8F0310;
  transform: scale(1.1);
  margin-right: 6px;
}

.sort-select {
  background: #000;
  color: white;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 6px 14px;
}

.bulk-btn {
  background-color: transparent;
  color: white;
  border: 1px solid #8F0310;
  border-radius: 10px;
  padding: 8px 16px;
  transition: 0.3s;
}

.bulk-btn:hover {
  background-color: #8F0310;
  color: white;
}
.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 !important;
  }

  .custom-pagination .page-number:nth-child(n+5):nth-child(-n+10) {
    display: none !important; /* Hide 4-9 on mobile */
  }

  .custom-pagination .page-btn,
  .custom-pagination .page-number {
    padding: 6px 10px !important;
    font-size: 13px !important;
  }
}
.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;
  }
}
.post-job-section {
  background-color: transparent;
}

.section-heading {
  font-size: 1.5rem;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .section-heading {
    text-align: left;
    font-size: 1.75rem;
  }
}


.custom-paragraph {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: #fff; /* optional if you want a light gray for better contrast */
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .custom-paragraph {
    font-size: 16px;
  }
}
.job-card {
  background-color: #111;
  border: 1px solid #333;
  border-radius: 16px;
  transition: transform 0.3s;
}

.job-card:hover {
  transform: translateY(-5px);
}

.job-card h5 {
  color: #fff;
  font-weight: 300;
}

.job-card p {
  color: #bbb;
  font-size: 14px;
}

.icon i {
  color: #8F0310;
}

.cta-btn {
  display: inline-block;
  background-color: #8F0310;
  color: #fff;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  background-color: #8F0310;
}
