.call-to-action_btn {
  margin-top: 30px;
}

.image {
margin-right: 80px;
}

.old-price {
  text-decoration: line-through;
  color: #7a7a8c;

}

.btn-cart {
  width: 100%;
  background-color: #0071dcba;
  color: white;
  padding: 10px 62px;
  margin-top: 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  transition: background 0.3s ease;
}

.btn-cart:hover {
  background-color: #ffc421cb;
  color: black;
}

/* login */

    .login-container {
      background: #fff;
      width: 360px;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .heading {
      text-align: center;
      margin-bottom: 20px;
      font-size: 20px;
      font-weight: bold;
    }
    .category-buttons {
      display: flex;
      justify-content: center;
      margin-bottom: 20px;
    }
    .category-btn {
      flex: 1;
      padding: 10px;
      border: 1px solid #ccc;
      background: #f9f9f9;
      cursor: pointer;
      font-size: 14px;
      font-weight: bold;
      transition: 0.3s;
    }
    .category-btn:first-child {
      border-radius: 6px 0 0 6px;
    }
    .category-btn:last-child {
      border-radius: 0 6px 6px 0;
    }
    .category-btn.active {
      background: #0056d2;
      color: #fff;
      border-color: #0056d2;
    }
    .password-text{
    top: 39% !important;
    }

    /* Floating Input Fields */
    .input-field {
      position: relative;
      margin-bottom: 20px;
    }
    .input-box {
      padding: 12px 15px;
      font-size: 1rem;
      border-radius: 6px;
      border: 1px solid #ccc;
      width: 100%;
      outline: none;
    }
    .input-box:focus {
      border-color: #0056d2;
      box-shadow: 0 0 0 3px rgba(0, 86, 210, 0.2);
    }
    .input-label {
      position: absolute;
      top: 50%;
      left: 15px;
      transform: translateY(-50%);
      color: #888;
      background: #fff;
      padding: 0 5px;
      transition: 0.2s;
      pointer-events: none;
    }
    .input-box:focus + .input-label,
    .input-box:not(:placeholder-shown) + .input-label {
      top: -8px;
      left: 10px;
      font-size: 12px;
      color: #0056d2;
    }

    .extra-links {
      text-align: right;
      font-size: 13px;
      margin-bottom: 10px;
    }
    .extra-links a {
      color: #0056d2;
      text-decoration: none;
    }
    .extra-links a:hover {
      text-decoration: underline;
    }
    .btn-login {
      width: 100%;
      
      border: none;
      border-radius: 6px;
      background: #0056d2;
      color: #fff;
      font-size: 16px;
      cursor: pointer;
      
    }
    .btn:hover {
      background: #0041a8;
    }
    .or-divider {
      display: flex;
      align-items: center;
      text-align: center;
      margin: 15px 0;
      font-size: 14px;
      color: #666;
    }
    .or-divider::before,
    .or-divider::after {
      content: "";
      flex: 1;
      border-bottom: 1px solid #ccc;
    }
    .or-divider:not(:empty)::before {
      margin-right: .75em;
    }
    .or-divider:not(:empty)::after {
      margin-left: .75em;
    }
    .social-btn {
      width: 100%;
      padding: 10px;
      border-radius: 6px;
      border: 1px solid #ccc;
      background: #fff;
      cursor: pointer;
      margin-bottom: 10px;
      font-size: 14px;
    }
    .social-btn:hover {
      background: #f0f0f0;
    }
    .signup-links {
      text-align: center;
      font-size: 13px;
      margin-top: 10px;
    }
    .signup-links a {
      color: #0056d2;
      text-decoration: none;
    }
    .signup-links a:hover {
      text-decoration: underline;
    }
    .icon{
      left: 100px;
    position: absolute;
    height: 20px;
    }

/* login end */

/* sign in */
  .signup-wrapper {
    background: #fff;
   
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  }
  .signup-title {
    text-align: center;
    margin-bottom: 25px;
    font-size: 26px;
    font-weight: bold;
  }

  /* Category Buttons */
  .signup-category {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
  }
  .signup-category-btn {
    flex: 1;
    padding: 12px;
    border: 1px solid #ccc;
    background: #f9f9f9;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    transition: 0.3s;
  }
  .signup-category-btn:first-child {
    border-radius: 8px 0 0 8px;
  }
  .signup-category-btn:last-child {
    border-radius: 0 8px 8px 0;
  }
  .signup-category-btn.active {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
  }

  /* Fields */
  .signup-field {
    position: relative;
    margin-bottom: 20px;
    flex: 1;
  }
  .signup-input {
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    width: 100%;
    outline: none;
    background: #ffffff;
  }
  .signup-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
  }
  .signup-label {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: #888;
    background: #fff;
    padding: 0 5px;
    transition: 0.2s;
    pointer-events: none;
  }
  .signup-input:focus + .signup-label,
  .signup-input:not(:placeholder-shown) + .signup-label {
    top: -9px;
    left: 12px;
    font-size: 12px;
    color: #007bff;
  }

  .signup-row {
    display: flex;
    gap: 15px;   /* ⬅️ gap increase */
  }

  /* OTP */
  .signup-otp-row {
    display: flex;
    gap: 12px;
    align-items: center;
  }
  .signup-otp-btn {
    margin-bottom: 20px;
    padding: 12px 16px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
  }
  .signup-otp-btn:hover {
    background: #005dc1;
  }

  /* Button */
  .signup-btn-main {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: #007bff;
    color: #fff;
    font-size: 17px;
    cursor: pointer;
    margin-bottom: 18px;
  }
  .signup-btn-main:hover {
    background: #005dc1;
  }

  /* Divider */
  .signup-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 18px 0;
    font-size: 14px;
    color: #666;
  }
  .signup-divider::before,
  .signup-divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #ccc;
  }
  .signup-divider:not(:empty)::before {
    margin-right: .75em;
  }
  .signup-divider:not(:empty)::after {
    margin-left: .75em;
  }

  /* Social */
  .signup-social {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    margin-bottom: 12px;
    font-size: 15px;
  }
  .signup-social:hover {
    background: #f0f0f0;
  }

  .signup-login-link {
    text-align: center;
    font-size: 14px;
    margin-top: 12px;
  }
  .signup-login-link a {
    color: #007bff;
    text-decoration: none;
  }
  .signup-login-link a:hover {
    text-decoration: underline;
  }


    /* sign-in end */
