
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
body, html {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body{
  background-color: rgba(230,230,250,1) !important;
}
#breadcrumb-main-page,
#breadcrumb-page,
.d-flex.align-items-center span1 {
  font-size: clamp(16px, 2vw, 22px); /* Responsive between 16px–22px */
  color: white;                      /* Ensure white text */
  font-weight: 600;
   white-space: nowrap;
}
 
 
 
 
.promote-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #ff7b00, #ff3c3c);
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}
 
 
 
 
.apply-btn {
  background: linear-gradient(135deg, #5a4fff, #3a2cff);
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
 
.apply-btn:hover {
  background: linear-gradient(135deg, #3a2cff, #5a4fff);
}
 
 
  .job-card { 
    border: 1px solid #ddd; 
    padding: 15px; 
    margin: 10px; 
    border-radius: 10px; 
  }
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 5px; 
}
  .pagination button {
    padding: 8px 12px;
    margin: 3px;
    border: none;
    background: #3a2cff;
    color: white;
    border-radius: 6px;
    cursor: pointer;
  }
  .pagination button.active {
    background: #3a2cff;
    font-weight: bold;
  }
  .pagination button:disabled {
    background: #ccc;
    cursor: not-allowed;
  }
 
 
 
@media (max-width: 576px) {
  #breadcrumb-main-page,
  #breadcrumb-page,
  .d-flex.align-items-center span1 {
    font-size: 16px;
  }
}
 
 
.about-header {
  background: url('/images/cover_img.png') no-repeat center center/cover;
  height: 80vh;
  position: relative;
  color: white;
 
}
 
 
 
 
.breadcrumbs {
  font-size: 22px;
  color: white;
  font-weight: 400;
}
 
@media (max-width: 991.98px) {
  .breadcrumbs {
    font-size: 14px;
    text-align: center;
    padding: 10px 0;
  }
}
 
 
 
/* Responsive Styles */
 
/* Tablet View */
@media (max-width: 991px) {
  .about-header {
    height: 80vh;
  }
 
  .about-overlay {
    padding: 60px 40px;
  }
 
  .about-overlay h1 {
    font-size: 36px;
  }
 
  .about-overlay p {
    font-size: 20px;
  }
 
  .breadcrumbs {
    font-size: 18px;
    text-align: center;
    padding: 10px 0;
    padding-right: 100px;
  }
}
 
 
 
/* Overlay Text */
.about-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px 200px;
  border-radius: 10px;
  text-align: center;
  max-width: 800px;
}
 
.about-overlay h1 {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 20px;
}
 
.about-overlay p {
  font-size: 23px;
  line-height: 1.6;
}
 
@media (max-width: 768px) {
  .about-overlay {
    padding: 40px 40px;
  }
 
  .about-overlay h1 {
    font-size: 32px;
  }
 
  .about-overlay p {
    font-size: 18px;
  }
}
 
@media (max-width: 576px) {
  .about-header {
    height: 70vh;
  }
 
  .about-overlay {
    padding: 30px 20px;
  }
 
  .about-overlay h1 {
    font-size: 24px;
  }
 
  .about-overlay p {
    font-size: 16px;
  }
}
 
 
 
 
/* Search Bar Container */
.search-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  background: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 100%;          /* full width */
  max-width: 1200px;    /* increase max width */
  margin: 20px auto;
  flex-wrap: wrap;
}
 
 
/* Individual Field */
.search-field {
  position: relative;
  display: flex;
  align-items: center;
  background: #f9f9f9;
  border-radius: 30px;
  padding: 8px 15px;
  flex: 1;
  cursor: pointer;
}
 
/* Icons inside field */
.search-field i {
  color: #666;
  margin-right: 8px;
  font-size: 16px;
}
 
/* Dropdown */
.search-field select {
  border: none;
  background: transparent;
  font-size: 14px;
  color: #333;
  padding-right: 25px;
  outline: none;
  appearance: none;
  width: 100%;
  cursor: pointer;
}
 
/* Custom dropdown arrow */
.search-field .dropdown-icon {
  position: absolute;
  right: 15px;
  pointer-events: none;
  color: #999;
  font-size: 12px;
}
 
