/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/
Description: Child theme for Hello Elementor
Author: Your Name
Author URI: https://placementps.com
Template: hello-elementor
Version: 1.0
Text Domain: hello-elementor-child
*/




.pps-filter-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.pps-filter-header p {
    color: #666;
    margin-bottom: 30px;
}

.pps-course-filters {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

#menu-main-menu > li:last-child {
    background: #1fe2b1;
    border-radius: 7px;
    color:#ffffff;
}


/*#menu-main-menu > li:last-child:hover a , #menu-main-menu > li:last-child:active a{*/
/*    color:#ffffff;*/
/*}*/




.pps-filter-btn {
    padding: 10px 20px;
    border-radius: 6px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
	color: #000;
}

.pps-filter-btn.active,
.pps-filter-btn:hover {
    background: #20e3b2;
    color: #fff;
    border-color: #20e3b2;
}

/*.pps-course-grid {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));*/
/*    gap: 25px;*/
/*}*/

.pps-course-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.pps-course-card:hover {
    transform: translateY(-6px);
}

.pps-course-thumb img {
    width: 100%;
    height: 230px !important;
    object-fit: cover;
}

.pps-course-content {
    padding: 20px;
    text-align: left;
}

.pps-course-date {
       font-size: 10px;
    display: inline-block;
    margin-bottom: 8px;
    border: 1px solid #20e3b2;
    padding: 5px 10px;
    background-color: #20e3b2;
    color: #fff;
    border-radius: 10px;
}

.pps-course-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
	color: #000;
}

.pps-read-more {
    color: #20e3b2;
    font-weight: 600;
}


/* register form css */


/* ===== Tutor Registration Main Layout ===== */
.main_section_student_register {
    display: flex;
    min-height: 80vh;
    background: #f6f8fb;
    justify-content: space-between;
}

/* ===== Left Image Section ===== */
.left_img_section {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.left_img_section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Optional overlay for professional look */
.left_img_section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom right,
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.15)
    );
}

/* ===== Right Registration Form ===== */
#tutor-registration-wrap {
    max-width: 100%;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 30px;
    margin:0;
}

/* Card Style */
#tutor-registration-form {
    width: 100%;
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

/* ===== Inputs ===== */
#tutor-registration-form input[type="text"],
#tutor-registration-form input[type="password"] {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid #e3e6ea;
    font-size: 14px;
    transition: all 0.25s ease;
}

#tutor-registration-form input:focus {
    border-color: #1fe2b1;
    box-shadow: 0 0 0 3px rgba(255,120,0,0.15);
    outline: none;
}

/* ===== Labels ===== */
#tutor-registration-form label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    display: block;
}

/* ===== Button ===== */
#tutor-registration-form .tutor-btn-primary {
    background: #1fe2b1;
    border-radius: 10px;
    height: 40px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    color:#fff;
    transition: all 0.3s ease;
}

/* ===== Password Strength ===== */
.tutor-password-strength-hint {
    margin-top: 8px;
}


.left_img_section {
    position: relative;
    overflow: hidden;
}

.left_img_section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.left_img_section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65); 
    pointer-events: none;
}

.tutor-lms .page-content h2{
    text-align:center;
}





/* ===== Mobile Responsive ===== */
@media (max-width: 992px) {
    .main_section_student_register {
        flex-direction: column;
    }

    .left_img_section {
        width: 100%;
        height: 220px;
    }

    #tutor-registration-wrap {
        width: 100%;
        padding: 30px 20px;
    }

    #tutor-registration-form {
        padding: 30px 25px;
    }

    .left_img_section{
        display:none;
    }
}


/* Login Form Css */

/* ===== MAIN LOGIN LAYOUT ===== */
.main_login_section_student {
    display: flex;
    min-height: 70vh;
    background: #f6f8fb;
}

/* ===== LEFT IMAGE SECTION ===== */
.login-image-section {
    position: relative;
    width:50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 60px;
}

.login-image-section img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.login-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