.cart-flex {
  display: flex;
}

.cart-section {
  justify-content: center;
}

.coupon-btn {
  background-color: #111827;
  color: #ffffff;
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.coupon-btn:hover {
  background-color: #1f2937;
}

.coupon-btn:active {
  transform: scale(0.97);
}

/* input width control */
.cart-collaterals__input {
  width: 220px;
  /* apni need ke hisaab se adjust kar lo */
}

.cart-collaterals__box {
  margin-left: 50px;
}

.sec-title {
  display: flex;
}

.custom-checkout {
  max-height: 300px;
  
}

.course-info__features {
  margin: 10px 0;
  display: flex;
  gap: 15px;
  font-size: 14px;
  color: #333;
}

.course-info__features i {
  color: #0056d2;
  margin-right: 5px;
}

.course-info__features span {
  display: flex;
  align-items: center;
  font-weight: 500;
}
.counter-contact{
 padding-bottom: 75px;
  margin-top: 100px;
}
.sub-card{
  justify-content: center;
}
.mt-contact {
  margin-top: 5rem; 
}
.icon-contact{
  margin: 10px;
  font-size: 20px;
}

.contact-mt-7{
  padding-top: 100px;
}
.reset-password{
  margin-bottom: 30px;
  text-align: center;
}
.pp-container {
      width: 100%;
      max-width: 1200px;
      margin: 20px auto;
      font-family: Arial, sans-serif;
      background: #fff;
      padding: 20px;
      border-radius: 6px;
    }

    .pp-title {
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 8px;
    }

    .pp-subtitle {
      font-size: 14px;
      color: #666;
      margin-bottom: 20px;
    }

    .pp-section {
      margin-bottom: 20px;
    }

    .pp-label {
      display: block;
      font-weight: 600;
      margin-bottom: 6px;
    }

    .pp-row {
      display: flex;
      gap: 20px;
    }

    .pp-field {
      width: 100%;
      flex: 1;
      background: #f7f7f7;
      padding: 12px;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-size: 14px;
    }

    .pp-textarea {
      width: 100%;
      background: #f7f7f7;
      padding: 12px;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-size: 14px;
      white-space: pre-wrap;
    }

    .pp-note {
      font-size: 12px;
      color: #888;
      margin-top: 6px;
    }

    /* Gap only for links */
    .pp-links .pp-field {
      width: 100%;
      margin-bottom: 10px;
    }
    .pp-links .pp-field:last-child {
      margin-bottom: 0;
    }

    .pp-button {
      display: inline-block;
      padding: 12px 20px;
      background: #0073e6;
      color: #fff;
      font-size: 14px;
      font-weight: bold;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      margin-top: 15px;
    }

    .pp-button:hover {
      background: #005bb5;
    }
    .update-btn{
       margin-top: 20px;
      margin-left: 40px;
    }
    .re-set-cntr{
      justify-content: center;
    }
    .re-set-w{
      width: 50%;
    }
    .new-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

/* Unique Colors */
.new-btn-admin {
    background-color: #1e90ff; /* Dodger Blue */
}

.new-btn-edit {
    background-color: #32cd32; /* Lime Green */
}

.new-btn-delete {
    background-color: #ff4500; /* Orange Red */
}

/* Hover Effects */
.new-btn-admin:hover {
    background-color: #1c86ee;
    transform: scale(1.05);
}

.new-btn-edit:hover {
    background-color: #2eb82e;
    transform: scale(1.05);
}

.new-btn-delete:hover {
    background-color: #e03e00;
    transform: scale(1.05);
}
/* Professional Modal Styles */
.course-selection-modal-container {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: auto;
  padding-top: 60px;
}

.course-selection-modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.course-selection-modal-header, .course-selection-modal-footer {
  padding: 15px 25px;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.course-selection-modal-header h2 {
  margin: 0;
  font-size: 1.2rem;
}

.course-selection-modal-header {
  border-bottom: 1px solid #eee;
}

.course-selection-close-button {
  margin-left: auto;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.course-selection-close-button:hover,
.course-selection-close-button:focus {
  color: #000;
}

.course-selection-modal-body {
  padding: 20px;
  flex-grow: 1;
}

/* Styling for each course item */
.course-selection-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 10px;
  background-color: #fafafa;
  border-radius: 4px;
}

.course-selection-item input[type="checkbox"] {
  margin-right: 15px;
  transform: scale(1.3);
  cursor: pointer;
}

.course-selection-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
  flex-grow: 1;
}

.course-selection-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 15px;
}

