.space {
  right: 20px;
}

/* @media (min-width: 768px) {
    .ps-md-3 {
        padding-left: 3rem !important;
    }
} */

@media (min-width: 768px) {
  .px-md-5 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
}

.numbered-list {
  list-style: none;
  padding-left: 0;
  counter-reset: item;
  padding: 30px;
  text-align: left;
}

.numbered-list li {
  position: relative;
  padding-left: 10px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.numbered-list li::before {
  color: white;
  content: counter(item) ".";
  counter-increment: item;
  position: absolute;
  left: 15;
  top: 0;
  font-weight: bold;
  width: 30px;
  text-align: right;
  padding-right: 10px;
}

/* Specific styling for dark backgrounds */
.program-highlights .bg-light .numbered-list li::before,
.enrollment-requirements .bg-light .numbered-list li::before {
  color: white;
}


/* Background color and text color swap */
.program-highlights {
  background-color: #f8f9fa !important;
  color: #212529 !important;
}
.program-highlights .bg-light {
  background-color: #212529 !important;
  color: #f8f9fa !important;
}

.enrollment-requirements {
  background-color: #f8f9fa !important;
  color: #212529 !important;
}
.enrollment-requirements .bg-light {
  background-color: #212529 !important;
  color: #f8f9fa !important;
}

.numbered-list .text {
  margin: 0;
}

.how-to-enroll {
  background-color: #f8f9fa !important;
  color: #212529 !important;
}
.how-to-enroll .bg-light {
  background-color: #212529 !important;
  color: #f8f9fa !important;
}

.para {
  margin-left: 34px;
}

/* Base styles */
.course-detail-left {
    background-color: #000000; /* Black background */
    padding: 20px;
    border-radius: 8px;
    color: white; /* White text */
    margin-bottom: 20px; /* Space for smaller screens */
    flex: 1; /* Flexible layout for responsiveness */
  }
  
  .course-price-right {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    flex: 1; /* Flexible layout for responsiveness */
    margin-top: 20px; /* Space for mobile view */
  }
  
  .highlight-list li {
    margin-bottom: 10px;
    font-size: 16px;
  }
  
  .bcontainer {
    width: 100%; /* Default to full width */
    max-width: 1400px;
    margin: 0 auto; /* Center content */
    padding: 0 15px; /* Add padding for mobile view */
  }
  
  .row {
    display: flex;
    /* flex-direction: column;  */
    /* gap: 20px; */
  }
  
  ol {
    list-style-type: lower-alpha; /* Display list items as a, b, c... */
    padding-left: 20px; /* Add padding for better alignment */
  }
  
  .accordion-header-one {
    font-size: 18px; /* Default font size */
    font-weight: bold;
  }
  
  /* Responsive Design */
  @media (min-width: 768px) {
    .row {
      flex-direction: row; /* Side-by-side on medium screens */
    }
  
    .course-detail-left {
      margin-bottom: 0; /* Remove extra margin */
    }
  
    .course-price-right {
      margin-top: 0; /* Align properly */
    }
  }
  
  @media (min-width: 992px) {
    .bcontainer {
      max-width: 1200px; /* Slightly narrower on laptops */
    }
  
    .course-detail-left {
      padding: 25px;
    }
  
    .course-price-right {
      padding: 25px;
    }
  }
  
  @media (min-width: 1200px) {
    .bcontainer {
      max-width: 1400px; /* Maximum width for large screens */
    }
  
    .row {
      /* gap: 20px;  */
    }
  
    .course-detail-left,
    .course-price-right {
      padding: 30px;
    }
  }


.accordion-container {
  width: 80%; /* Adjust as needed */
  margin: 0 auto;
  margin-bottom: 100px;
  max-width: 1200px; /* Optional */
}

.logo-size{
    width: 50px;
    height: 40px;
}
.parara{
    font-size: 8px;
    width: 120px;
}






/* CourseCArd */

.course-card {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 30vh;
    padding: 10px;
  }

  .pricing-card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    width: 100%; /* Full width */
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
  }

  .pricing-card:hover {
    transform: translateY(-5px);
  }

  .duration {
    display: inline-block;
    background-color: #d1fae5;
    color: #065f46;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 15px;
    margin-bottom: 20px;
  }

  .price-old {
    font-size: 16px;
    color: #888;
    text-decoration: line-through;
    margin: 0;
  }

  .price-new {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin: 5px 0;
  }

  .price-gst {
    font-size: 14px;
    color: #888;
  }

  .apply-btn, .buy-now-btn {
    background-color: #ffffff; /* White background */
    color: #000; /* Black text */
    font-size: 16px; /* Button font size */
    font-weight: bold;
    padding: 10px 20px; /* Spacing for buttons */
    border: 1px solid #000; /* Black border */
    border-radius: 30px; /* Rounded corners */
    cursor: pointer;
    transition: all 0.3s ease; /* Smooth transition for hover effect */
    text-align: center; /* Center align text */
    display: inline-block; /* Ensure buttons align correctly */
  }
  
