@import url(/wp-content/themes/astra-child/assets/fonts/bangers/stylesheet.css);
@import url(/wp-content/themes/astra-child/assets/fonts/montserrat-font/stylesheet.css);
@import url(/wp-content/themes/astra-child/assets/fonts/opensans/stylesheet.css);

.wpcf7-not-valid-tip {
  display: none;
}

/* Blog Listing Grid Styles */
.blog-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 90px 0;
} 

/* Blog Card Styles */
.blog-card {
  background: #ffffff;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid #BDBDBD;
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Blog Card Image */
.blog-card-image {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 35.5%;
}

.blog-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-image a {
  display: block;
  width: 100%;
  height: 100%;
}

/* Blog Card Content */
.blog-card-content {
  padding: 10px 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
} 

/* Blog Card Date */
.blog-card-date {
  font-size: 14px;
  color: #000000;
  margin-bottom: 10px;
  font-weight: 400;
  font-family: 'Open Sans';
}

/* Blog Card Title */
.blog-card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}

.blog-card-title a {
  color: #000000;
  text-decoration: none !important;
  transition: color 0.3s ease;
  font-family: 'Montserrat';
  font-size: 20px;
}

.blog-card-title a:hover {
  color: #0066cc;
}

/* Blog Card Excerpt */
.blog-card-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 15px;
  flex-grow: 1;
  font-family: 'Open Sans';
}

.blog-card-excerpt p {
  margin: 0;
}

/* Blog Card Read More */
.blog-card-readmore {
  margin-top: auto;
}

.blog-card-readmore a {
  font-family: 'Montserrat';
  font-weight: 600;
  font-size: 16px;
  line-height: 30px;
  color: #0660A6;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-card-readmore a:hover {
  color: #0052a3;
  text-decoration: underline;
}

/* Pagination Styles */
.blog-pagination {
  margin: 50px 0;
  text-align: center;
}

.blog-pagination ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-pagination li {
  display: inline-block;
  margin: 0;
}

.blog-pagination a,
.blog-pagination span {
  display: inline-block;
  padding: 10px 15px;
  text-decoration: none;
  color: #333333;
  border-radius: 50%;
  min-width: 40px;
  height: 40px;
  line-height: 20px;
  text-align: center;
  transition: all 0.3s ease;
  font-size: 15px;
  text-decoration: none !important;
}

.blog-pagination a:hover {
  background-color: #f0f0f0;
  color: #0660A6;
}

.blog-pagination .current {
  background-color: #0660A6;
  color: #ffffff;
  font-weight: 600;
}

.blog-pagination .prev,
.blog-pagination .next {
  border-radius: 50%;
  font-size: 18px;
}
a.page-numbers {
  text-decoration: none !important;
  font-family: 'Open Sans';
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #656565;
}



@media (max-width: 1024px) {
  .blog-listing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .banner_title .title {
      font-size: 37px;
      line-height: 43px;
  }
  .single-post-article {
    padding: 0 !important;
    margin-top: 0px !important;
}
}

@media (max-width: 768px) {


  .blog-card-content {
    padding: 18px;
  }

  .blog-card-title {
    font-size: 18px;
  }

  .blog-pagination a,
  .blog-pagination span {
    padding: 8px 12px;
    min-width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

/* Shortcode specific styles (no pagination) */
.blog-listing-shortcode {
  margin-bottom: 0;
}

/* Courses Listing Grid Styles */
.courses-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin: 5px 0;
  row-gap: 30px;
}

/* Course Card Styles */
.course-card {
  background: #ffffff;
  border-radius: 0px;
  overflow: hidden;
  border: 2px solid #BDBDBD;
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

/* Course Card Image */
.course-card-image {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 26% 25%;
}

.course-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}


.course-card-image a {
  display: block;
  width: 100%;
  height: 100%;
}

/* Course Card Content */
.course-card-content {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* Course Card Title */
.course-card-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 15px;
}

.course-card-title a {
  color: #000000;
  text-decoration: none !important;
  transition: color 0.3s ease;
  font-family: 'Montserrat';
}

.course-card-title a:hover {
  color: #0066cc;
}

/* Course Card Description */
.course-card-description {
  font-size: 14px;
  line-height: 1.6;
  color: #333333;
  flex-grow: 1;
  font-family: 'Open Sans';
  margin-bottom: 0 !important;
}
/* Responsive Design for Courses */
.course-card-title a:hover{
  color: #000000;
}

@media (max-width: 1024px) {
  .courses-listing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .courses-listing-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .course-card-content {
    padding: 18px;
  }

  .course-card-title {
    font-size: 18px;
  }
}

/* Course Badge */
.course-badge {
  position: absolute;
  top: 9px;
  left: 9px;
  z-index: 10;
  padding: 2px 14px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); */
}

.course-badge-free {
  background-color: #4A8CC4;
}

.course-badge-paid {
  background-color: #ff6b35;
}

/* =========== Registration Form Styles =========== */
.main_wrapper {
  min-height: 100vh;
  background: url(../images/second-bg.png);
  padding: 40px 20px;
}

.main_login-container {
  max-width: 1305px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  border-radius: 0px;
  padding-left: 15px;
  padding-right: 15px;
  overflow: hidden;
  padding-top: 40px;
  min-height: calc(100vh - 40px);
}

