.emg-services-wrapper {
  background: #f8f9fa;
  padding: 40px 20px;
}

.emg-container {
  max-width: 1200px;
  margin: 0 auto;
}

.emg-title {
  text-align: center;
  color: #000;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
}

.emg-card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.emg-card-col {
  flex: 1 1 calc(33.333% - 30px);
  max-width: calc(33.333% - 30px);
}

.emg-card {
  background: #ffffff;
  border-left: 5px solid #163c13;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
  text-align: center;
  padding: 30px 20px;
  height: 95%;
}

.emg-card:hover {
  transform: translateY(-5px);
  border-color: #fdf700;
  box-shadow: #fdf700 0px 4px 10px;
}

.emg-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #163c13;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px auto;
}

.emg-card h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.emg-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Responsive Layout */
@media (max-width: 992px) {
  .emg-card-col {
    flex: 1 1 calc(50% - 30px);
    max-width: calc(50% - 30px);
  }
}

@media (max-width: 768px) {
  .emg-card-col {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .emg-title {
    font-size: 24px;
  }

  .emg-icon-circle {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .emg-card h2 {
    font-size: 16px;
  }

  .emg-card p {
    font-size: 14px;
  }
}
/*-----------why us-------------------*/
.whyus-section {
  background-color: #f0fff0;
  padding: 40px 20px;
}

.whyus-container {
  max-width: 1200px;
  margin: 0 auto;
}

.whyus-title {
  text-align: center;
  color: #000;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
}

.whyus-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.whyus-col {
  flex: 1 1 calc(25% - 30px);
  max-width: calc(25% - 30px);
}

.whyus-card {
  background: #ffffff;
  border: 5px solid #163c13;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
  text-align: center;
  padding: 30px 20px;
  height: 95%;
  width: 280px;
  gap: 20px;
}

.whyus-card:hover {
  transform: translateY(-5px);
  border-color: #fdf700;
  box-shadow: #fdf700 0px 4px 10px;
}

.whyus-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #163c13;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px auto;
}

.whyus-card h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.whyus-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/*------Responsive-------*/
@media (max-width: 992px) {
  .whyus-col {
    flex: 1 1 calc(50% - 30px);
    max-width: calc(50% - 30px);
  }
  .whyus-card {
	width: 280px;
    margin-left: 50px;
  }
}
@media (max-width: 768px) {
  .whyus-col {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .whyus-title {
    font-size: 24px;
  }
  .whyus-card{
	width: 300px;
    margin-left:20px;
  }
  .whyus-icon-circle {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .whyus-card h2 {
    font-size: 16px;
  }

  .whyus-card p {
    font-size: 14px;
  }
}
/*--------how it works--------*/
.how-it-works {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.how-title h2 {
  font-size: 28px;
  color: #163c13;
  font-weight: bold;
  margin-bottom: 40px;
}

.steps {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.step-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: stepAppear 0.5s ease-in-out forwards;
  animation-delay: var(--delay);
  opacity: 0.5;
}

.step-circle {
  width: 70px;
  height: 70px;
  border: 4px solid #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  color: #163c13;
  position: relative;
  animation: animateBorder 1s forwards;
  animation-delay: var(--delay);
  box-sizing: border-box;
  background: #fff;
}

.step-box p {
  color: #000;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
  max-width: 150px;
}

.step-arrow {
  width: 50px;
  height: 4px;
  margin-top:-30px;
  background-color: #ccc;
  position: relative;
  animation: arrowGrow 1s forwards;
  animation-delay: var(--delay);
}

.step-arrow::after {
  content: "";
  position: absolute;
  top: -4px;
  right: -8px;
  border: solid #fff;
  border-width: 6px 0 6px 10px;
  transition: border-color 0.5s;
  animation: arrowTipColor 1s forwards;
  animation-delay: var(--delay);
}
animateBorder animation {
    border-bottom-color: #163c13;
    border-left-color: #163c13;
    border-right-color: #163c13;
    border-top-color: #163c13;
}

@keyframes animateBorder {
  0% {
    border-color: #ccc;
  }
  100% {
    border-color: #163c13;
  }
}

@keyframes arrowGrow {
  0% {
    background-color: #ccc;
  }
  100% {
    background-color: #163c13;
  }
}

@keyframes arrowTipColor {
  0% {
    border-left-color: #ccc;
  }
  100% {
    border-left-color: #163c13;
  }
}

@keyframes stepAppear {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .steps {
    flex-direction: column;
  }

  .step-arrow {
    width: 4px;
    height: 40px;
  }

  .step-arrow::after {
    top: auto;
    left: -4px;
    right: auto;
    bottom: -8px;
    border-width: 10px 6px 0 6px;
    border-color: #ccc transparent transparent transparent;
  }
}
/*----------------faq-------------*/
.faq-section {
  padding: 60px 20px;
  background-color: #fff;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.faq-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  color: #1c1c1c;
}

.pin-icon {
  color: red;
  font-size: 26px;
  vertical-align: middle;
  margin-right: 10px;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 10px;
  background: #fdfdfd;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 18px 20px;
  font-size: 17px;
  font-weight: bold;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f1f1f1;
}

.arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 16px;
  color: #333;
}

.faq-item .arrow::before {
  content: "▶";
}

.faq-item.active .arrow::before {
  content: "▼";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background: #fafafa;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 15px 20px;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .faq-title {
	font-size: 26px;
  }

  .faq-question {
	font-size: 16px;
	padding: 16px 18px;
  }

  .faq-answer {
	font-size: 15px;
  }
}

@media (max-width: 480px) {
  .faq-title {
	font-size: 22px;
  }

  .faq-question {
	font-size: 15px;
	padding: 14px 16px;
  }

  .faq-answer {
	font-size: 14px;
  }
}
/*-------------------testimonial section--------------------*/
.testimonial-section {
  background: #f9f9f9;
  padding: 60px 20px;
  overflow: hidden;
}

.testimonial-header {
  text-align: center;
  margin-bottom: 30px;
}

.testimonial-header h2 {
  font-size: 28px;
  color: #1a1a1a;
}

.testimonial-slider-wrapper {
  overflow: hidden;
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.testimonial-slider {
  display: flex;
  width: max-content;
  animation: slideLeft 30s linear infinite;
}

.testimonial-card {
  flex: 0 0 11%;
  box-sizing: border-box;
  padding: 20px;
  margin: 10px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  min-width: 300px;
}

.testimonial-card p {
  font-size: 15px;
  color: #444;
}

.testimonial-card h4 {
  margin-top: 15px;
  font-size: 16px;
  color: #0a58ca;
}

/* Animation */
@keyframes slideLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-33.33%);
  }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 50%;
  }

  @keyframes slideLeft {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-50%);
    }
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 100%;
  }

  @keyframes slideLeft {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
}

