
    .question-title{
                font-size: 13px;
    font-weight: 500;
    }
.main-pagination .icon-keyboard_arrow_right,
.main-pagination .icon-keyboard_arrow_left{
          font-size: 20px;
    line-height: 32px;
}
.main-pagination span{
     font-size: 20px;
    font-weight: 300;
    display: inline-block;
    line-height: 36px;
    vertical-align: top;
}
.main-pagination button.active{
        background-color: #7be3ff !important;
        border-color: #7be3ff !important;
    color: black;
}
.main-pagination button{
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ccc;
    height: 34px;
    width: 34px;
    padding: 0;
    font-size: 12px;
    border-radius: 4px;
    line-height: 33px;
    margin: 0 2px;
}
  .hero-section {
    background: #f8f9fa;
    padding: 40px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  }

  .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .hero-logo img {
    width: 120px;
    border-radius: 10px;
  }

  .hero-content {
    display: flex;
    flex-wrap: wrap; /* Ensure wrapping on smaller screens */
    align-items: center;
  }

  .hero-image {
    flex: 0 0 40%;
    margin-right: 30px;
    margin-bottom: 20px;
  }

  .hero-image img {
    width: 100%;
    height: auto; /* Ensure image scales proportionally */
    display: block; /* Prevent extra bottom space */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .hero-text {
    flex: 1;
  }

  .hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
  }

  .hero-list {
    list-style: none;
    padding: 0;
  }

  .hero-list li {
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #555;
  }

  .hero-list li .icon {
    margin-right: 10px;
    color: #007bff;
  }

  .hero-list li b {
    font-weight: 600;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .hero-image {
      flex: 0 0 100%; /* Full width on mobile */
      margin-right: 0;
    }

    .hero-title {
      font-size: 2rem;
    }

    .hero-list li {
      font-size: 1rem;
    }
  }

  @media (max-width: 480px) {
    .hero-title {
      font-size: 1.8rem;
    }
  }

.action-buttons {
    display: flex;
    gap: 10px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 100%;
}

.button svg {
    margin-right: 10px;
}

.primary-action {
    background-color: #7be3ff; /* Primary color for listen button */
    color: black;
}

.primary-action:hover {
    background-color: #0056b3;
}

.primary-action svg {
    fill: white; /* Ensure icon is white on blue background */
    width: 22px; /* Slightly larger icon */
    height: 22px;
}

.secondary-action {
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ccc;
}

.secondary-action:hover {
    background-color: #e0e0e0;
    color: #333;
    border-color: #bbb;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .action-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .button {
        width: 100%;
    }
}


.hiring-benefits {
  padding: 50px 0;
  background-color: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.col-lg-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
}

.benefits-content h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #333;
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
    @media screen and (max-width:767px){
        .benefits-list li{
            display: block
        }
    }

.benefit-icon {
  font-size: 1.5em;
  margin-right: 15px;
  color: #007bff;
}
    .benefits-list span{
        width: 30px
    }
.benefits-list strong {
  display: block;
  margin-bottom: 5px;
  color: #333;
}

.btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #0056b3;
}

.benefits-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .benefits-image {
    margin-top: 30px;
  }
}


.modal-content {
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.modal-header {
    border-bottom: 1px solid #eee;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0;
}

.btn-close {
    opacity: 0.7;
    margin-left: auto;
}

.modal-body {
    padding: 25px;
}

.candidate-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.candidate-info {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto auto auto; /* Added row for audio */
    gap: 10px 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    align-items: flex-start;
}

.candidate-avatar {
    grid-row: 1 / 2;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.details h3 {
    grid-row: 1;
    grid-column: 2;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 5px;
}

.details p {
    margin-bottom: 3px;
}

.details p strong.info-label {
    font-weight: bold;
    color: #555;
    margin-right: 5px;
}

.details p:nth-child(3) { /* Role */
    grid-row: 2;
    grid-column: 2;
}

.details p:nth-child(4) { /* Experience */
    grid-row: 3;
    grid-column: 2;
}

.details p:nth-child(5) { /* Domain */
    grid-row: 4;
    grid-column: 2;
}

.candidate-audio-intro {
    grid-row: 2; /* Place audio in the second row, below the name */
    grid-column: 1 / 3; /* Span across both columns */
    margin-top: 10px; /* Adjust top margin as needed */
}

.candidate-audio-intro audio {
    width: 100%;
    max-width: none; /* Ensure it takes full width */
}

.candidate-description {
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    grid-row: 3; /* Move description down */
    grid-column: 1 / 3;
}

.section-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.candidate-description p {
    line-height: 1.6;
    color: #555;
}

.audio-answers {
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    grid-row: 4; /* Move audio answers down */
    grid-column: 1 / 3;
}

.audio-question {
    margin-bottom: 15px;
}

.question-label {
    font-weight: bold;
    color: #333;
    margin-right: 5px;
}

.audio-answers audio {
    width: 100%;
    max-width: 400px;
    margin-top: 5px;
}

.text-answer {
    margin-bottom: 15px;
}

.modal-footer {
    border-top: 1px solid #eee;
    padding: 20px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.modal-footer .btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
}

.btn-primary {
    background-color: #007bff;
    color: white;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #545b62;
}


.how-it-works {
  padding: 40px 0;
  background: linear-gradient(135deg, #e0f7fa, #b2ebf2);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.image-section {
  width: 45%;
  text-align: center;
}

.image-section img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.content-section {
  width: 48%;
}

.content-section h1 {
  color: #2c3e50;
  margin-bottom: 30px;
  font-size: 2.5em;
  font-weight: 600;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
}

.step .icon {
  width: 60px;
  height: 60px;
  margin-right: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #e0f7fa;
  flex-shrink: 0;
}

.step .icon svg {
  width: 35px;
  height: 35px;
  fill: #3498db;
}

.step .text {
  flex-grow: 1;
}

.step .text h2 {
  font-size: 1.4em;
  margin-bottom: 8px;
  color: #333;
  font-weight: 600;
}

.step .text p {
  font-size: 1em;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .image-section, .content-section {
    width: 100%;
    margin-bottom: 30px;
  }
}
.padding-section.wd-partner {
  background-color: #7be3ff;
}

.ai-badge {
  display: inline-block;
  background: linear-gradient(45deg, #FF8C00, #FF5722);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 12px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  line-height: 1;
}

.features-job.style-3.mb1.ai-ready {
  border: 2px solid #FF9800 !important;
}


.fitclass{
position: relative;
    right: 0;
    display: inline-block;
    margin-left: auto;
    background: linear-gradient(135deg, #007bff, #00b4ff);
    color: #fff;
    padding: 0px 8px;
    font-size: 12px;
    border-radius: 15px;
    font-weight: 600;
    letter-spacing: -.2px;
    line-height: 21px;
    margin-bottom: 7px;
}