/* Left Panel */
.login_left_panel {
  background: #ffffff10;
  padding: 50px 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;  
}
.login_site_logo img {
  max-width: 136px;
}


.common_login_heading {
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 35px;
  line-height: 43px;
  color: #000000;
  margin-top: 30px;
}

.login_discription {
  font-family: 'Open Sans';
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #000000;
  margin-top: 20px;
}

.registration-side-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.registration-side-image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.registration-side-content {
  text-align: center;
  color: #333;
  z-index: 2;
}

.registration-logo {
  margin-bottom: 40px;
}

.logo-shield {
  background: #0066cc;
  color: #fff;
  padding: 20px 30px;
  border-radius: 8px;
  display: inline-block;
  position: relative;
}

.logo-shield::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 10px solid #cc0000;
}

.logo-text {
  font-weight: 700;
  font-size: 24px;
}

.registration-headline {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2c3e50;
}

.registration-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #34495e;
}

.registration-graphic {
  position: relative;
  margin-top: 40px;
}

.graphic-bubble {
  background: #ffd700;
  padding: 20px 30px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 18px;
  color: #cc0000;
  text-transform: uppercase;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transform: rotate(-5deg);
}

/* Right Panel */
.login_right_panel {
  background-image: url('../images/hero.svg');
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.login_form_title {
  margin-bottom: 30px;
  color: #2c3e50;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-size: 35px;
  line-height: 43px;
  color: #000000;
  text-align: left;
}

.login_form {
  /* max-width: 500px; */
  margin: 50px 0 0;
}

.form-group {
  margin-bottom: 10px;
}
/* form div:nth-last-child(5) {
  margin-bottom: 0 !important;
} */

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.user-role-group {
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
}

.radio-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}
.radio-wrapper input[type="radio"]:before {
  content: '';
  width: 25px;
  height: 25px;
  background: #fdd326;
  border: 1px solid #000000;
  position: absolute;
  border-radius: 50%;
}

.radio-wrapper input[type="radio"] {
  width: 25px;
  position: relative;
  height: 25px;
  cursor: pointer;
  border-color: #000000 !important;
  accent-color: #000000;
}
.radio-wrapper input[type="radio"]:after {
  content: '';
  width: 25px;
  height: 25px;
  background: #FDD326;
  position: absolute;
  border-radius: 50%;
  top: 0px;
  left: 0px;
}
.radio-wrapper input[type="radio"]:after {
  content: '';
  width: 17px;
  height: 17px;
  background: #000000;
  position: absolute;
  border-radius: 50%;
  top: 4px;
  left: 4px;
  opacity: 0;
}
.radio-wrapper input[type="radio"]:checked:after{
  opacity: 1;
} 
.form-group .radio-wrapper label {
  display: block;
  margin-bottom: 0;
  font-weight: 700;
  color: #000000;
  font-size: 20px;
  font-family: 'Montserrat';
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #000000;
  font-size: 20px;
  font-family: 'Montserrat';
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 4px;
  background: #ffffff;
  font-size: 15px;
  color: #333;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.password-wrapper {
  position: relative;
}

.password-wrapper input {
  padding-right: 45px;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 30px;
  height: 30px;
  line-height: 1;
}

.password-toggle:hover {
  color: #333;
}

.password-toggle .eye-icon,
.password-toggle .eye-off-icon {
  display: inline-block;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  /* gap: 10px; */
  margin-bottom: 25px;
  position: relative;
  flex-wrap: wrap;
  margin-top: 8px !important;
}

.checkbox-group input[type="checkbox"] {
  width: 24px;
  height: 24px;
  margin-top: 0;
  position: relative;
  cursor: pointer;
  border-radius: 7px !important;
  border: 0 !important;
  opacity: 0;
  background: none !important;
}
.checkbox-group input[type="checkbox"] + span:before {
  content: '';
  width: 24px;
  height: 24px;
  background: #fdd326;
  top: 7px;
  position: absolute;
  display: inline-block;
  border-radius: 7px;
  border: 1.5px solid #000000;
  left: 0;
}
.checkbox-group input[type="checkbox"]:checked + span:after {
  content: '';
  width: 13px;
  height: 7px;
  background: #fcd022;
  position: absolute;
  top: 13px;
  left: 5px;
  display: inline-block;
  border-radius: 0;
  border: 2px solid #000000;
  border-top: 0;
  border-right: 0;
  rotate: 317deg;
}
.checkbox-group label {
  font-size: 16px;
  color: #2c3e50;
  cursor: pointer;
  line-height: 1.5;
  font-weight: 400;
}
.terms-link {
  color: #0660A6;
  text-decoration: underline;
}
.terms-link:hover {
  color: #0660A6;
}

.form-footer p {
  font-family: 'Open Sans';
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #000000;
  margin-bottom: 0;
}