/*----------------filter form-----------------*/
.filter-container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 10px;
  background-color: #e6fff0;
  border-radius: 6px;
  border: 1px solid #cfcfcf;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: flex-start;
}

.filter-item {
  position: relative;
  flex: 1 1 200px;
  min-width: 200px;
}

.filter-toggle {
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 8px 12px;
  width: 100%;
  cursor: pointer;
  border-radius: 4px;
  text-align: left;
  font-weight: 600;
}

.filter-dropdown {
  display: none;
  position: absolute;
  z-index: 99;
  background: #fff;
  border: 1px solid #ccc;
  padding: 10px;
  top: 100%;
  left: 0;
  width: 100%;
  margin-top: 5px;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.filter-item.active .filter-dropdown {
  display: block;
}

.filter-dropdown label {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
}

.filter-dropdown input[type="text"],
.filter-dropdown input[type="range"] {
  width: 100%;
  margin: 5px 0;
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

@media (max-width: 992px) {
  .filter-bar {
    gap: 10px;
  }

  .filter-item {
    flex: 1 1 45%;
  }
}

@media (max-width: 576px) {
  .filter-item {
    flex: 1 1 100%;
  }

  .filter-toggle {
    font-size: 14px;
  }
}
/*------------ job cards-----------------------*/
.job-card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1150px;
  margin: 40px auto;
  padding: 0 20px;
}

.job-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  width: 100%;
  max-width: 31%;
  box-sizing: border-box;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.job-card:hover {
  transform: translateY(-5px);
  border-color: #fdf700;
  box-shadow: #fdf700 0px 4px 10px;
}

.job-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.job-header img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ddd;
}

