/* =============================================================================
   Proctor Page Specific Styles
   ========================================================================== */

/* About Section Paragraph Styling */
.section.container .lead {
    font-size: 1rem;
    line-height: 1.7;
}

.section.container .lead + p {
    margin-top: 1rem;
}

/* Testimonial Card Styles */
.page-proctor .testimonial-card {
  background-color: var(--eduskill-card);
  border: 1px solid var(--eduskill-border);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-proctor .testimonial-card p,
.page-proctor .testimonial-card small {
  color: var(--eduskill-text);
}

.page-proctor .feature-icon {
    font-size: 2.5rem;
    color: var(--eduskill-primary);
    margin: 0 auto 15px auto;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: var(--eduskill-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card p {
  color: rgb(230, 226, 226);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-sound-toggle {
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s;
}

.page-proctor .final-cta-section.bg-light-blue {
  background-color: #f0f8ff;
}


.video-sound-toggle:hover {
  background-color: rgba(0, 0, 0, 0.8);
}