.blue_btn {
  width: max-content;
  padding: 7px 26px;
  background: #0660A6;
  color: #ffffff;
  border: 5px solid #000000;
  font-size: 51px;
  font-weight: 400;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Bangers';
  transform: skewX(-30deg);
  border-radius: 0;
  transition: 0.5s ease;
  min-width: 322px;
}
.blue_btn:hover {
  border: 5px solid #000000;
  /* background: #000000;
  transform: skewX(0deg);
  transition: 0.5s ease; */
}
/* .blue_btn:hover span{
  transform: skewX(0deg);
} */
.blue_btn span {
  transform: skewX(30deg);
  display: inline-block;
}
.text-center {
  text-align: center;
}
.form-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #2c3e50;
}

.login-link {
  color: #0066cc;
  text-decoration: underline;
  font-weight: 600;
}

.login-link:hover {
  color: #0052a3;
}

.field-error {
  display: none;
  color: #e74c3c;
  font-size: 12px;
  margin-top: 5px;
  width: 100%;
  min-height: 18px;
}

.form-group .error ~ .field-error{
  display: block;
}

/* Show error when it has text content (for file upload fields) */
.field-error:not(:empty) {
  display: block;
}

/* Show error when parent has has-error class (for file upload fields) */
.form-group.has-error .field-error,
.profile-image-group.has-error .field-error,
.document-upload-group.has-error .field-error {
  display: block;
  width: max-content;
}

.login_form .form-group {
  margin-bottom: 25px;
}

.form-messages {
  margin-top: 20px;
  padding: 15px;
  border-radius: 4px;
  display: none;
  font-size: 16px;
  font-family: 'Open Sans';
  border: 1px solid #cdcdcd;
}


.form-messages.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #155724;
  display: block;
}

.form-messages.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #721c24;
  display: block;
}

/* =========== Complete Profile Styles =========== */
/* .complete-profile-wrapper {
  min-height: 100vh;
  background: #f5f5f5;
  padding: 0;
}

.complete-profile-container {
  max-width: 1400px;
  margin: 0 auto;
  background: #ffffff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 100vh;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.complete-profile-left-panel {
  background: linear-gradient(135deg, #4a90a4 0%, #5ba3b8 100%);
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2c3e50;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 30px;
  padding: 8px 15px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.back-button:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #000;
}

.back-icon {
  font-size: 18px;
}

.profile-logo {
  margin-bottom: 40px;
}

.profile-logo img {
  max-width: 200px;
  height: auto;
}

.profile-logo .default-logo .logo-shield {
  background: #0066cc;
  color: #fff;
  padding: 20px 30px;
  border-radius: 8px;
  display: inline-block;
  text-align: center;
}

.profile-logo .logo-tm {
  display: block;
  font-weight: 700;
  font-size: 32px;
  color: #ffffff;
}

.profile-logo .logo-elearning {
  display: block;
  font-size: 18px;
  color: #ff6b35;
  font-weight: 600;
}

.profile-promo-heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2c3e50;
}

.profile-promo-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #34495e;
}

.profile-promo-image {
  margin-top: auto;
  text-align: center;
}

.profile-promo-image img {
  max-width: 100%;
  height: auto;
}

.complete-profile-right-panel {
  background: #ffd700;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
  padding: 40px 50px;
  overflow-y: auto;
}

.complete-profile-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #2c3e50;
}

.complete-profile-form {
  max-width: 100%;
}

.profile-image-group {
  margin-bottom: 30px;
}

.profile-image-upload {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-image-preview {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #0066cc;
  margin-bottom: 15px;
  cursor: pointer;
}

.profile-image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-image-placeholder {
  width: 100%;
  height: 100%;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.upload-icon {
  font-size: 48px;
}

.change-image-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36px;
  height: 36px;
  background: #0066cc;
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  font-size: 18px;
  transition: all 0.3s ease;
}

.change-image-btn:hover {
  background: #0052a3;
  transform: scale(1.1);
}

.chain-icon {
  font-size: 16px;
}

.complete-profile-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.complete-profile-form select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #ffffff;
  font-size: 15px;
  color: #333;
  transition: border-color 0.3s ease;
}

.complete-profile-form select:focus {
  outline: none;
  border-color: #0066cc;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.complete-profile-form select.error {
  border-color: #e74c3c;
}

.complete-profile-form input[type="text"],
.complete-profile-form input[type="email"],
.complete-profile-form input[type="tel"],
.complete-profile-form input[type="date"],
.complete-profile-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #ffffff;
  font-size: 15px;
  color: #333;
  transition: border-color 0.3s ease;
}

.complete-profile-form input[type="text"]:focus,
.complete-profile-form input[type="email"]:focus,
.complete-profile-form input[type="tel"]:focus,
.complete-profile-form input[type="date"]:focus,
.complete-profile-form textarea:focus {
  outline: none;
  border-color: #0066cc;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.complete-profile-form input[type="text"].error,
.complete-profile-form input[type="email"].error,
.complete-profile-form input[type="tel"].error,
.complete-profile-form input[type="date"].error,
.complete-profile-form textarea.error,
.complete-profile-form select.error {
  border-color: #e74c3c;
}

.complete-profile-form input[readonly] {
  background: #f5f5f5;
  cursor: not-allowed;
} */

/* Document Upload Styles */
.document-upload-group {
  margin-top: 30px;
}