/* Search Button */
.search-btn {
  background: #007bff;
  border: none;
  color: #fff;
  font-size: 18px;
  padding: 12px 20px;   /* rectangular shape */
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
 
.search-btn:hover {
  background: #0056b3;
}
 
 
/* Responsive */
@media (max-width: 600px) {
  .search-bar {
    flex-direction: column;
    border-radius: 20px;
  }
  .search-field {
    width: 100%;
  }
  .search-btn {
    width: 100%;
    border-radius: 30px;
    margin-top: 10px;
  }
}
 
 
 
 
 
 
 
 
 
 
 
 
 
/*****************************************************/
.circle {
    width: 90px;
    height: 90px;
    transition: all 0.3s ease;
 
 
 
  }
  .circle:hover .icon-img {
    transform: scale(1.5);
  }
  .circle:hover .label {
    display: none;
  }
  .icon-img {
 
    transition: transform 0.3s ease;
  }
  .wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
  }
  .featured-title {
    position: relative;
    z-index: 1;
  }
  @media (max-width: 768px) {
  .circle {
    width: 90px;
    height: 90px;
  }
 
  .icon-img {
    width: 20px;
    height: 20px;
  }
 
  .label {
    font-size: 0.65rem;
  }
}
 
@media (max-width: 480px) {
  .circle {
    width: 80px;
    height: 80px;
  }
 
  .icon-img {
    width: 10px;
    height: 10px;
  }
 
  .label {
    font-size: 0.5rem;
  }
}
 
 
 
 
 
/*********************************************************/
/* Common section styling */
.popular-categories,
.trending-jobs {
  padding: 60px 20px;
  background-color: #e8e6fc;
  font-family: 'Segoe UI', sans-serif;
}
 
.popular-categories .container,
.trending-jobs .container {
  max-width: 1400px;
  margin: 0 auto;
}
 
.popular-categories h2,
.trending-jobs h2 {
  font-size: 40px;
  margin-bottom: 10px;
  text-align: left; /* Align to left */
  color: black;
  font-weight: bold;
}
 
.popular-categories p,
.trending-jobs p {
  font-size: 22px;
  margin-bottom: 30px;
  text-align: left; /* Align to left */
  color: black;
}
 
/* Categories Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
 
.category-card {
  position: relative;
  height: 180px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
 
.category-card:hover {
  transform: scale(1.03);
}
 
.category-card .overlay {
  position: absolute;
  bottom: 0;
 background: rgba(0, 0, 0, 0.2);
  color: #fff;
  width: 100%;
  padding: 70px;
}
 
/* Responsive Grid */
@media (max-width: 1200px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
 
@media (max-width: 900px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
 
@media (max-width: 600px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
 
  .category-card .overlay {
    padding: 30px;
  }
 
  .popular-categories h2,
  .trending-jobs h2 {
    font-size: 28px;
  }
 
  .popular-categories p,
  .trending-jobs p {
    font-size: 18px;
  }
}
 
 
 
 
 
 
/* Jobs Grid */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
 
.job-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform 0.3s ease;
}
 
 
 
.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
 
.job-header img {
  width: 80px;
  height: 80px;
}
 
.job-deadline {
  background-color: red;
  color: white;
  padding: 5px 10px;
  font-size: 16px;
  border-radius: 20px;
}
 
.job-main {
  margin-top: 15px;
}
 
.job-title h3 {
  margin: 0;
  font-size: 24px;
  color: black;
  font-weight: bold;
}
 
.job-title .company {
  color: #777;
  font-size: 18px;
}
 
 
 
.salary {
  font-weight: bold;
  margin-top: 10px;
  color: #333;
 
}
 
.job-info {
  margin-top: 15px;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  color: #555;
}
 
.job-card:hover {
  transform: translateY(-5px);
}
 
 
 
.job-card-link {
  display: block;         
  text-decoration: none;
  color: inherit;
}
 
.job-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  transition: 0.2s ease;
}
 
.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
 
 
 
 
 