.job-header h3 {
  margin: 0;
  font-size: 18px;
  color: #179c35;
}

.company {
  margin: 2px 0 0;
  font-size: 14px;
  color: #888;
}

.job-card p {
  margin: 8px 0;
  color: #444;
}

.job-salary {
  background: #f5f8f6;
  border-radius: 6px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  margin: 15px 0;
  font-size: 15px;
}

.view-btn {
  text-decoration: none;
  display: inline-block;
  background-color: #179c35;
  color: #fff;
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.view-btn:hover {
  background-color: #f0f0f0;
}

@media (max-width: 992px) {
  .job-card {
    max-width: 48%;
  }
}

@media (max-width: 600px) {
  .job-card {
    max-width: 100%;
  }
}
/*-------------job search----------*/
.job-search-bar {
  display: flex;
  flex-wrap: wrap;
  background: white;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  gap: 10px;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}

.search-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 200px;
  min-width: 200px;
}

.search-group input,
.search-group select {
  border: none;
  outline: none;
  width: 100%;
  padding: 8px 12px;
  font-size: 16px;
  background: transparent;
  color: #555;
}

.icon {
  color: #888;
  font-size: 18px;
}

.divider {
  width: 1px;
  height: 30px;
  background: #ddd;
  display: none;
}

.search-btn {
  background-color: #218667;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  flex-shrink: 0;
}

.search-btn:hover {
  background-color: #186b53;
}

@media (min-width: 768px) {
  .job-search-bar {
    flex-wrap: nowrap;
  }
  .divider {
    display: block;
  }
}
/*--------------popular seacrch----------------*/
.popular-searches {
  padding: 60px 20px;
  max-width: 1300px;
  margin: auto;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 700;
  color: #163c13;
  margin-bottom: 30px;
}

.search-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.search-card {
  position: relative;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  overflow: hidden;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.search-card:hover {
  border-color: #1c8f64;
  box-shadow: 0 8px 20px rgba(28, 143, 100, 0.15);
  transform: translateY(-4px);
}

.search-card .tag {
  font-size: 13px;
  color: #8d8593;
  margin-bottom: 10px;
  font-weight: 500;
}

.search-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1d1b27;
  z-index: 2;
}

.search-card a {
  font-size: 14px;
  font-weight: 500;
  color: #1d1b27;
  text-decoration: none;
  margin-top: 10px;
  z-index: 2;
}

.search-card img {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 117px;
  width: 120px;
  object-fit: contain;
  z-index: 2;
  transition: transform 0.3s ease;
}

.search-card:hover img {
  transform: scale(1.05);
}

