/* course inner page styles  */

.myul {
    list-style: none;
    font-size: medium;
}
.myul li{
    margin-bottom: 15px;
}


.myul li:before{
  position: relative;
  content: '✔';
  top: 0;
  left: 0;
  border: 2px solid #5956E9;
  border-radius: 50%;
  padding: 1px 3px;
  color: #5956E9;
  margin-right: 10px;
  font-weight:500 ;
  font-size: 10px;

}


/* course Table styles */
/* In your styles.css or inline styles */
  
  .training-options-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .training-options-table th,
  .training-options-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #ddd; /* Light border for cells */
    vertical-align: middle;
  }
  
  .training-options-table th {
    background-color: #556DF5;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
  }
  
  .training-options-table td {
    font-size: 14px;
    color: #555;
  }
  
  .training-options-table tr:nth-child(even) {
    background-color: #f9f9f9;
  }
  
  .training-options-table tr:hover {
    background-color: #f1f1f1;
  }
  
  .training-options-table td:before {
    content: attr(data-label);
    font-weight: bold;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
    color: #007bff;
  }
  
  @media (max-width: 768px) {
    .training-options-table th,
    .training-options-table td {
      padding: 12px 10px;
      font-size: 12px;
    }
  
    .training-options-table th {
      font-size: 14px;
    }
  
    /* Stack the table columns in a vertical view on smaller screens */
    .training-options-table {
      border: none;
      display: block;
    }
  
    .training-options-table tbody,
    .training-options-table tr,
    .training-options-table td {
      display: block;
      width: 100%;
      text-align: right;
      padding: 12px 10px;
    }
  
    .training-options-table tr {
      border-bottom: 1px solid #ddd;
    }
  
    .training-options-table td {
      text-align: left;
      padding-left: 50%;
    }
  }
  


  /* certificate image ===================  */

  /* Container for the whole layout */