/* Content on image */
.login-image-content {
    position: relative;
    color: #fff;
    max-width: 420px;
    z-index: 2;
    background-color: #000;
    padding: 30px;
    opacity: 0.7;
}

.login-image-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.login-image-content p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 25px;
}

.login-image-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.login-image-content ul li {
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== RIGHT LOGIN FORM ===== */
.tutor-page-wrap {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tutor-login-wrap {
    width: 100%;
    padding: 30px 30px;
}

/* Card */
.tutor-login-form-wrapper {
    width: 100%;
    max-width: 480px;
    background: #ffffff;
    padding: 45px 40px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* Heading */
.tutor-login-form-wrapper .tutor-fs-5 {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
}

/* Inputs */
#tutor-login-form .tutor-form-control {
    height: 50px;
    border-radius: 10px;
    border: 1px solid #e2e6ea;
    padding: 0 15px;
}

#tutor-login-form .tutor-form-control:focus {
    border-color: #1FE2B1;
    box-shadow: 0 0 0 3px rgba(255,120,0,0.15);
    outline: none;
}

/* Button */
#tutor-login-form .tutor-btn-primary {
    background: #1FE2B1;
    height: 45px;
    border-radius: 10px;
    font-weight: 600;
    color: #fff;
    width: 125px;
    border: 1px solid #1FE2B1;
}



/* Links */
#tutor-login-form .tutor-btn-ghost,
#tutor-login-form .tutor-btn-link {
    color: #1FE2B1;
}


/* ===============================
   RESET / FORGOT PASSWORD FORM
================================ */

.tutor-ResetPassword {
    max-width: 560px;
    margin: 0 auto;
    background: #ffffff;
    padding: 45px 40px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Description text */
.tutor-ResetPassword p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
}

/* Labels */
.tutor-ResetPassword label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    display: block;
}

/* Input */
.tutor-ResetPassword input[type="text"] {
    width: 100%;
    height: 50px;
    border-radius: 10px;
    border: 1px solid #e2e6ea;
    padding: 0 15px;
    font-size: 14px;
    transition: all 0.25s ease;
}

.tutor-ResetPassword input[type="text"]:focus {
    border-color: #1fe2b1;
    box-shadow: 0 0 0 3px rgba(255,120,0,0.15);
    outline: none;
}

/* Button */
.tutor-ResetPassword .tutor-btn-primary {
    width: 100%;
    height: 52px;
    background: #1fe2b1;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    color:#fff;
}

.tutor-ResetPassword .tutor-btn-primary:hover {
    background: #1fe2b1;
    transform: translateY(-1px);
}

/* Spacing fix */
.tutor-ResetPassword .tutor-form-group {
    margin-bottom: 20px;
}

/* ===== Optional Title ===== */
.reset-password-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}



/* ===== Responsive ===== */
@media (max-width: 768px) {
    .tutor-ResetPassword {
        padding: 30px 25px;
    }
}


/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .main_login_section_student {
        flex-direction: column;
    }

    .login-image-section {
        width: 100%;
        min-height: 260px;
        padding: 40px 30px;
    }

    .tutor-page-wrap {
        width: 100%;
    }

    .tutor-login-wrap {
        padding: 40px 20px;
    }
}



/* Hire Form Css */



.fita-form .row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.fita-form .col-6 {
  width: 50%;
}

.fita-form .col-12 {
  width: 100%;
}

.fita-form input,
.fita-form select,
.fita-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #dcdcdc;
  font-size: 15px;
  outline: none;
}

.fita-form input:focus,
.fita-form select:focus,
.fita-form textarea:focus {
  border-color: #0d47a1;
}

.fita-form textarea {
  min-height: 120px;
  resize: vertical;
}

.fita-form .submit-btn {
    background: #1fe2b1;
    color: #ffffff;
    padding: 10px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid #fff;
    width: 120px;
}


.fita-form textarea {
  min-height:42px;   /* pehle 120px tha */
  height: 42px;       /* fixed height */
  resize: none;       /* user resize nahi kar payega */
  padding:10px 20px
  
}