.more-details {
  padding: 80px 5px;
  text-decoration: none; /* remove underline */
}
 
 
 
 
.promoted-job-card {
    position: relative;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
 
/* Badge styling */
.promote-badge {
    position: absolute;
    top: -10px; /* negative to go outside */
    right: -10px; /* negative to go outside */
    background: #ff4d4f;
    color: #fff;
    width: 40px;
    height: 40px;
    font-size: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}
 
/* Optional hover effect */
.promote-badge:hover {
    transform: scale(1.2);
}
 
/* Make it responsive */
@media (max-width: 768px) {
    .promote-badge {
        width: 30px;
        height: 30px;
        font-size: 14px;
        top: -8px;
        right: -8px;
    }
}
 
@media (max-width: 480px) {
    .promote-badge {
        width: 25px;
        height: 25px;
        font-size: 12px;
        top: -6px;
        right: -6px;
    }
}
 
 
 
 
 
 
 
 
 
@media (max-width: 1024px) {
  .jobs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
 
@media (max-width: 768px) {
  .jobs-grid {
    grid-template-columns: 1fr;
  }
 
  .job-header img {
    width: 60px;
    height: 60px;
  }
 
  .job-title h3 {
    font-size: 20px;
  }
 
  .job-title .company {
    font-size: 16px;
  }
 
  .salary,
  .job-info {
    font-size: 16px;
  }
 
  .job-deadline {
    font-size: 14px;
    padding: 4px 8px;
  }
}
 
 
/******************************************/
 
 
.join-section {
  padding: 60px 60px;
  padding-bottom: 60px;
  background-color: #f7f8fc;
  border: 3px solid #ccc; /* Slightly darker for more visibility */
  border-radius: 12px;
  font-family: 'Segoe UI', sans-serif;
  box-sizing: border-box; /* Ensures padding doesn't overflow the border */
  margin: 40px auto; /* Optional: centers the section if width is limited */
  width: 100%; /* Or set a max-width if needed */
  max-width: 1400px;
}
.section-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 40px;
  color: black;
  font-weight: bold;
}
.section-p{
  text-align: center;
  font-size: 20px;
  margin-bottom: 40px;
  color: #333;
 
}
 
.join-cards {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  justify-content: center;
}
 
.join-card {
  position: relative;
  width: 580px;
  height: 280px;
  background-size: cover;
  background-position: center;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
 
.join-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(65, 75, 210, 0) 0%, rgba(65, 75, 210, 0.5) 30%);
  z-index: 1;
}
.overlay-content {
  position: relative;
  z-index: 2;
  color: #000; /* Black text */
  text-align: left; /* Align text to left */
  padding: 20px;
  width: 100%;
  max-width: 90%;
}
 
.overlay-content h2 {
  font-size: 27px;
  margin-bottom: 5px;
  color: #000; /* Ensure black */
}
 
.overlay-content p {
  font-size: 18px;
  margin-bottom: 15px;
  color: #000; /* Ensure black */
}
 
.join-btn {
  background-color: rgb(52, 61, 191) ; 
  color: #ffffff; /* Black text inside button */
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}
 
.join-btn:hover {
  color: #fff;
  background: linear-gradient(90deg,rgba(65, 75, 210, 1) 0%, rgba(9, 9, 121, 1) 45%, rgba(0, 212, 255, 1) 100%);
}
 
@media (max-width: 1200px) {
  .join-card {
    width: 100%;
    height: 260px;
  }
}
 
@media (max-width: 768px) {
  .join-section {
    padding: 40px 20px;
  }
 
  .section-title {
    font-size: 30px;
    margin-bottom: 30px;
  }
 
  .section-p {
    font-size: 18px;
    margin-bottom: 30px;
  }
 
  .join-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
 
  .join-card {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 12px; /* Full rounded on smaller screens */
  }
 
  .overlay-content h2 {
    font-size: 22px;
  }
 
  .overlay-content p {
    font-size: 16px;
  }
 
  .join-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}
 
@media (max-width: 480px) {
  .overlay-content {
    padding: 12px;
  }
 
  .overlay-content h2 {
    font-size: 20px;
  }
 
  .overlay-content p {
    font-size: 14px;
  }
 
  .join-btn {
    width: 100%;
    text-align: center;
  }
}
 
 
/*********************************************/
 
 
 
@media (max-width: 1200px) {
  .premium-card {
    width: calc(25% - 20px); /* 4 cards per row */
  }
}
 