.document-upload-area {
  border: 2px dashed #000000;
  border-radius: 0px;
  padding: 20px 30px;
  text-align: center;
  background: #FFF9E2;
  transition: all 0.3s ease;
  position: relative;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.document-upload-area:hover {
  border-color: #0066cc;
  background: #f8f9fa;
}

.document-upload-area.uploading {
  opacity: 0.6;
  cursor: wait;
}

.upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.upload-btn {
  background: none;
  padding: 0;
  /* color: white; */
  /* border: none; */
  /* padding: 12px 24px; */
  /* border-radius: 6px; */
  /* font-weight: 600; */
  /* cursor: pointer; */
  /* transition: background-color 0.3s ease; */
  /* font-size: 1rem; */
}

button.upload-btn:hover {
  background: none;
}

.upload-icon-large {
  font-size: 48px;
  margin-bottom: 15px;
}

.upload-text {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 10px 0;
}

.upload-instruction {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.document-upload-container {
  width: 100%;
}

.document-preview-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.document-preview-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background: #fff;
  min-height: 120px;
}

.document-preview-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.document-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  min-height: 120px;
  background: #f8f9fa;
}

.doc-type-icon {
  font-size: 48px;
  margin-bottom: 10px;
}

.doc-name-preview {
  font-size: 12px;
  color: #333;
  text-align: center;
  word-break: break-word;
  max-width: 100%;
  line-height: 1.3;
}

.remove-doc-btn {
  position: absolute;
  top: 4px;
  right: 3px;
  background: #fff;
  color: rgb(0 0 0 / 90%);
  border: none;
  border-radius: 50%;
  /* width: 20px; */
  /* height: 23px; */
  cursor: pointer;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  z-index: 10;
  padding: 0px 6px;
}

.remove-doc-btn:hover {
  background: #e74c3c;
}

.profile-step {
  margin-bottom: 30px;
}

/* .step-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #2c3e50;
  padding-bottom: 15px;
  border-bottom: 2px solid #e0e0e0;
} */

.profile-progress {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid #e0e0e0;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 15px;
}

.progress-fill {
  height: 100%;
  background: #0066cc;
  transition: width 0.3s ease;
  width: 50%;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #666;
}

.step-indicator {
  padding: 5px 15px;
  border-radius: 20px;
  background: #e0e0e0;
  transition: all 0.3s ease;
}

.step-indicator.active {
  background: #0066cc;
  color: #ffffff;
  font-weight: 600;
}

/* .form-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 30px;
 } */
/*
.btn-next,
.btn-prev,
.btn-submit {
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-next,
.btn-submit {
  background: #0066cc;
  color: #ffffff;
}

.btn-next:hover,
.btn-submit:hover {
  background: #0052a3;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 102, 204, 0.3);
}

.btn-prev {
  background: #e0e0e0;
  color: #333;
}

.btn-prev:hover {
  background: #d0d0d0;
} */
.form-group input, 
.form-group textarea,
.form-group select {
  box-shadow: none !important;
  border-radius: 0 !important;
  border: 1px solid #000000 !important;
  height: auto;
  margin-top: 3px;
  color: #000000 !important;
  font-family: 'Montserrat';
  font-size: 14px !important;
  padding: 17px 15px !important;
}
.form-group select {
  appearance: none;
  background-image: url(../images/arrow-down.png);
  background-size: 17px;
  background-position: center right 15px;
  background-repeat: no-repeat;
}


.form-group input::placeholder, 
.form-group textarea::placeholder,
.form-group select::placeholder{
  color: #000000;
}

/* Responsive Design for Complete Profile */
@media (max-width: 1024px) {
  .complete-profile-container {
    grid-template-columns: 1fr;
  }

  .complete-profile-left-panel {
    min-height: 300px;
    padding: 30px;
  }

  .complete-profile-right-panel {
    padding: 30px;
  }

  .complete-profile-form .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .complete-profile-left-panel,
  .complete-profile-right-panel {
    padding: 20px;
  }

  .complete-profile-title {
    font-size: 24px;
  }

  .profile-promo-heading {
    font-size: 24px;
  }
}