.pm-points{
   padding: 0;
}

.pm-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT */
.pm-left {
  max-width: 600px;
}

.pm-left h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.pm-desc {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.pm-points {
  list-style: none;
  margin-bottom: 20px;
}

.pm-points li {
  margin-bottom: 10px;
  font-size: 16px;
}

.pm-ratings {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  font-weight: bold;
}

.pm-buttons {
  display: flex;
  gap: 15px;
}

.btn-primary {
  background: #7b3fe4;
  color: white;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
}

.btn-secondary {
  border: 2px solid #333;
  color: #333;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
}

/* RIGHT */
.pm-right {
  position: relative;
}

.pm-right img {
  width: 320px;
  border-radius: 12px;
}

/* BADGES */
.badge {
  position: absolute;
  background: white;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.badge-top {
  top: 20px;
  left: -40px;
}

.badge-bottom {
  bottom: 20px;
  right: -30px;
}


.post-type-archive-courses .tutor-meta.tutor-mt-auto,.tax-course-category .tutor-meta.tutor-mt-auto{
    display:none;
}





/* FAQ SECTION */
.faq-section {
  margin-top:30px;
  margin-bottom:30px;
  padding: 0 20px;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 32px;
}

.faq-item {
  border: 1px solid #ddd;
  margin-bottom: 15px;
  border-radius: 6px;
  overflow: hidden;
}

.faq-item input {
  display: none;
}

.faq-item label {
  display: block;
  padding: 15px;
  background: #f7f7f7;
  cursor: pointer;
  font-weight: bold;
  position: relative;
}

.faq-item label::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
}

.faq-item input:checked + label::after {
  content: "-";
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  background: #fff;
  transition: max-height 0.3s ease;
}

.faq-item input:checked ~ .faq-content {
  max-height: 200px;
  padding: 15px !important;
}

.tutor-mb-20{
    margin:0px !important;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, #7b3fe4, #5f2bd6);
  color: white;
  text-align: center;
  padding: 70px 20px;
}

.cta-section h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 30px;
  background: white;
  color: #5f2bd6;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #eee;
}


.tax-course-category .course-archive-page{
    margin-top: 50px;
    margin-bottom: 50px;
}


/* help form design */

.ticket-form {
  max-width: 1100px;
}

.ticket-form .row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.ticket-form .col {
  flex: 1;
}

.ticket-form .col-full {
  width: 100%;
}

.ticket-form input,
.ticket-form select,
.ticket-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #b9c2d0;
  border-radius: 6px;
  font-size: 14px;
}

.ticket-form textarea {
  min-height: 140px;
}

.ticket-form input[type="file"] {
  padding: 8px;
}

.ticket-form .checkbox {
  font-size: 14px;
}

.ticket-form .checkbox a {
  color: #6a3df0;
  text-decoration: none;
}

.ticket-form input[type="submit"] {
 background: linear-gradient(90deg, #1FE2B1, #129675);
  color: #fff;
  border: none;
  padding: 14px 30px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}

.ticket-form input[type="submit"]:hover {
  opacity: 0.9;
}

.ticket-form .col-full input{
    background-color: #fff;
}




/* Upload Resume Form - Placement Point Solutions */

.pps-resume-form {
  max-width: 900px;
}

.pps-row {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}

.pps-col {
  flex: 1;
}

.pps-col-full {
  width: 100%;
}

.pps-resume-form input,
.pps-resume-form select {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #bfc7d1;
  border-radius: 6px;
}

.pps-resume-form input[type="file"] {
  padding: 10px;
}

.pps-resume-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
}

.pps-resume-form .checkbox {
  font-size: 14px;
}

.pps-resume-form .checkbox a {
  color: #6a3df0;
  text-decoration: none;
}