@media (max-width: 992px) {
  .premium-card {
    width: calc(33.333% - 20px); /* 3 cards per row */
  }
 
  .premium-jobs-header .left-info h2 {
    font-size: 32px;
  }
 
  .premium-jobs-header .left-info p {
    font-size: 20px;
  }
}
 
@media (max-width: 768px) {
  .premium-job-cards {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
  }
 
  .premium-card {
    width: 100% !important;
    min-width: 100% !important;
    flex: 0 0 100% !important;
    scroll-snap-align: start !important;
  }
 
 
  .premium-jobs-section {
    padding: 30px 20px;
  }
 
  .premium-jobs-header .left-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
 
  .premium-jobs-header .left-info p {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
 
@media (max-width: 480px) {
  .premium-card {
    width: 100%; /* 1 card per row */
  }
 
  .premium-jobs-header .left-info h2 {
    font-size: 24px;
  }
 
  .premium-jobs-header .left-info p {
    font-size: 16px;
  }
 
  .apply-btn {
    width: 100%;
    padding: 10px;
    font-size: 14px;
  }
 
  .card-footer {
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
  }
}
 
/* Section Styling */
.premium-jobs-section {
  padding: 60px 30px;
  background-color: #e8e6fc;
  font-family: 'Poppins', sans-serif;
  padding-left: 40px;
}
 
/* Header */
.premium-jobs-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}
 
.premium-jobs-header p {
  font-size: 20px;
  color: #333;
  margin-bottom: 30px;
}
 
 
 
/* Scrollable Card List */
.premium-job-cards {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding-bottom: 10px;
}
 
.premium-job-cards::-webkit-scrollbar {
  height: 10px;
}
 
.premium-job-cards::-webkit-scrollbar-thumb {
  background: #9ca3af;
  border-radius: 20px;
}
 
.premium-job-cards::-webkit-scrollbar-track {
  background: #e4e4e4;
  border-radius: 20px;
}
 
/* Single Card */
.premium-card {
  flex: 0 0 auto;
  width: 200px;
  background: white;
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: 0.3s ease;
}
 
.premium-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
}
 
.premium-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}
 
.premium-card .desc {
  font-size: 14px;
  color: #888;
  margin-bottom: 15px;
}
 
.premium-card .info {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 20px;
  color: #555;
}
 
/* Button */
.apply-btn {
  background-color: #4f46e5;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}
 
.apply-btn:hover {
  color: #fff;
  background: linear-gradient(90deg,rgba(65, 75, 210, 1) 0%, rgba(9, 9, 121, 1) 45%, rgba(0, 212, 255, 1) 100%);
}
 
.scroll-container-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
 
.premium-job-cards {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 15px;
  scrollbar-width: none; /* Firefox */
}
 
.premium-job-cards::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}
 
.premium-card {
  flex: 0 0 auto;
  min-width: 250px;
  max-width: 250px;
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
}
 
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #5a4fff, #3a2cff);
  color: white;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: 0.3s ease;
}
 
.scroll-btn:hover {
  background: linear-gradient(135deg, #3a2cff, #5a4fff);
  transform: translateY(-50%) scale(1.1);
}
 
.left-btn {
  left: -25px;
}
 
.right-btn {
  right: -25px;
}
 
 
.company-logo {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  object-fit: contain;
}
 
 
 
 
 
 
 
 
 
 
 
 
/****************************************************/
.how-it-works-section {
  padding: 60px 30px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}
 
.how-title {
  font-size: 40px;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
}
 
.how-subtitle {
  font-size: 22px;
  color: #555;
  margin-bottom: 40px;
}
 
.how-cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
 
.how-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  width: calc(25% - 15px); /* 4 cards in one line */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
}
 
.how-image {
  width: 150px;
  height: 150px;
  margin-bottom: 15px;
  object-fit: contain;
}
 
.card-title {
  font-size: 25px;
  font-weight: bold;
  color: #000;
  padding-bottom: 20px;
}
 
.card-text {
  font-size: 18px;
  color: #444;
  padding-bottom: 30px;
}
 
/* Responsive behavior */
@media (max-width: 1200px) {
  .how-card {
    width: calc(33.333% - 15px); /* 3 cards per row */
  }
}
 