.course-selection-details {
  display: flex;
  flex-direction: column;
}

.course-selection-title {
  font-weight: 500;
  font-size: 1rem;
  color: #333;
}

.course-selection-modal-footer {
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
}

.course-selection-btn-assign {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}

.course-selection-btn-assign:hover {
  background-color: #0056b3;
}
.sub-card-p{
  padding-top: 100px;
}
.padding-top-detail{
  padding-top: 200px;
}
.padding-about{
  padding: 50px;
}
.thank-body {
      background: #f8f9fa;
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
    }

    .thank-container {
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
    }

    .thank-box {
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      text-align: center;
      max-width: 650px;
      width: 100%;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .thank-icon {
      width: 120px;
     
    }

    .thank-title {
      font-size: 26px;
      color: #28a745;
      margin-bottom: 10px;
    }

    .thank-text {
      font-size: 16px;
      color: #555;
      margin-bottom: 20px;
    }

    .course-details {
      text-align: left;
      margin: 20px 0;
      padding: 20px;
      background: #f1f3f5;
      border-radius: 8px;
    }

    .course-details h2 {
      font-size: 20px;
      margin-bottom: 10px;
      color: #333;
    }

    .course-details ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .course-details ul li {
      font-size: 15px;
      margin: 8px 0;
      color: #444;
    }

    .thank-btn {
      display: inline-block;
      padding: 6px 12px;
      font-size: 16px;
      border-radius: 8px;
      background: #28a745;
      color: #fff;
      text-decoration: none;
      transition: background 0.3s;
    }

    .thank-btn:hover {
      background: #218838;
    }
   
 

@media only screen and (max-width: 767px){
 .contact-mt-7 {
  padding-top: 0;
 }
  .slider-section{
    padding: 0;
  }
  .contact-info__item-02 {
    text-align: left !important;
    padding: 28px 0 0px;
  }

  /* Icon + Heading ek row me */
  .contact-info__row,
  .d-lg-flex {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  /* Heading thoda bada dikhana */
  .contact-info__title {
    font-size: 16px;
    margin: 0;
  }
  .contact-info__content {
  flex-grow: 1;
  padding-left: 0;
}

  .contact-info__content p {
    font-size: 14px;
  
  }

  .contact-info__icon i {
    font-size: 20px;
    min-width: 24px;
  }
  .section-padding-02{
    padding-top: 0;
  }
  .padding-top-detail{
 padding-top: 100px;
  }
  .counter-contact{
   margin-top: 0;
  }
  .about-pt{
    padding-top: 50px;
  }
  .section-title__title{
    padding-top: 30px;
  }
  .section-title__title-02{
    padding-top: 30px;
  }
  .ml-md-0{
  
    margin: 20px;
  }
  .page-banner{
    margin-top: 0;
  }
  .padding-about{
    padding: 0;
  }
  .cart-flex {
    display: block; 
  }

  .cart-product__name {
    white-space: normal;   
    word-wrap: break-word; 
    font-size: 14px;       
    line-height: 1.4;
  }
  .update-cart{
    display: none;
  }
  .cart-collaterals__box{
    margin-left: 0;
   
  }
}