.pps-resume-form input[type="submit"] {
    background: linear-gradient(90deg, #1d1c20, #0c8163);
    color: #ffffff;
    border: none;
    padding: 10px 36px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    width: initial;
}

.pps-resume-form input[type="submit"]:hover {
  opacity: 0.9;
}


/* ===== FILE UPLOAD FIELD DESIGN ===== */

.pps-resume-form input[type="file"] {
  width: 100%;
  padding: 6px;
  border: 1px dashed #c6cbd4;
  border-radius: 6px;
  background: #f8f9fb;
  cursor: pointer;
}

.pps-resume-form input[type="file"]::-webkit-file-upload-button {
  background: #6a3df0;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.pps-resume-form input[type="file"]::file-selector-button {
  background: #1FE2B1;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.pps-resume-form input[type="file"]:hover::file-selector-button {
  opacity: 0.9;
}

/* ===== CHECKBOX DESIGN ===== */

.pps-resume-form .checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.pps-resume-form input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #6a3df0;
  cursor: pointer;
  margin-top: 3px;
}

.pps-resume-form .checkbox a {
  color: #6a3df0;
  font-weight: 500;
  text-decoration: none;
}

.pps-resume-form .checkbox a:hover {
  text-decoration: underline;
}



/* ===== CONSULTANT FORM CARD ===== */

.pps-consultant-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 22px;
  box-shadow: 0 0 0 10px #e9fff4, 0 20px 40px rgba(0,0,0,0.08);
  font-family: Arial, Helvetica, sans-serif;
}

.pps-consultant-card h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  color: #111;
}

.pps-consultant-card h2 span {
  color: #10b981;
}

.pps-consultant-card .subtitle {
  margin: 6px 0 20px;
  color: #64748b;
  font-size: 14px;
}

/* ===== INPUT FIELDS ===== */

.pps-field {
  margin-bottom: 14px;
}

.pps-field input,
.pps-field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1.5px solid #cbd5e1;
  font-size: 14px;
}

.pps-field input:focus,
.pps-field select:focus {
  outline: none;
  border-color: #10b981;
}

/* ===== CHECKBOX ===== */

.pps-checkbox {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: #334155;
  margin: 18px 0;
}

.pps-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #10b981;
  margin-top: 3px;
}

.pps-checkbox a {
  color: #111;
  font-weight: 600;
  text-decoration: underline;
}

/* ===== SUBMIT BUTTON ===== */

.pps-submit input[type="submit"] {
  width: 100%;
  background: linear-gradient(90deg, #1fe2b1, #50b6a8);
  color: #ffffff;
  border: none;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 14px;
  cursor: pointer;
}

.pps-submit input[type="submit"]:hover {
  opacity: 0.9;
}

/* ===== COURSE BUTTON ===== */

.pps-course-btn {
  margin-top: 22px;
  text-align: center;
  padding: 16px;
  border: 2px solid #10b981;
  border-radius: 18px;
  font-weight: 600;
  color: #111;
}


.wpcf7-acceptance label{
    display:flex;
    align-items: center;
    gap: 6px;
}


/* ===== MOBILE ===== */
@media (max-width: 480px) {
  .pps-consultant-card {
    padding: 24px;
  }
}






/*my code start */

.course-category {
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

/* Styling for the contact-container */
.course-category .contact-container {

  width: 100%;
    line-height: 0;
    position: relative;
}

.course-category .contact-container h1 {
    font-size: 58px;
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    margin: 0;
    justify-content: center;
    background-color:#0000008c;
}

.course-category .contact-container img {
    width: 100%;
    height: auto;
    height:60vh;
        object-fit: cover;
}



.single-post .contact-container h1{
    font-size:36px;
}





.tutor-screen-frontend-dashboard .tutor-mb-20 input{
  margin-bottom: 20px;
}


.write-course-review-link-btn{
    margin-top:10px;
}


.fita-form input[type="submit"]:hover,.fita-form input[type="submit"]:active,.fita-form input[type="submit"]:focus {
    background-color: #1fe2b1;
    border: 1px solid #fff;
}


.pps-resume-form input::placeholder{
    color: #000;
}


.tutor-course-list .tutor-course-card .list-item-button a{
    padding: 8px 10px;
}



/* loader css */
/*
#site-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1FE2B1; 
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
}



body.loading {
  overflow: hidden;
}


.loader-content {
  text-align: center;
  color: #fff;
}

.loader-content h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.loader-content span {
  font-size: 14px;
  letter-spacing: 2px;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0% { opacity: 0.2; }
  50% { opacity: 1; }
  100% { opacity: 0.2; }
}
*/




/* course faq */

.tutor-course-faq {
    margin-top: 20px;
}

.tutor-course-faq .faq-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 10px 15px;
}

.tutor-course-faq .faq-question {
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    position: relative;
}

.tutor-course-faq .faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 30px;
}