@media (max-width: 900px) {
  .how-card {
    width: calc(50% - 15px); /* 2 cards per row */
  }
 
  .how-title {
    font-size: 32px;
  }
 
  .how-subtitle {
    font-size: 20px;
  }
 
  .card-title {
    font-size: 22px;
  }
 
  .card-text {
    font-size: 16px;
  }
 
  .how-image {
    width: 120px;
    height: 120px;
  }
}
 
@media (max-width: 600px) {
  .how-card {
    width: 100%; /* 1 card per row */
  }
 
  .how-title {
    font-size: 28px;
  }
 
  .how-subtitle {
    font-size: 18px;
  }
 
  .card-title {
    font-size: 20px;
  }
 
  .card-text {
    font-size: 15px;
  }
 
  .how-image {
    width: 100px;
    height: 100px;
  }
 
  .how-it-works-section {
    padding: 40px 15px;
  }
}
 
/************************************/
 
.contact-banner {
  position: relative;
  background-image: url('/images/about-footer.jpg'); /* Replace with your actual image path */
  background-size: cover;
  background-position: center;
  height: 250px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px 60px ;
  margin-left: 60px;
  overflow: hidden;
}
 
.overlay-text {
  text-align: center;
  color: white;
}
 
.overlay-text h2 {
  font-size: 50px;
  font-weight: 600;
  margin: 0;
}
 
.overlay-text p  {
  font-size: 24px;
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}
 
.overlay-text p :hover {
  color: #ddd;
}
 
 
 
  .contact-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Adjust darkness (0.5 = 50% dark) */
  z-index: 2;
  border-radius: 16px;
}
 
.contact-banner > * {
  position: relative;
  z-index: 3; /* Ensure child content appears above dark overlay */
  color: #fff; /* Make text readable on dark background */
}
 
@media (max-width: 1024px) {
  .contact-banner {
    margin: 40px 30px;
    height: 220px;
  }
 
  .overlay-text h2 {
    font-size: 38px;
  }
 
  .overlay-text p {
    font-size: 20px;
  }
}
 
@media (max-width: 768px) {
  .contact-banner {
    margin: 30px 20px;
    height: 200px;
    border-radius: 12px;
    padding: 0 15px;
  }
 
  .overlay-text h2 {
    font-size: 32px;
  }
 
  .overlay-text p {
    font-size: 18px;
  }
}
 
@media (max-width: 480px) {
  .contact-banner {
    margin: 20px 15px;
    height: 180px;
    flex-direction: column;
    padding: 10px;
    text-align: center;
  }
 
  .overlay-text h2 {
    font-size: 26px;
  }
 
  .overlay-text p {
    font-size: 16px;
  }
}
 
 
 
 
 
 
 
 
 
/***********footer**********************************/
.footer {
  background-color: #000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 40px 60px;
  font-size: 18px;
}
 
.newsletter {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 23px;
}
 
.newsletter h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}
 
.newsletter p {
  color: #8f90a6;
}
 
.newsletter-form {
  display: flex;
  max-width: 450px;
  width: 450px;
}
 
.newsletter-form input {
  padding: 16px 16px;
  border: none;
  border-radius: 8px 0 0 8px;
  font-size: 17px;
  width: 100%;
  outline: none;
}
 
.newsletter-form button {
  padding: 14px 20px;
  border: none;
  background-color: #fcee0a;
  border-radius: 0 8px 8px 0;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}
 
.footer-social-icons {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-left: auto;
}
 
.footer-social-icons i {
  font-size: 22px;
  color: #fff;
  background: #1a1a1a;
  padding: 10px;
  border-radius: 6px;
}
 
.footer hr {
  margin: 30px 0;
  border-color: #2a2a2a;
}
 
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
 
.footer-brand img {
  width: 120px;
  height: 100px;
  margin-bottom: 10px;
}
 
.footer-brand h3 {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 10px;
}
 
.footer-brand p {
  color: #cfcfcf;
}
 
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
 
.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  color: #8f90a6;
  margin-bottom: 10px;
}
 
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
 
.footer-col ul li {
  margin-bottom: 8px;
  color: #fff;
  display: flex;
  align-items: center;
}
 