/* Hover effect for buttons */
.apply-btn:hover, .buy-now-btn:hover {
  background-color: #b07f69; /* Hover background color */
  color: #fff; /* White text on hover */
  border-color: #b07f69; /* Change border to match background */
}

/* Mobile-only "Buy Now" button */
.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .mobile-only {
    display: inline-block; /* Show Buy Now button on mobile */
  }

  /* Ensure buttons look good on smaller screens */
  .apply-btn, .buy-now-btn {
    font-size: 14px; /* Slightly smaller text */
    padding: 8px 16px; /* Adjust padding */
    width: 100%; /* Full width buttons for mobile */
    margin-top: 10px; /* Add spacing between buttons */
  }
}

  .note {
    font-size: 12px;
    color: #555;
    margin-top: 10px;
  }

  @media (max-width: 600px) {
    .pricing-card {
      padding: 15px;
    }

    .price-new {
      font-size: 28px;
    }

    .apply-btn, .buy-now-btn {
      padding: 6px 12px; /* Reduce padding further */
      font-size: 13px; /* Smaller font for smaller screens */
    }
  }




  /* Lead Form */

  /* .lead {
    font-family: Arial, sans-serif;
    background: #f4f4f9;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  .lead-form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
  }
  .lead-form h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
    text-align: center;
  }
  .form-group {
    margin-bottom: 15px;
  }
  label {
    display: block;
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
  }
  input, select, textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
    background: #f9f9f9;
  }
  input[type="file"] {
    padding: 5px;
  }
  textarea {
    resize: vertical;
  }
  .form-group-inline {
    display: flex;
    gap: 10px;
  }
  .form-group-inline .form-group {
    flex: 1;
  }
  .form-group button {
    width: 100%;
    padding: 10px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
  }
  .form-group button:hover {
    background: #0056b3;
  } */







  /* demo */


        /* Floating Button */
        .responsive-enroll-container {
          position: fixed;
          bottom: 20px;
          right: 20px;
          z-index: 1000;
        }
  
        .responsive-enroll-button {
          width: 60px;
          height: 60px;
          background: linear-gradient(135deg, #b07f69, #8c6552);
          border-radius: 50%;
          display: flex;
          justify-content: center;
          align-items: center;
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
          cursor: pointer;
          transition: transform 0.2s ease;
        }
  
        .responsive-enroll-button:hover {
          transform: scale(1.1);
        }
  
        .responsive-enroll-icon {
          font-size: 24px;
          color: #fff;
        }
  
        /* Form Styles */
        .responsive-lead-form-wrapper {
          display: none;
          position: fixed;
          bottom: 80px;
          right: 20px;
          background: #fff;
          padding: 20px;
          border-radius: 10px;
          box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
          width: 100%;
          max-width: 400px;
          max-height: 80vh;
          overflow-y: auto;
          display: none;
          opacity: 0;
          transform: translateY(10px);
          transition: opacity 0.3s ease, transform 0.3s ease;
        }
  
        .responsive-lead-form-wrapper.show {
          display: block;
          opacity: 1;
          transform: translateY(0);
        }
  
        .responsive-lead-form h2 {
          font-size: 20px;
          margin-bottom: 15px;
          text-align: center;
          color: #b07f69;
        }
  
        .responsive-lead-form .form-group {
          margin-bottom: 15px;
          display: flex;
          flex-wrap: wrap;
          gap: 10px;
        }
  
        .responsive-lead-form label {
          font-size: 14px;
          flex: 1 1 100%;
          margin-bottom: 5px;
        }
  
        .responsive-lead-form input,
        .responsive-lead-form select,
        .responsive-lead-form textarea {
          flex: 1 1 100%;
          padding: 10px;
          font-size: 14px;
          border: 1px solid #ddd;
          border-radius: 5px;
        }
  
        .responsive-lead-form textarea {
          resize: none;
        }
  
        .responsive-photo-upload {
          display: flex;
          flex-wrap: wrap;
          gap: 10px;
        }
  
        .responsive-photo-upload input {
          flex: 1 1 calc(50% - 10px);
          padding: 10px;
          border: 1px solid #ddd;
          border-radius: 5px;
        }
  
        .responsive-lead-form button {
          width: 100%;
          padding: 12px;
          background: #b07f69;
          color: #fff;
          border: none;
          border-radius: 5px;
          font-size: 16px;
          cursor: pointer;
          transition: background 0.3s ease;
        }
  
        .responsive-lead-form button:hover {
          background: #8c6552;
        }
  
        /* Responsive Adjustments */
        @media (max-width: 480px) {
          .responsive-lead-form-wrapper {
            bottom: 20px;
            right: 10px;
            left: 10px;
          }
  
          .responsive-photo-upload input {
            flex: 1 1 100%; }