/* Responsive Design */
@media (max-width: 968px) {
  .main_login-container {
    grid-template-columns: 1fr;
  }

  .login_left_panel {
    min-height: 300px;
    padding: 40px 30px;
  }

  .login_right_panel {
    padding: 40px 30px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .main_wrapper,
  .complete-profile-wrapper {
    padding: 20px 10px;
  }

  .login_left_panel,
  .login_right_panel {
    padding: 30px 20px;
  }

  .complete-profile-container {
    padding: 30px 0px;
  }

  .registration-headline {
    font-size: 24px;
  }

  .login_form_title,
  .complete-profile-title {
    font-size: 24px;
  }

  .user-role-group {
    flex-direction: column;
    gap: 15px;
  }
/* 
  .form-actions {
    flex-direction: column;
  } */

  .btn-next,
  .btn-prev,
  .btn-submit {
    width: 100%;
  }
}

/* =========== Consortium Dashboard Styles =========== */
.consortium-dashboard-wrapper {
  min-height: 100vh;
  background: #f5f5f5;
  padding: 40px 20px;
}

.consortium-dashboard-container {
  max-width: 1200px;
  margin: 0 auto;
}

.dashboard-title {
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 30px;
  text-align: center;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.stat-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 20px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.stat-icon {
  font-size: 48px;
  line-height: 1;
}

.stat-content h3 {
  margin: 0 0 10px 0;
  font-size: 16px;
  color: #666;
  font-weight: 500;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #0066cc;
  margin: 0;
}

.dashboard-actions {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.dashboard-actions h2 {
  margin: 0 0 20px 0;
  color: #2c3e50;
  font-size: 24px;
}

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

.action-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  background: #0066cc;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 102, 204, 0.3);
}

.action-btn:hover {
  background: #0052a3;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 102, 204, 0.4);
  color: #ffffff;
}

.btn-icon {
  font-size: 20px;
}

.drivers-list-section {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.drivers-list-section h2 {
  margin: 0 0 25px 0;
  color: #2c3e50;
  font-size: 24px;
}

.no-drivers {
  text-align: center;
  padding: 40px;
  color: #666;
  font-size: 16px;
}

.no-drivers a {
  color: #0066cc;
  text-decoration: underline;
}

.drivers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.driver-card {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.driver-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.driver-info h3 {
  margin: 0 0 5px 0;
  color: #2c3e50;
  font-size: 18px;
}

.driver-email {
  margin: 0 0 15px 0;
  color: #666;
  font-size: 14px;
}

.driver-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}

.driver-stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.stat-label {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-value {
  font-size: 18px;
  font-weight: 600;
  color: #0066cc;
}

.stat-value.complete {
  color: #28a745;
}

.stat-value.incomplete {
  color: #ff6b35;
}

.driver-actions {
  margin-top: 15px;
}

.btn-small {
  display: inline-block;
  padding: 8px 16px;
  background: #0066cc;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-small:hover {
  background: #0052a3;
  color: #ffffff;
}

@media (max-width: 968px) {
  .dashboard-stats {
    grid-template-columns: 1fr;
  }

  .action-buttons {
    flex-direction: column;
  }

  .action-btn {
    width: 100%;
    justify-content: center;
  }

  .drivers-grid {
    grid-template-columns: 1fr;
  }
}

/* =========== Assigned Courses Styles =========== */
.assigned-courses-list {
  margin: 30px 0;
}

.assigned-courses-list h3 {
  margin-bottom: 20px;
  color: #2c3e50;
  font-size: 24px;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.course-item {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.course-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.course-item h4 {
  margin: 0;
  padding: 15px;
}

.course-item h4 a {
  color: #2c3e50;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.course-item h4 a:hover {
  color: #0066cc;
}

.course-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========== Login Page Styles =========== */
/* .login-page-wrapper {
  min-height: 100vh;
  background: #f5f5f5;
  padding: 40px 20px;
}

.login-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.login-left-panel {
  background: linear-gradient(135deg, #4a90a4 0%, #5ba3b8 100%);
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.login-site-logo {
  margin-bottom: 40px;
  text-align: center;
}

.login-site-logo img {
  max-width: 200px;
  height: auto;
}

.default-logo .logo-shield {
  background: #0066cc;
  color: #fff;
  padding: 20px 30px;
  border-radius: 8px;
  display: inline-block;
  position: relative;
  text-align: center;
}

.default-logo .logo-shield::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 10px solid #cc0000;
}

.logo-tm {
  display: block;
  font-weight: 700;
  font-size: 32px;
  color: #ffffff;
}

.logo-elearning {
  display: block;
  font-size: 18px;
  color: #ff6b35;
  font-weight: 600;
}

.login-promo-heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2c3e50;
  text-align: center;
}

.login-promo-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #34495e;
  text-align: center;
}

.login-promo-image {
  margin-top: 20px;
  text-align: center;
}

.login-promo-image img {
  max-width: 100%;
  height: auto;
}

.login-right-panel {
  background: #ffd700;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
  padding: 60px 50px;
}

.login-form-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #2c3e50;
  text-align: center;
}

.login-form {
  max-width: 500px;
  margin: 0 auto;
}

.login-error-message {
  background: #f8d7da;
  color: #721c24;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
  border: 1px solid #f5c6cb;
  text-align: center;
}

.login-success-message {
  background: #d4edda;
  color: #155724;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
  border: 1px solid #c3e6cb;
  text-align: center;
}

.login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.login-options .checkbox-group {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.login-options .checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.login-options .checkbox-group label {
  font-size: 14px;
  color: #2c3e50;
  cursor: pointer;
  margin: 0;
}

.forgot-password-link a {
  color: #0066cc;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.forgot-password-link a:hover {
  text-decoration: underline;
}

.login-submit-btn {
  width: 100%;
  padding: 16px;
  background: #0066cc;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 102, 204, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.login-submit-btn:hover {
  background: #0052a3;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 102, 204, 0.4);
}

.login-submit-btn:active {
  transform: translateY(0);
}

.login-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #2c3e50;
}

.register-link {
  color: #0066cc;
  text-decoration: underline;
  font-weight: 600;
}

.register-link:hover {
  color: #0052a3;
}


@media (max-width: 968px) {
  .login-container {
    grid-template-columns: 1fr;
  }

  .login-left-panel {
    min-height: 300px;
    padding: 40px 30px;
  }

  .login-right-panel {
    padding: 40px 30px;
  }

  .login-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .login-page-wrapper {
    padding: 20px 10px;
  }

  .login-left-panel,
  .login-right-panel {
    padding: 30px 20px;
  }

  .login-promo-heading,
  .login-form-title {
    font-size: 24px;
  }

  .login-promo-description {
    font-size: 14px;
  }
} */

/* =========== Forgot Password Page Styles =========== */

/* .forgot-password-page-wrapper {
  min-height: 100vh;
  background: #f5f5f5;
  padding: 40px 20px;
}

.forgot-password-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.forgot-password-left-panel {
  background: linear-gradient(135deg, #4a90a4 0%, #5ba3b8 100%);
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.forgot-password-site-logo {
  margin-bottom: 40px;
  text-align: center;
}

.forgot-password-site-logo img {
  max-width: 200px;
  height: auto;
}

.forgot-password-promo-heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2c3e50;
  text-align: center;
}

.forgot-password-promo-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #34495e;
  text-align: center;
}

.forgot-password-promo-image {
  margin-top: 20px;
  text-align: center;
}

.forgot-password-promo-image img {
  max-width: 100%;
  height: auto;
}

.forgot-password-right-panel {
  background: #ffd700;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
  padding: 60px 50px;
}

.forgot-password-form-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2c3e50;
  text-align: center;
}

.forgot-password-instruction {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 1.6;
}

.forgot-password-error-message {
  background: #f8d7da;
  color: #721c24;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
  border: 1px solid #f5c6cb;
  text-align: center;
}

.forgot-password-form {
  max-width: 500px;
  margin: 0 auto;
}

.forgot-password-submit-btn {
  width: 100%;
  padding: 16px;
  background: #0066cc;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 102, 204, 0.3);
  transition: all 0.3s ease;
}

.forgot-password-submit-btn:hover {
  background: #0052a3;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 102, 204, 0.4);
}

.forgot-password-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.back-to-login-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2c3e50;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.back-to-login-link:hover {
  color: #0066cc;
}

.arrow-icon {
  font-size: 18px;
}

.success-message-box {
  text-align: center;
  padding: 40px 20px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #28a745;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: bold;
  margin: 0 auto 20px;
}

.success-message-box h2 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 24px;
}

.success-message-box p {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
  font-size: 15px;
}

.back-to-login-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #0066cc;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.back-to-login-btn:hover {
  background: #0052a3;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 102, 204, 0.3);
} */

/* =========== Reset Password Page Styles =========== */
/* .reset-password-page-wrapper {
  min-height: 100vh;
  background: #f5f5f5;
  padding: 40px 20px;
}

.reset-password-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.reset-password-left-panel {
  background: linear-gradient(135deg, #4a90a4 0%, #5ba3b8 100%);
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.reset-password-site-logo {
  margin-bottom: 40px;
  text-align: center;
}

.reset-password-site-logo img {
  max-width: 200px;
  height: auto;
}

.reset-password-promo-heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2c3e50;
  text-align: center;
}

.reset-password-promo-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #34495e;
  text-align: center;
}

.reset-password-promo-image {
  margin-top: 20px;
  text-align: center;
}

.reset-password-promo-image img {
  max-width: 100%;
  height: auto;
}

.reset-password-right-panel {
  background: #ffd700;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
  padding: 60px 50px;
}

.reset-password-form-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2c3e50;
  text-align: center;
}

.reset-password-instruction {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 1.6;
}

.reset-password-error-message {
  background: #f8d7da;
  color: #721c24;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
  border: 1px solid #f5c6cb;
  text-align: center;
}

.reset-password-form {
  max-width: 500px;
  margin: 0 auto;
}

.reset-password-submit-btn {
  width: 100%;
  padding: 16px;
  background: #0066cc;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 102, 204, 0.3);
  transition: all 0.3s ease;
}

.reset-password-submit-btn:hover {
  background: #0052a3;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 102, 204, 0.4);
}

.reset-password-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 968px) {
  .forgot-password-container,
  .reset-password-container {
    grid-template-columns: 1fr;
  }

  .forgot-password-left-panel,
  .reset-password-left-panel {
    min-height: 300px;
    padding: 40px 30px;
  }

  .forgot-password-right-panel,
  .reset-password-right-panel {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .forgot-password-page-wrapper,
  .reset-password-page-wrapper {
    padding: 20px 10px;
  }

  .forgot-password-left-panel,
  .forgot-password-right-panel,
  .reset-password-left-panel,
  .reset-password-right-panel {
    padding: 30px 20px;
  }

  .forgot-password-promo-heading,
  .forgot-password-form-title,
  .reset-password-promo-heading,
  .reset-password-form-title {
    font-size: 24px;
  }

  .forgot-password-promo-description,
  .reset-password-promo-description {
    font-size: 14px;
  }
} */

/* =========== Change Password Page Styles =========== */

/* .change-password-page-wrapper {
  min-height: 100vh;
  background: #f5f5f5;
  padding: 20px;
} */
/* 
.change-password-container {
  max-width: 1400px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 40px);
}
.change-password-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
}

.header-logo img {
  max-height: 50px;
  width: auto;
}

.header-logo .default-logo {
  display: flex;
  flex-direction: column;
}

.header-logo .logo-tm {
  font-size: 28px;
  font-weight: 700;
  color: #0066cc;
  line-height: 1;
}

.header-logo .logo-elearning {
  font-size: 14px;
  color: #ff6b35;
  font-weight: 600;
  margin-top: 2px;
}

.header-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-greeting {
  font-size: 16px;
  color: #2c3e50;
  font-weight: 500;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #0066cc;
  position: relative;
}

.dropdown-arrow {
  color: #666;
  font-size: 12px;
  cursor: pointer;
}

.change-password-content-wrapper {
  display: flex;
  flex: 1;
  min-height: 0;
}
.change-password-sidebar {
  width: 280px;
  background: #ffd700;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
  padding: 30px 20px;
  flex-shrink: 0;
  overflow-y: auto;
}

.change-password-main-content {
  flex: 1;
  padding: 40px 50px;
  background: #ffffff;
  overflow-y: auto;
}

.change-password-title {
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 30px;
}

.change-password-success-message {
  background: #d4edda;
  color: #155724;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 30px;
  border: 1px solid #c3e6cb;
  text-align: center;
}

.change-password-form {
  max-width: 600px;
}

.change-password-form .form-group {
  margin-bottom: 25px;
}

.change-password-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2c3e50;
  font-size: 14px;
}

.change-password-form .password-wrapper {
  position: relative;
}

.change-password-form .password-wrapper input {
  width: 100%;
  padding: 12px 45px 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #ffffff;
  font-size: 15px;
  color: #333;
  transition: border-color 0.3s ease;
}

.change-password-form .password-wrapper input:focus {
  outline: none;
  border-color: #0066cc;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.change-password-form .password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 30px;
  height: 30px;
  line-height: 1;
}

.change-password-form .password-toggle:hover {
  color: #333;
}

.change-password-form .password-toggle .eye-icon,
.change-password-form .password-toggle .eye-off-icon {
  display: inline-block;
}

.change-password-submit-btn {
  width: 100%;
  padding: 16px;
  background: #0066cc;
  color: #ffffff;
  border: 3px solid #000000;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow:
    0 4px 10px rgba(0, 102, 204, 0.3),
    0 0 0 0 #ffd700 inset;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.change-password-submit-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #ffd700;
}

.change-password-submit-btn:hover {
  background: #0052a3;
  transform: translateY(-2px);
  box-shadow:
    0 6px 15px rgba(0, 102, 204, 0.4),
    0 0 0 0 #ffd700 inset;
}

.change-password-submit-btn:active {
  transform: translateY(0);
}

.change-password-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
/
.change-password-footer {
  padding: 20px 30px;
  background: #ffffff;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}

.change-password-footer p {
  margin: 0;
  color: #666;
  font-size: 14px;
} */

@media (max-width: 1024px) {
  .change-password-content-wrapper {
    flex-direction: column;
  }

  .change-password-sidebar {
    width: 100%;
    padding: 20px;
  }

  .change-password-main-content {
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .change-password-page-wrapper {
    padding: 10px;
  }

  .change-password-header {
    padding: 15px 20px;
    flex-wrap: wrap;
  }

  .header-user-info {
    margin-top: 10px;
  }

  .change-password-title {
    font-size: 28px;
  }

  .change-password-main-content {
    padding: 20px 15px;
  }
}

/* =========== My Profile Styles =========== */
/* .my-profile-wrapper {
  min-height: 100vh;
  background: #f5f5f5;
  padding: 40px 20px;
} */

/* .my-profile-container {
  max-width: 1000px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px 50px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
} */

/* .my-profile-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #2c3e50;
}

.my-profile-form {
  max-width: 100%;
}

.my-profile-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.my-profile-form .form-group {
  margin-bottom: 0;
}

.my-profile-form .form-group.full-width {
  grid-column: 1 / -1;
} */
/* 
.my-profile-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2c3e50;
  font-size: 14px;
} */

/* .my-profile-form input[type="text"],
.my-profile-form input[type="email"],
.my-profile-form input[type="tel"],
.my-profile-form select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.3s ease;
  background: #ffffff;
} */

/* .my-profile-form input[type="text"]:focus,
.my-profile-form input[type="email"]:focus,
.my-profile-form input[type="tel"]:focus,
.my-profile-form select:focus {
  outline: none;
  border-color: #0066cc;
} */

/* .my-profile-form input[readonly] {
  background: #f5f5f5;
  cursor: not-allowed;
} */

/* .my-profile-form .field-error {
  display: block;
  color: #e74c3c;
  font-size: 12px;
  margin-top: 5px;
  min-height: 18px;
} */

/* .my-profile-form input.error,
.my-profile-form select.error {
  border-color: #e74c3c;
} */

/* .my-profile-form .form-actions {
  margin-top: 30px;
  text-align: center;
} */

/* .my-profile-form .btn-submit {
  background: #0066cc;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 4px 8px rgba(0, 102, 204, 0.3);
}

.my-profile-form .btn-submit:hover {
  background: #0052a3;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 102, 204, 0.4);
}

.my-profile-form .btn-submit:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
} */

.my-profile-form .form-messages {
  margin-top: 20px;
  padding: 15px;
  border-radius: 4px;
  text-align: center;
  display: none;
}

.my-profile-form .form-messages.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.my-profile-form .form-messages.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Document Upload Styles for My Profile */
.my-profile-form .document-upload-group {
  margin-top: 30px;
  margin-bottom: 30px;
}

.my-profile-form .document-upload-group label {
  margin-bottom: 15px;
}

.my-profile-form .document-upload-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.my-profile-form .document-upload-area {
  border: 2px dashed #ddd;
  border-radius: 4px;
  padding: 20px;
  text-align: center;
  background: #f9f9f9;
}

/* .my-profile-form .upload-btn {
  background: #0066cc;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
} */
/* 
.my-profile-form .upload-btn:hover {
  background: #0052a3;
} */

.my-profile-form .document-preview-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.my-profile-form .document-preview-item {
  position: relative;
  width: 200px;
  height: 150px;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  background: #f9f9f9;
}

.my-profile-form .document-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.my-profile-form .document-preview-item .document-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 10px;
}

.my-profile-form .document-preview-item .doc-type-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.my-profile-form .document-preview-item .doc-name-preview {
  font-size: 12px;
  text-align: center;
  word-break: break-word;
  color: #666;
}

.my-profile-form .remove-doc-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 24px;
  height: 24px;
  background: #e74c3c;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.my-profile-form .remove-doc-btn:hover {
  background: #c0392b;
}

/* =========== User Profile Header Styles =========== */
.user-profile-header {
    background: #ffffff;
    /* border-bottom: 1px solid #e0e0e0; */
    padding: 5px 30px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.user-profile-header-container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}

.user-profile-page-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.user-profile-header-right {
    display: flex;
    align-items: center;
    position: relative;
}
/* 
.user-profile-dropdown {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    cursor: pointer;
    padding: 8px 15px;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.user-profile-dropdown:hover {
    background: #f5f5f5;
}

.user-profile-avatar {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.user-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-profile-avatar-placeholder {
    width: 100%;
    height: 100%;
    background: #0066cc;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
} */

.user-profile-verified {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 16px;
    height: 16px;
    background: #28a745;
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #ffffff;
}

.user-profile-greeting {
    font-weight: 600;
    color: #2c3e50;
}

.user-profile-dropdown-arrow {
    font-size: 10px;
    color: #666;
}

.user-profile-header-right {
    position: relative;
}
.user-profile-menu{
  list-style: none;
  margin: 0;
}
/* .user-profile-dropdown-menu .sub-menu{
  display: none;
} */
.dropdown-menu-toggle{
  content: '';
  background: url(../images/arrow-down.png);
}
.menu-link .avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
/* .user-profile-header .menu-link .avatar:after{
  content: '';
  background: url(../images/check.svg);

} */
.profile_link > .menu-link:after {
  content: '';
  background: url(../images/check.svg);
  width: 33px;
  height: 33px;
  position: absolute;
  left: 40px;
  bottom: -1px;
  z-index: 111;
  display: block !important;
}

.menu-item-type-custom a.menu-link {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #000000;
  position: relative;
 
}

/* .menu-item-type-custom a.menu-link:hover + .sub-menu,
.menu-item-type-custom a.menu-link:focus + .sub-menu{
  display: block;
} */

.user-profile-header .menu-item-type-custom.profile_link > a.menu-link {
  background: url(../images/arrow-down.png) no-repeat center right;
}

.user-profile-header .menu-item-type-custom.profile_link > .menu-link:after{
  display: none;
}
  /* 
  .user-profile-dropdown-menu {
      position: absolute;
      top: 100%;
      right: 0;
      background: #ffffff;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      min-width: 200px;
      margin-top: 10px;
      display: block;
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      z-index: 1000;
  }

  .user-profile-menu {
      list-style: none;
      margin: 0;
      display: block;
  }

  .user-profile-menu li {
      margin: 0;
      display: block;
  }

  .user-profile-menu a {
      display: block;
      padding: 12px 20px;
      color: #2c3e50;
      text-decoration: none;
      transition: background 0.3s ease;
      width: 100%;
      box-sizing: border-box;
  }

  .user-profile-menu a:hover {
      background: #f5f5f5;
  } */

/* =========== User Profile Footer Styles =========== */
.user-profile-footer {
    background: #ffffff;
    padding: 14.5px 30px;
    text-align: center;
    margin-top: auto;
}

.user-profile-footer-container {
    max-width: 1400px;
    margin: 0 auto;
}
.user-profile-copyright {
  margin: 0;
  color: #666;
  font-size: 14px;
  font-family: 'Open Sans';
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  color: #000000;
}

/* Hide default header/footer on user profile flow pages */
body.user-profile-flow .site-header,
body.user-profile-flow .site-footer {
    display: none;
}

.dashboard-menu .sub-menu {
    display: none;
}

.dashboard-menu li.open > .sub-menu {
    display: block;
}
span.upload-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}



/* Responsive Design for My Profile */
@media (max-width: 768px) {
 

  .my-profile-title {
    font-size: 24px;
  }

  .my-profile-form .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .my-profile-form .document-preview-item {
    width: 100%;
    max-width: 200px;
  }
}