.steps-with-image {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px; /* Add space between image and text */
    /* padding: 20px; */
    margin-top: 20px;
    /* background: lightgray; */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 4px;
  }
  
  /* Image container */
  .image-container {
    flex: 1; /* Image takes 50% of the space */
  }
  
  .image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    
  }
  
  /* Steps container (right side) */
  .steps-container {
    flex: 1.5; /* Take more space than the image */
    display: flex;
    flex-direction: column;
    gap: 15px; 
    margin: auto;
  }
  
  /* Individual step with number and description */
  .step {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  /* Styling for the number inside a circle */
  .number {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0; /* Light gray background */
    color: #4661FD; /* Dark blue text color */
    font-size: 20px;
    font-weight: bold;
    border-radius: 50%; /* Circle shape */
    border: 2px solid #4661FD; /* Dark blue border */
  }
  
  /* Text for the step description */
  .step p {
    font-size: 16px;
    color: #333;
    margin: 0;
    font-weight: 500;
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    /* Stack the content vertically on smaller screens */
    .steps-with-image {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    /* Adjust image size for smaller screens */
    .image-container {
      margin-bottom: 20px; /* Add space below the image */
    }
  
    /* Number size and text size for small screens */
    .number {
      width: 35px;
      height: 35px;
      font-size: 18px;
    }
  
    .step p {
      font-size: 14px;
    }
  }
  
  @media (min-width: 1025px) {
    /* For large screens, arrange the image on the left and text on the right */
    .steps-with-image {
      display: flex;
      justify-content: space-between;
    }
  
    .steps-container {
      flex-direction: column;
      gap: 20px;
    }
  }
  


  /* banner faq section container */
.section-with-bg {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:2rem;
    /* background-image: url('/assets/img/'); */
    background: #e7eafe;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: auto; /* Adjust height based on your needs */
    color: rgb(0, 0, 0); /* Set the text color to white to contrast with the dark background */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 153, 255, 0.1);
    margin-top: 2rem;
  }
  
  /* Left content styling */
  .content-left {
    flex: 1;
    padding-right: 30px;
  }
  
  .heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    /* color: white; */
  }
  
  .description {
    font-size: 17px;
    line-height: 1.6;
  }
  
  /* Right content styling (centered button) */
  .content-right {
    flex: 0.4; /* Button will take up 40% of the container */
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
 
  
  /* Responsive Design */
  @media (max-width: 768px) {
    /* Stack the content vertically on smaller screens */
    .section-with-bg {
      flex-direction: column;
      text-align: center;
    }
  
    .content-left {
      padding-right: 0;
      margin-bottom: 20px;
    }
  
    .content-right {
      flex: 1;
      margin-top: 20px;
    }
  }
  

  /* // side card -=============================  */

  /* Cards Section Container */
.cards-section {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    /* padding: 20px; */
    margin-top: 30px;
    flex-wrap: wrap;
  }
  
  /* Individual Card Styling */
  .card {
    width: 100%;
    /* max-width: 300px; */
    background-color: #fff;
    border-radius: 8px;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  
  
  /* Card Content Layout */
  .card-content {
    display: flex;
    align-items: center;
    padding: 10px;
  }
  
  .card-image {
    flex: 0 0 40%; /* Image takes 40% of the card width */
    margin-right: 15px;
  }
  
  .card-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  /* Card Info Layout */
  .card-info {
    flex: 1;
  }
  
  .card-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
  }
  
  .card-rating {
    font-size: 18px;
    color: #ffd700; /* Gold color for the stars */
  }
  
 
  /* Responsive Design */
  @media (max-width: 768px) {
    .cards-section {
      justify-content: center;
    }
  
    .card {
      width: 100%;
      max-width: 90%;
    }
  }
  


  /* Section with Background Image */
.image-background-section-ah {
    position: relative;
    width: 100%;
    height: 440px; /* Set a fixed height for the section */
    background-image: url('https://arabianinfotech.sa/assets/img/sidebanner/five.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    /* padding: 40px; */
    color: #fff;
    border-radius: 8px;
    overflow: hidden;
  }
  
  /* Content Styling */
  .content-ah {
    /* max-width: 600px; */
    width: 100%;
    
    padding: 20px;
    /* border-radius: 8px; */
  }
  
  .heading-ah {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .paragraph-ah {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 30px;
  }
  
  .buttons-ah {
    position: absolute;
    display: flex
;
    /* justify-content: end; */
    gap: 12px;
    bottom: 10px;
  }
  
  .btn-ah {
    padding: 8px 20px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .btn-primary-ah {
    background-color: #007bff;
    color: white;
  }
  
  .btn-secondary-ah {
    background-color: #28a745;
    color: white;
  }
  
  .btn-ah:hover {
    opacity: 0.8;
  }




  .paraHead{
    width: 65%;
  }
  



  .yellow_text{
    color: #f3bd04;
  }


  /* syllabus  ====================================  */

  .bg_blue{
    background-color: #e7eafe;
    padding: 20px 30px;
    border-radius: 18px;
  }

  .tp-course-details-2-faq .accordion-button .span {
    font-size: 16px;
}



@media (min-width: 1025px) {
  .steps-with-image {
      display: flow;
      justify-content: space-between;
  }
}


@media (min-width: 1025px) {
  .steps-container {
      flex-direction: column;
      gap: 20px;
      padding: 20px;
  }
}


.steps-with-image .image-container{
  text-align: left;
}


.steps-with-image .image-container img{
  padding:20px;
  border-radius: 20px;
  width: 80%;
}

.steps-with-image {
 
  box-shadow: none;
  background-color: #E7EAFE;
  border-radius: 20px;
}



.bg_blue {
  background-color: #ffffff;
  padding: 30px 30px;
  border-radius: 18px;
  border: 5px solid #E7EAFE;
}



.accordion-header {
  background-color: #F7F9FA;
}


.tp-course-details-2-faq .accordion-button:not(.collapsed) {
  box-shadow: none;
  padding: 19px 30px 19px 54px;
  border-bottom: 1px solid #F7F9FA;
  background-color: #F7F9FA;
  box-shadow: inset 0 1px 4px 0 rgba(48, 54, 81, 0.06), 0 1px 1px 0 rgba(48, 54, 81, 0.06);
}

.tp-course-details-2-faq .accordion-button {
  border-radius: 6px;
  padding: 19px 30px 19px 54px;
  background-color: #F7F9FA;
}


.tp-course-details-2-faq .accordion-button:not(.collapsed) .span {
  color: black;
}


.tp-course-details-2-widget {
  z-index: 1;
}

.tp-course-details-2-review-reply-wrap {
  margin-bottom: 0px;
}




.tp-course-details-2-widget-thumb a {
  display: none;
  
}


h2{
  
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--tp-heading-2);

}



@media (max-width: 1024px) {
  .steps-with-image {
 
      text-align: left;
  }
}










  /* Responsive Design */
  @media (max-width: 768px) {
    .steps-with-image .image-container img{
      width: 100%;
    }
    
    .paraHead{
      width: 100%;
    }

    .image-background-section-ah {
      height: 300px;
      padding: 20px;
    }
  
    .content-ah {
      max-width: 90%;
      padding: 15px;
    }
  
    .heading-ah {
      font-size: 24px;
    }
  
    .paragraph-ah {
      font-size: 14px;
    }
  
    .buttons-ah {
      flex-direction: column;
      gap: 10px;
    }

    .steps-container {
      padding: 20px;
    }
    

  }
  



  