.badges {
  font-size: 10px;
  background: #e6e6e6;
  color: #000;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 12px;
  margin-left: 8px;
}
 
.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #222;
  font-size: 15px;
  color: white;
}
 
@media (max-width: 768px) {
  .newsletter, .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
 
  .footer-social-icons {
    justify-content: center;
    margin-top: 10px;
  }
 
  .newsletter-form {
    width: 100%;
  }
 
  .footer-columns {
    flex-direction: column;
    gap: 30px;
  }
}
 
 
 
/* Full-screen overlay */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff; /* page background while loading */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
 
/* Loader container */
.square-loader {
  display: flex;
  gap: 10px;
}
 
.square-loader div {
  width: 30px;
  height: 60px;
  background-color: #0d6efd; /* blue squares */
  animation: squareAnim 1.2s infinite ease-in-out;
}
 
/* Staggered animation for each square */
.square-loader div:nth-child(1) { animation-delay: 0s; }
.square-loader div:nth-child(2) { animation-delay: 0.2s; }
.square-loader div:nth-child(3) { animation-delay: 0.4s; }
square-loader div:nth-child(4) { animation-delay: 0.6s; }
 
/* Keyframes: scale up and down */
@keyframes squareAnim {
  0%, 100% { transform: scale(0); opacity: 0.3; }
  50% { transform: scale(1); opacity: 1; }
}
 
 
 
 
   /* Critical fix: Ensures visibility of typed text and prevents stacking */
    .search-wrapper input, 
    .search-wrapper select,
    .search-wrapper option {
        color: #000000 !important;
        -webkit-text-fill-color: #000000 !important; /* Fix for some mobile browsers */
    }
 
    .search-wrapper input::placeholder {
        color: #6c757d !important;
        font-size: 0.75rem;
    }
 
    /* Remove the default arrow on some browsers to save space on mobile */
    @media (max-width: 576px) {
        .search-wrapper .form-select {
            background-image: none !important;
            padding-right: 5px !important;
            text-align: center;
        }
    }
 
    /* ========== FIX FOR PREMIUM CARDS ========== */
 
/* Desktop view fixes */
@media (min-width: 769px) {
  .premium-card {
    width: 280px !important;
    min-width: 280px !important;
    max-width: 280px !important;
    height: 350px !important;
    padding: 25px 20px !important;
  }
 
  .premium-card h3 {
    font-size: 20px !important;
    line-height: 1.3 !important;
    height: 50px !important;
    overflow: hidden !important;
  }
 
  .premium-card .desc {
    font-size: 14px !important;
    line-height: 1.4 !important;
    height: 60px !important;
    overflow: hidden !important;
    margin-bottom: 15px !important;
  }
 
  .premium-card .info {
    font-size: 14px !important;
    margin-bottom: 20px !important;
  }
 
  .premium-card .info span {
    max-width: 45% !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
}
 
/* Mobile view fixes (keep your existing mobile styles, add these if needed) */
@media (max-width: 768px) {
  .premium-card {
    width: 100% !important;
    min-width: 100% !important;
    flex: 0 0 100% !important;
  }
}         
 
/* ================= PROMOTED JOB CARD – HARD FIX ================= */
 
/* 1️⃣ SAME CARD SIZE */
.promoted-card {
  width: 260px !important;
  height: 460px !important;
  display: inline-flex !important;
  flex-direction: column !important;
  position: relative !important;
}
 
/* 2️⃣ KEEP BODY FLEXIBLE */
.promoted-card > div:last-child {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}
 
/* 3️⃣ PUSH BUTTON TO BOTTOM */
.promoted-card a {
  margin-top: auto !important;
}
 
/* 4️⃣ FORCE BADGE TO TOP-RIGHT (INLINE STYLE OVERRIDE) */
.promoted-card > div[style*="position:absolute"] {
  top: 10px !important;
  right: 10px !important;
  left: auto !important;
  bottom: auto !important;
  z-index: 20 !important;
}
 
/* ================= MOBILE ONLY ================= */
@media (max-width: 768px) {
  .promoted-card {
    width: 85vw !important;
    max-width: 300px !important;
    height: 430px !important;
  }
}