.tutor-course-faq .faq-item.active .faq-question::after {
    content: "-";
}

.tutor-course-faq .faq-answer {
    display: none;
    margin-top: 10px;
    color: #555;
}



/* course page css */




.pps-course-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.pps-filter-btn {
    padding: 10px 20px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    border-radius: 6px;
}

.pps-filter-btn.active {
    background: #1fe2b1;
    color: #fff;
    border-color: #1fe2b1;
}

.pps-course-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


.pps-course-card {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.pps-course-card:hover {
    transform: translateY(-5px);
}




.pps-loader-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

/* Spinner */
.pps-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #e5e5e5;
    border-top: 4px solid #1fe2b1;
    border-radius: 50%;
    animation: pps-spin 1s linear infinite;
}

@keyframes pps-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.call_back_button a,.call_back_button a:hover{
    color:#fff;
}

.call_back_button{
    margin-top: 20px;
    margin-bottom:20px;
}



#tutor-course-details-tab-info .tutor-mt-40{
    overflow: hidden !important;
}



.cta-section {
    background: #1fe2b1;
    border-bottom: 1px solid #fff;
    border-radius: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}


.cta-btn {

    color: #1fe2b1 !important;
    margin-bottom: 15px;
    margin-right: 10px;
}



/* student review section */


.student-reviews {
  padding: 60px 0;
  background: #f8fafc;
}

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

.student-reviews .section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
}

.student-reviews .section-subtitle {
  text-align: center;
  margin-bottom: 40px;
  color: #64748b;
}

.student-reviews .review-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  margin: 15px;
}

.student-reviews .video-box video {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}

.student-reviews .review-content {
  padding: 20px;
}

.student-reviews .review-text {
  font-size: 16px;
  color: #334155;
  margin-bottom: 15px;
}

.student-reviews .student-name {
  font-size: 18px;
  font-weight: 600;
}

.student-reviews .student-role {
  font-size: 14px;
  color: #0ea5e9;
}


.video_review_grid_section{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;

}






/* Responsive */
@media (max-width: 992px) {
  .blog-wrapper {
    flex-direction: column;
  }

  .blog-sidebar,
  .blog-content {
    flex: 0 0 100%;
  }
  

  
}







/* RESPONSIVE */
@media (max-width: 900px) {
  .pm-container {
    flex-direction: column;
    text-align: center;
  }

  .pm-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .pm-right img {
    width: 260px;
  }
}






/* Mobile Responsive */
@media (max-width: 768px) {
  .fita-form .row {
    flex-direction: column;
  }
  .fita-form .col-6 {
    width: 100%;
  }
  
   .ticket-form .row {
    flex-direction: column;
  }
  
   .pps-row {
    flex-direction: column;
  }
  
  .pm-container .pm-ratings{
      justify-content: center;
  }
  
  #menu-main-menu > li:last-child {
    width: 135px;
    margin-left: 12px;
    margin-top: 10px;
}

  .pps-course-grid {
     grid-template-columns: repeat(1, 1fr);
 }
 
 
.course-category .contact-container img {
    height: 40vh;
}


.video_review_grid_section{
    display: grid;
    grid-template-columns: repeat(1, 1fr);

}

.tutor-course-video-reviews{
    padding: 30px 0;
}


.tutor-course-video-reviews .review-card {
    margin: 0px;
}

  
}