/* Watermark Text */
.search-card .watermark {
  position: absolute;
  top: 45%;
  left: 20px;
  font-size: 42px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.04);
  white-space: nowrap;
  z-index: 1;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .section-title h2 {
    font-size: 32px;
  }

  .search-card .watermark {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .search-cards {
    grid-template-columns: 1fr 1fr;
  }

  .search-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .search-cards {
    grid-template-columns: 1fr;
  }

  .search-card {
    padding: 16px;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .search-card .watermark {
    font-size: 24px;
  }

  .search-card img {
    height: 100px;
  }
}
/*-----------top company-----------------*/
.top-companies {
  padding: 40px 20px;
  background: #f9f6fb;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}

.company-cards-wrapper {
  position: relative;
  overflow-x: auto;
  padding-bottom: 20px;
}
.company-cards-wrapper::-webkit-scrollbar {
  display: none;
}
.company-cards-wrapper {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.company-cards {
  display: flex;
  gap: 20px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0 10px;
}

.new-card {
  flex: 0 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 350px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.new-card:hover {
  transform: translateY(-5px);
}

.new-card img {
  height: 60px;
  width: 120px;
  margin-bottom: 15px;
}

.new-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #121212;
}

.new-card p {
  font-size: 14px;
  color: #444;
  min-height: 48px;
}

.view-link {
  display: inline-block;
  margin-top: 10px;
  color: #067c6e;
  font-weight: 600;
  text-decoration: none;
}

.view-link span {
  margin-left: 5px;
}

.view-all-btn {
  margin-top: 20px;
}

.view-all-btn a {
  display: inline-block;
  padding: 12px 25px;
  border: 1.5px solid #067c6e;
  border-radius: 10px;
  color: #067c6e;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.view-all-btn a:hover {
  background-color: #067c6e;
  color: white;
}
@media (max-width: 1024px) {
  .new-card {
    width: 220px;
    padding: 18px;
  }

  .section-title {
    font-size: 22px;
  }

  .new-card h3 {
    font-size: 15px;
  }

  .new-card p {
    font-size: 13px;
    min-height: 44px;
  }

  .view-all-btn a {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .top-companies {
    padding: 30px 15px;
  }

  .section-title {
    font-size: 20px;
  }

  .company-cards {
    gap: 15px;
    padding: 0 8px;
  }

  .new-card {
    width: 200px;
    padding: 16px;
  }

  .new-card h3 {
    font-size: 14px;
  }

  .new-card p {
    font-size: 12px;
    min-height: 40px;
  }

  .view-all-btn a {
    padding: 10px 18px;
    font-size: 13px;
  }
}

/* Extra Small Devices */
@media (max-width: 480px) {
  .new-card {
    width: 320px;
    padding: 14px;
  }

  .new-card img {
    height: 35px;
  }

  .new-card h3 {
    font-size: 13px;
  }

  .new-card p {
    font-size: 11px;
    min-height: 36px;
  }

  .view-link {
    font-size: 12px;
  }

  .view-all-btn a {
    padding: 8px 15px;
    font-size: 12px;
  }
}
/*--------------job-carousel-section-----------------*/
.job-carousel-section {
  padding: 40px 20px;
  background: #fff;
  text-align: center;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: bold;
  text-align: center;
}

.carousel-wrapper {
  overflow-x: hidden;
  white-space: nowrap;
  margin-bottom: 30px;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
  transition: scroll-left 0.3s ease-in-out;
}

.job-card {
  flex: 0 0 auto;
  width: 23.5%;
  background: #f9f9f9;
  padding: 16px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s;
}

.job-card:hover {
  background: #e0f4ff;
  transform: scale(1.05);
}

.job-card span {
  display: block;
  font-size: 14px;
  color: #777;
  margin-top: 4px;
}

.view-all-btn {
  margin-top: 20px;
}

.view-all-btn a {
  text-align: center;
  text-decoration: none;
  padding: 10px 20px;
  background: #00795f;
  color: #fff;
  border-radius: 25px;
  transition: 0.3s;
}

.view-all-btn a:hover {
  background: #045c45;
}

/* Responsive */
@media (max-width: 1024px) {
  .job-card {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .job-card {
    width: 70%;
  }
}

@media (max-width: 480px) {
  .job-card {
    width: 90%;
  }
}

/*-----testimonial section-----------------*/
.testimonial-section {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 20px;
  background-color: #f4fefb;
}

.testimonial-left {
  flex: 1 1 100%;
  max-width: 100%;
  background-color: #23735e;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.testimonial-left .quote-icon {
  font-size: 48px;
  margin-bottom: 10px;
}

.testimonial-left h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.testimonial-left .ratings {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: 16px;
}

.testimonial-left .ratings span {
  color: gold;
  font-size: 20px;
}

.testimonial-carousel-wrapper {
  flex: 2 1 100%;
  max-width: 100%;
  padding: 40px 20px;
  background-color: #eaf8f5;
}

.testimonial-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.testimonial-card {
  flex: 0 0 auto;
  width: 250px;
  scroll-snap-align: start;
  background-color: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.testimonial-profile img {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 600;
  font-size: 16px;
}

.testimonial-status {
  font-size: 13px;
  background-color: #d2f2e6;
  color: #2c8e6c;
  padding: 2px 8px;
  border-radius: 12px;
  margin-left: 6px;
}

.testimonial-rating {
  font-size: 14px;
  color: gold;
  margin: 5px 0;
}

.testimonial-text {
  font-size: 14px;
  color: #333;
}

@media (min-width: 768px) {
  .testimonial-section {
	flex-wrap: nowrap;
  }

  .testimonial-card {
	  flex: 0 0 auto;
      width:250px;
      margin-left: -3px;
	  scroll-snap-align: start;
	  background-color: white;
	  border-radius: 12px;
	  padding: 20px;
	  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
	  position: relative;
	  transition: transform 0.3s;
  }
  
  .testimonial-left {
	flex: 0 0 30%;
	max-width: 30%;
	text-align: left;
	display: flex;
	flex-direction: column;
	justify-content: center;
  }

  .testimonial-carousel-wrapper {
	flex: 1;
	max-width: 70%;
  }

  .testimonial-carousel {
	overflow-x: hidden;
  }
}
/*-----------partners section-----------------*/
.trusted-by-section {
  padding: 40px 20px;
  background-color: #fff;
  overflow: hidden;
}

.trusted-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.trusted-title {
  font-size: 22px;
  font-weight: 600;
  color: #0a2540;
  margin-bottom: 30px;
  padding: 0 10px;
}

.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-track {
  display: flex;
  width: fit-content;
  animation: scrollLeft 30s linear infinite;
}

.logo-track img {
  width: 180px;
  height: auto;
  margin: 0 30px;
  object-fit: contain;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .logo-track img {
    width: 140px;
    margin: 0 20px;
  }

  .trusted-title {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .logo-track img {
    width: 100px;
    margin: 0 10px;
  }

  .trusted-title {
    font-size: 16px;
  }
}
/*----------header-----------------*/
.custom-header {
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: relative;
  z-index: 999;
}

.custom-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  flex-wrap: wrap;
}

.logo img.logo-img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  padding: 8px 10px;
  font-weight: bold;
}

.auth-buttons {
  display: flex;
  gap: 10px;
}

.login-btn {
  padding: 8px 12px;
  background-color: #2c7be5;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
}

.login-btn.candidate {
  background-color: #4caf50;
}
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  height: 100vh;
  width: 300px;
  background-color: #fff;
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  transition: left 0.3s ease-in-out;
  z-index: 9999;
  padding: 15px;
  overflow-y: auto;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.mobile-logo {
  height: 40px;
}

.close-btn {
  font-size: 26px;
  cursor: pointer;
  border: none;
  background: none;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-links li {
  margin-bottom: 10px;
}

.mobile-nav-links a,
.mobile-dropdown-btn {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 10px 5px;
  display: block;
  cursor: pointer;
}

.mobile-dropdown-menu {
  display: none;
  padding-left: 15px;
}

.mobile-dropdown-menu li {
  margin: 5px 0;
}

.mobile-dropdown-btn.active + .mobile-dropdown-menu {
  display: block;
}

.badge-new {
  background: #f44336;
  color: #fff;
  padding: 2px 6px;
  font-size: 10px;
  border-radius: 5px;
  margin-left: 5px;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .mobile-hide {
    display: none !important;
  }

  .main-nav,
  .auth-buttons {
    display: none !important;
  }
}