/* COURSE DESCRIPTION */
    .course-container {
      --cm-primary: #6366f1;
      --cm-primary-light: #eef2ff;
      --cm-primary-dark: #4f46e5;
      --cm-secondary: #8b5cf6;
      --cm-dark: #1e293b;
      --cm-light: #f8fafc;
      --cm-gray: #64748b;
      --cm-success: #06b6d4;
      --cm-border-radius: 8px;
      --cm-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
      --cm-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(135deg, #f9fafb 0%, #e2e8f0 100%);
      color: var(--cm-dark);
      line-height: 1.7;
      padding: 0px;
      min-height: auto;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
    }
    
    .course-container * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    .course-section {
      width: 100%;
      max-width: auto;
      margin: auto;
      background: #f8f9fa;
      padding: 3rem;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .course-header {
      text-align: center;
      margin-bottom: 2.5rem;
      position: relative;
      padding-bottom: 1.2rem;
    }
    
    .course-section h2 {
      font-size: 32px;
      font-weight: 600;
      color: black;
      letter-spacing: -0.5px;
    }

    
    .course-content {
      display: flex;
      gap: 30px;
    }
    
    .toggle-container {
      flex: 1;
      min-width: 0; /* Prevent flex item overflow */
    }
    
    .course-sidebar {
      width: 350px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    
    .certificate-card {
      background: white;
      border-radius: white;
      padding: 1.5rem;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
      position: relative;
      overflow: hidden;
    }
    
    .certificate-card h3 {
      font-size: 21px;
      color: #3b8eed;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    
    .certificate-card h3 i {
      background: white;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      font-size: 18px;
      color:#3b8eed;
    }
    
    .certificate-image {
      width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      border: 5px solid white;
      margin-bottom: 1rem;
    }
    
    .course-action {
      background: linear-gradient(90deg, #4facfe, #00f2fe);
      border: none;
      border-radius: 8px;
      padding: 0.8rem;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      color: white;
      cursor: pointer;
      text-align: center;
      transition: var(--cm-transition);
      margin-top: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
    }
    
    .course-action:hover {
      background: #3b8eed;
      color: white;
    }
    
    .badge {
      display: inline-block;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 500;
      background: white;
      color: var(--cm-primary);
      margin-right: 6px;
      margin-bottom: 6px;
    }
    
    /* Toggle items styling */
    details.toggle-item {
      margin-bottom: 1.2rem;
      border-radius: var(--cm-border-radius);
      overflow: hidden;
      transition: var(--cm-transition);
      background: white;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    }
    
    details.toggle-item summary {
      width: 100%;
      padding: 1rem 2rem;
      background: white;
      text-align: left;
      font-size: 1rem;
      font-weight: 600;
      color: var(--cm-dark);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: var(--cm-transition);
      position: relative;
      overflow: hidden;
      list-style: none;
    }
    
    details.toggle-item summary::-webkit-details-marker {
      display: none;
    }
    
    details.toggle-item summary::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 4px;
      background: linear-gradient(to bottom, #0d545e, #198d99);
      opacity: 0;
      transition: var(--cm-transition);
    }
    
    details.toggle-item summary:hover {
      background: white;
      color: black;
    }
    
    details.toggle-item summary:hover::before {
      opacity: 1;
    }
    
    details.toggle-item summary::after {
      content: '\f107';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      font-size: 1.1rem;
      transition: var(--cm-transition);
      color: var(--cm-gray);
      background: var(--cm-primary-light);
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      flex-shrink: 0;
      margin-left: 10px;
    }
    
    details.toggle-item[open] summary::after {
      transform: rotate(180deg);
      color: #3b8eed;
      background: var(--cm-primary-light);
    }
    
    details.toggle-item[open] summary {
      background: var(--cm-primary-light);
      color: #3b8eed;
    }
    
    details.toggle-item[open] summary::before {
      opacity: 1;
    }
    
    .toggle-content {
      background: linear-gradient(to right, var(--cm-primary-light) 0%, white 10%);
      padding: 1rem 2rem;
      font-size: 1rem;
      color: var(--ds-gray);
      line-height: 1;
    }
    
    .toggle-content h3 {
      color: var(--cm-primary-dark);
      margin-bottom: 1rem;
      font-weight: 600;
    }
    
    .toggle-content p {
      margin-bottom: 1.2rem;
    }
    
    .toggle-content ul {
      margin-left: 1.5rem;
      margin-bottom: 0.5rem;
    }
    
    .toggle-content li {
      margin-bottom: 0.5rem;
      position: relative;
    }
    
    .toggle-content li::before {
      content: '';
      position: absolute;
      left: -1.2rem;
      top: 0.2rem;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--cm-primary);
    }
    
    /* Animation */
    @keyframes cm-fadeIn {
      from { opacity: 0; transform: translateY(15px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    details.toggle-item {
      animation: cm-fadeIn 0.6s ease forwards;
    }
    
    details.toggle-item:nth-child(1) { animation-delay: 0.2s; }
    details.toggle-item:nth-child(2) { animation-delay: 0.35s; }
    details.toggle-item:nth-child(3) { animation-delay: 0.5s; }
    details.toggle-item:nth-child(4) { animation-delay: 0.65s; }
    details.toggle-item:nth-child(5) { animation-delay: 0.8s; }
    details.toggle-item:nth-child(6) { animation-delay: 0.95s; }
    
    .certificate-card {
      animation: cm-fadeIn 0.6s ease forwards;
      animation-delay: 0.3s;
    }
    
    /* Responsive Styles */
    @media (max-width: 1024px) {
      .course-section {
        padding: 2.5rem;
      }
      
      .course-content {
        gap: 20px;
      }
      
      .course-sidebar {
        width: 300px;
      }
      
      details.toggle-item summary {
        padding: 1.3rem 1.8rem;
      }
      
      .toggle-content {
        padding: 1.5rem 1.8rem;
      }
    }
    
    @media (max-width: 900px) {
      .course-content {
        flex-direction: column;
      }
      
      .course-sidebar {
        width: 100%;
      }
      
      .toggle-container {
        width: 100%;
      }
    }
    
    @media (max-width: 768px) {
      .course-section {
        padding: 2rem;
      }
      
      .course-section h2 {
        font-size: 1.8rem;
      }
      
      details.toggle-item summary {
        padding: 1.2rem 1.5rem;
        font-size: 1.1rem;
      }
      
      .toggle-content {
        padding: 1.2rem 1.5rem;
      }
      
      .certificate-card h3 {
        font-size: 1.1rem;
      }
    }
    
    @media (max-width: 576px) {
      .course-section {
        padding: 1.5rem;
      }
      
      .course-header {
        margin-bottom: 1.5rem;
      }
      
      .course-section h2 {
        font-size: 1.5rem;
      }
      
      details.toggle-item summary {
        padding: 1rem 1.2rem;
        font-size: 1rem;
      }
      
      details.toggle-item summary::after {
        width: 25px;
        height: 25px;
        font-size: 0.9rem;
      }
      
      .toggle-content {
        padding: 1rem 1.2rem;
      }
      
      .toggle-content h3 {
        font-size: 1.2rem;
      }
      
      .toggle-content p,
      .toggle-content li {
        font-size: 0.9rem;
      }
      
      .certificate-card {
        padding: 1rem;
      }
      
      .certificate-card h3 {
        font-size: 1rem;
      }
      
      .course-action {
        padding: 0.6rem;
        font-size: 0.9rem;
      }
    }
    
    @media (max-width: 400px) {
      .course-section {
        padding: 1rem;
      }
      
      details.toggle-item summary {
        padding: 0.8rem 1rem;
      }
      
      .toggle-content {
        padding: 0.8rem 1rem;
      }
      
      .toggle-content h3 {
        font-size: 1.1rem;
      }
      
      .toggle-content p,
      .toggle-content li {
        font-size: 0.85rem;
      }
    }
/* COURSE DESCRIMINATION */
.pbi-container-main {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}


.pbi-container-main {
  max-width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  height: auto;
  background-color: rgb(245, 249, 252);
  padding: 20px;
}

@media screen and (min-width: 768px) {
  .pbi-container-main {
    padding-left: 80px;
    padding-right: 80px;
  }
}

.pbi-header-main {
  text-align: center;
  padding-top: 20px;
  margin-bottom: 40px;
}

.pbi-header-title {
  color: black;
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .pbi-header-title {
    font-size: 36px;
  }
}

.pbi-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media screen and (min-width: 768px) {
  .pbi-content-wrapper {
    flex-direction: row;
  }
}

.pbi-syllabus-section {
  flex: 2;
}

.pbi-syllabus-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .pbi-syllabus-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.pbi-syllabus-heading {
  color: black;
  font-size: 24px;
  margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
  .pbi-syllabus-heading {
    font-size: 28px;
    margin-bottom: 0;
  }
}

.pbi-download-btn {
  background-color: transparent;
  color: rgb(245, 17, 82);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 16px;
  padding: 10px 0;
}

.pbi-download-btn i {
  margin-right: 8px;
}

.pbi-accordion-list {
  list-style: none;
  padding-left: 0;
}

.pbi-accordion-item {
  background-color: white;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.pbi-accordion-header {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: white;
  flex-wrap: wrap;
}

@media screen and (max-width: 480px) {
  .pbi-accordion-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .pbi-topic-count {
    margin-top: 8px;
  }
}

.pbi-accordion-title {
  color: black;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .pbi-accordion-title {
    font-size: 18px;
  }
}

.pbi-feature-bullet {
  display: inline-block;
  border-radius: 50%;
  margin-right: 10px;
  padding-left: 10px;
}

.pbi-topic-count {
  display: flex;
  align-items: center;
  color: black;
  font-size: 14px;
}

.pbi-topic-count i {
  margin-right: 8px;
  color: #888;
}

.pbi-accordion-arrow {
  color: black;
  transition: transform 0.3s;
  margin-left: 8px;
}

.pbi-accordion-arrow.active {
  transform: rotate(180deg);
}

.pbi-accordion-content {
  padding: 0px 20px 20px;
  display: none;
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .pbi-accordion-content {
    padding: 0px 40px 20px;
  }
}

.pbi-accordion-content p {
  padding: 8px 0;
}

.pbi-accordion-content p::after {
  content: "";
  display: block;
  border-top: 1px solid #eee;
  margin-top: 8px;
}

.pbi-counselling-section {
  flex: 1;
  background-color: #22577a;
  border-radius: 6px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

@media screen and (min-width: 768px) {
  .pbi-counselling-section {
    position: sticky;
    top: 20px;
    height: fit-content;
  }
}

.pbi-counselling-header {
  margin-bottom: 15px;
  position: relative;
}

.pbi-counselling-header:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, #23b5b5, #15a0a0);
  border-radius: 2px;
}

.pbi-counselling-title {
  color: white;
  font-size: 22px;
  margin-bottom: 5px;
}

.pbi-counselling-container {
  padding: 10px 0;
}

.pbi-feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: black;
  height: 40px;
  background-color: white;
  width: 100%;
  border-radius: 4px;
}

.pbi-feature-text {
  font-size: 18px;
  font-weight: normal;
  margin: 0;
  color: dimgrey;
}

@media screen and (min-width: 768px) {
  .pbi-feature-text {
    font-size: 20px;
  }
}

#pbiDownloadBtn {
  font-size: 16px;
  font-weight: bold;
  animation: pdf_blinkColor 1s infinite;
}

@keyframes pdf_blinkColor {
  0% {
    color: red;
  }

  50% {
    color: blue;
  }

  100% {
    color: red;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
}

.modal-content {
  background-color: white;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  padding: 30px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin: 30px auto;
}

.close-modal {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}

.modal-title {
  margin-bottom: 20px;
  font-size: 22px;
  color: #22577a;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.form-group textarea {
  height: 100px;
  resize: vertical;
}

.submit-btn {
  background-color: #22577a;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #1b4562;
}

/*TOOLS FOR DATA SCIENCE*/
    .ds_tools h2 {
      text-align: center;
      font-size: 32px;
      margin: 20px 0;
      font-weight:600;
    }

    .ds_tools {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 20px;
    }

    .ds_tools img {
      max-width: 60%;
      height: auto;
    }

    /* ======== Media Queries ======== */

    /* For tablets (768px and below) */
    @media (max-width: 768px) {
      .ds_tools h2 {
        font-size: 24px;
      }
    }

    /* For mobile phones (480px and below) */
    @media (max-width: 480px) {
      .ds_tools h2{
        font-size: 24px;
      }

      .ds_tools {
        padding: 10px;
      }
      .ds_tools img {
      max-width: 90%;
      height: auto;
    }
    }
     

/* CALENDER */
.course-enrollment-container {
  font-family: Arial, sans-serif;
  background: #f1f1f1;
  margin: 0;
  padding: 2rem;
}

.ce-main-container {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  margin: auto;
}

.ce-sessions-section,
.ce-pricing-section {
  padding: 1.5rem;
}

.ce-sessions-section {
  flex: 3;
  border-right: 1px solid #ddd;
}

.ce-pricing-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ce-session-card {
  border: 1px solid #ddd;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 20px;
}

.ce-session-card input[type="radio"] {
  margin-right: 10px;
}

.ce-soldout-badge {
  color: rgb(245, 17, 82);
  border: 1px solid rgb(245, 17, 82);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  margin-right: 10px;
}

.ce-filling-fast-badge {
  background: rgb(245, 17, 82);
  color: #fff;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-right: 10px;
}

.ce-session-time {
  font-size: 14px;
  color: gray;
}

.ce-general-badge {
  background: #e7f0ff;
  color: #0056d2;
  padding: 4px 8px;
  border-radius: 5px;
  font-size: 12px;
}

.ce-price-container {
  text-align: center;
  width: 100%;
}

.ce-price-container h2 {
  color: #1c1c1c;
  margin: 0.5rem 0;
}

.ce-old-price {
  text-decoration: line-through;
  color: gray;
  font-size: 16px;
}

.ce-discount-text {
  color: green;
  margin: 0.3rem 0;
}

.ce-timer-display {
  color: #d10c0c;
  padding: 5px 10px;
  border-radius: 5px;
  margin: 1rem 0;
}

.ce-emi-text {
  font-size: 14px;
  margin: 0.5rem 0;
}

.ce-enroll-button {
  background: rgb(245, 17, 82);
  color: white;
  border: none;
  font-size: 18px;
  padding: 12px 30px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 1rem;
}

.ce-secure-payment {
  font-size: 12px;
  color: gray;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .ce-main-container {
    flex-direction: column;
  }

  .ce-sessions-section {
    border-right: none;
    border-bottom: 1px solid #ddd;
  }

  .ce-session-time {
    padding: 8px;
  }

  .ce-pricing-section {
    padding-top: 0;
    padding: 10px;
  }
}

/* DESIGNATION SECTION */
.k8s-dashboard-container {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.k8s-dashboard-wrapper {
  max-width: 1000px;
  margin: 20px auto;
  background-color: white;
  border-radius: 12px;
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
  overflow: hidden;
}

.k8s-designations-container {
  display: flex;
  padding: 20px;
  border-bottom: 1px solid #eaeaea;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;

}

.k8s-designation-btn {
  padding: 10px 20px;
  background-color: transparent;
  border: none;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}

.k8s-designation-btn--active {
  background: #3b8eed;
  color: white;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.k8s-content-area {
  display: flex;
  padding: 30px;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.k8s-salary-container {
  flex: 1;
  min-width: 300px;
}

.k8s-salary-title {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}

.k8s-salary-chart {
  display: flex;
  gap: 30px;
  align-items: flex-end;
  margin-top: 30px;
  height: 300px;
  position: relative;
}

.k8s-salary-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  height: 100%;
}

.k8s-bar-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.k8s-bar-value {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.k8s-bar {
  width: 60px;
  background: linear-gradient(90deg, #4facfe, #00f2fe);
  border-radius: 6px 6px 0 0;
  position: absolute;
  bottom: 25px;
  height: 0;
  transition: height 0.6s ease-out;
}

.k8s-bar::after {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
}

.k8s-bar-label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
}

.k8s-bar--min {
  background-color: linear-gradient(90deg, #4facfe, #00f2fe);
}

.k8s-bar--avg {
  background-color: linear-gradient(90deg, #4facfe, #00f2fe);
}

.k8s-bar--max {
  background-color: linear-gradient(90deg, #4facfe, #00f2fe);
}

.k8s-cta-section {
  padding: 15px;
  text-align: center;
}

.k8s-cta-title {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}
.k8s-dashboard-wrapper h2{
      font-size:32px;
      font-weight:600;
  }
@media (max-width: 768px) {
  .k8s-content-area {
    flex-direction: column;
  }

  .k8s-salary-chart {
    justify-content: center;
  }
  .k8s-cta-section{
      margin:10px;
  }
  .k8s-dashboard-wrapper h2{
      font-size:25px;
  }
  .k8s-designation-btn{
      font-size:13px;
  }
  .k8s-cta-title{
      font-size:14px;
  }
}

/* TOP HIRING COMPANIES */
.batch-profile {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0 auto;
  padding: 20px;
  color: #333333;
  max-width: 1200px;
}

.batch-profile__title {
  font-size: 32px;
  margin-bottom: 15px;
  color: #333333;
  font-weight: 600;
}

.batch-profile__description {
  font-size: 16px;
  line-height: 1.5;
  color: #666666;
  margin-bottom: 25px;
}

.batch-profile__section {
  background-color: transparent;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  padding: 20px;
}

.batch-profile__section-title {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 20px;
}

.batch-profile__content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.batch-profile__chart-container {
  width: 48%;
  min-height: 300px;
  /* Ensure space for canvas */
}

#industry-chart {
  width: 100% !important;
  height: auto !important;
}

.batch-profile__companies-container {
  width: 48%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.batch-profile__company-logo {
  height: 40px;
  margin: 10px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .batch-profile__content {
    flex-direction: column;
  }

  .batch-profile__chart-container,
  .batch-profile__companies-container {
    width: 100%;
  }
  .batch-profile__company-logo{
      height:34px;
  }
  .batch-profile__title{
      font-size:25px;
  }
}

/* FAQ */
/* Base styles scoped to FAQ components only */
.faq-page {
  margin: 0;
  padding: 0;
  background-color: rgb(245, 249, 252);;
  min-height: 100vh;
}

.faq-body {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

/* Header styles */
.faq-header {
  font-size: 32px;
  margin-bottom: 20px;
  color: #111;
  text-align: center;
  padding: 20px 0;
  line-height: 1.3;
}

/* Container styles */
.faq-main-container {
  display: flex;
  flex-direction: row;
  gap: 30px;
  padding: 20px 0;
}

/* Illustration styles */
.faq-illustration-container {
  flex: 1;
  position: sticky;
  top: 20px;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-illustration-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
}

/* Content styles */
.faq-content-container {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* FAQ item styles */
.faq-item-container {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  display: none;
  background-color: white;
}

.faq-item-visible {
  display: block;
}

.faq-question-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background: white;
  font-size: 18px;
  transition: all 0.3s ease;
}

.faq-question-wrapper:hover {
  background: #f9f9f9;
}

.faq-question-number {
  font-size: 24px;
  font-weight: bold;
  margin-right: 20px;
  color: #3b8eed;
  min-width: 40px;
}

.faq-question-text {
  flex: 1;
  padding-right: 10px;
}

.faq-question-icon {
  font-size: 24px;
  transition: all 0.3s ease;
  color: #2d1e69;
}

.faq-answer-wrapper {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  background: white;
}

.faq-answer-content {
  padding: 0 20px 20px 60px;
  color: #555;
  line-height: 1.6;
  font-size: 16px;
}

/* Active state styles */
.faq-item-active .faq-answer-wrapper {
  max-height: 500px;
}

.faq-item-active .faq-question-icon {
  transform: rotate(45deg);
}

/* Show more button */
.faq-show-more {
  text-align: center;
  margin-top: 20px;
  color: #3b8eed;
  font-weight: bold;
  cursor: pointer;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: transparent;
  border: none;
  font-size: 16px;
}

.faq-show-more-icon {
  margin-left: 5px;
}

.faq-show-more.disabled {
  color: #999;
  cursor: not-allowed;
}

/* Tablet styles */
@media (max-width: 992px) {
  .faq-header {
    font-size: 30px;
    padding: 15px 0;
  }

  .faq-question-text {
    font-size: 16px;
  }

  .faq-answer-content {
    font-size: 15px;
    padding: 0 15px 15px 50px;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  .faq-main-container {
    flex-direction: column;
    gap: 20px;
  }

  .faq-illustration-container {
    position: static;
    height: auto;
    margin-bottom: 20px;
  }

  .faq-illustration-image {
    max-width: 300px;
  }

  .faq-header {
    font-size: 26px;
    padding: 10px 0;
  }

  .faq-question-wrapper {
    padding: 15px;
  }

  .faq-question-number {
    font-size: 20px;
    margin-right: 15px;
  }

  .faq-question-text {
    font-size: 15px;
  }

  .faq-answer-content {
    padding: 0 10px 15px 45px;
    font-size: 14px;
  }
}

/* Small mobile styles */
@media (max-width: 480px) {
  .faq-body {
    padding: 15px;
  }

  .faq-header {
    font-size: 18px;
  }

  .faq-question-wrapper {
    padding: 12px;
  }

  .faq-question-number {
    font-size: 18px;
    margin-right: 10px;
  }

  .faq-question-text {
    font-size: 14px;
  }

  .faq-answer-content {
    padding: 0 8px 12px 38px;
    font-size: 13px;
  }

  .faq-show-more {
    font-size: 14px;
  }
}

/* COURSE RECOMMENDATION */
.course-slider-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.course-slider {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
}

.slide {
  display: flex;
  flex: 0 0 100%;
  gap: 20px;
  padding: 10px;
  box-sizing: border-box;
}

.course-card {
  flex: 1;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.course-card:hover {
  transform: translateY(-5px);
}

.course-card img {
  width: 100%;
  height: 160px;
  object-fit: fill;
}

.course-card h3 {
  margin: 15px 15px 10px;
  font-size: 1.1rem;
  color:red;
}

.course-card p {
  margin: 0 15px 15px;
  color: #666;
  font-size: 0.9rem;
}

.rating {
  margin: 0 15px 15px;
  color: #ff9800;
  font-weight: bold;
  font-size: 0.9rem;
}

.enroll-btn {
  display: block;
  width: calc(100% - 30px);
  margin: 0 15px 15px;
  padding: 10px;
  background: linear-gradient(90deg, #4facfe, #00f2fe);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.enroll-btn:hover {
  background: #3b8eed;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 20px;
}

.prev-btn,
.next-btn {
  background: #333;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
}

.dots-container {
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
}

.dot.active {
  background: #333;
}

@media (max-width: 768px) {
  .slide {
    flex-wrap: wrap;
  }

  .course-card {
    flex: 0 0 calc(50% - 10px);
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .course-card {
    flex: 0 0 100%;
  }
}

/* TESTIMONALS  */
.feedback-root {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: rgb(245, 249, 252);
}

.feedback-wrapper {
  padding:10px;
}

.feedback-section {
  max-width: 1200px;
  margin: auto;
}

.feedback-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.feedback-card {
  flex: 1 1 45%;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.feedback-content {
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
}

.client-profile {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
  /* Added to push name+avatar and logo apart */
}

.profile-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.client-name {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  color: #111;
}

.client-position {
  margin: 5px 0 0;
  color: #888;
}

/* Logo style */
.client-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
/* PROGRAM OVERVIEW  */
        /* Self-contained Program Overview CSS - No dependencies */
.cyber-program-overview {
    padding: 2rem 0;
    background: black;
}

.cyber-program-overview__title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: white;
    position: relative;
    font-family: 'Arial', sans-serif;
}

/*.cyber-program-overview__title::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: -10px;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*    width: 100px;*/
/*    height: 4px;*/
/*    background: linear-gradient(90deg, #00ff88, #1e3c72);*/
/*}*/

.cyber-program-overview__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.cyber-program-overview__card {
    background: transparent;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 2px solid #e0e0e0;
}

.cyber-program-overview__card:hover {
    transform: translateY(-5px);
}

.cyber-program-overview__card-title {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-family: 'Arial', sans-serif;
}

.cyber-program-overview__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cyber-program-overview__list-item {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
    color:white;
}

.cyber-program-overview__list-item::before {
    content: '✨';
    position: absolute;
    left: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cyber-program-overview__grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .cyber-program-overview__title {
        font-size: 1.6rem;
    }
}

/*program pedagogy*/
    .pedagogy-container {
  background: #f8f9fa;
  padding: 3rem 1.5rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  position: relative;
  overflow: hidden;
}

.pedagogy-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.pedagogy-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pedagogy-title {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 2.5rem 0;
  color: black;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.pedagogy-highlight {
  color: #3b8eed;
  background: #3b8eed;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}



.pedagogy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.pedagogy-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 
              0 2px 4px -1px rgba(0, 0, 0, 0.06),
              0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.pedagogy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #F51152, transparent);
  transition: left 0.5s ease;
}

.pedagogy-card:hover::before {
  left: 100%;
}

.pedagogy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 20px -5px rgba(0, 0, 0, 0.1),
              0 8px 8px -5px rgba(0, 0, 0, 0.04),
              0 0 0 1px rgba(245, 17, 82, 0.1);
  border-color: rgba(245, 17, 82, 0.2);
}

.pedagogy-card:nth-child(even) {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.pedagogy-icon {
  width: 45px;
  height: 45px;
  background:#3b8eed;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  position: relative;
  box-shadow: 0 6px 12px rgba(245, 17, 82, 0.25);
  transition: all 0.3s ease;
}

.pedagogy-icon::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #F51152, #ff4d7d);
  border-radius: 14px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pedagogy-card:hover .pedagogy-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 18px rgba(245, 17, 82, 0.35);
}

.pedagogy-card:hover .pedagogy-icon::after {
  opacity: 0.1;
}

.pedagogy-icon svg {
  width: 21px;
  height: 21px;
  color: white;
  transition: transform 0.3s ease;
}

.pedagogy-card:hover .pedagogy-icon svg {
  transform: scale(1.1);
}

.pedagogy-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 0.8rem 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.pedagogy-card:hover .pedagogy-card-title {
  color: #3b8eed;
}

.pedagogy-card-desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  transition: color 0.3s ease;
}

.pedagogy-card:hover .pedagogy-card-desc {
  color: #475569;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .pedagogy-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .pedagogy-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .pedagogy-container {
    padding: 2.5rem 1rem;
  }
  
  .pedagogy-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .pedagogy-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .pedagogy-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .pedagogy-title {
    font-size: 1.75rem;
  }
  
  .pedagogy-card {
    padding: 1.2rem;
  }
  
  .pedagogy-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }
  
  .pedagogy-icon svg {
    width: 18px;
    height: 18px;
  }
  
  .pedagogy-card-title {
    font-size: 1rem;
  }
  
  .pedagogy-card-desc {
    font-size: 0.85rem;
  }
}

/* Enhanced animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.pedagogy-card:nth-child(3n+1) {
  animation: float 6s ease-in-out infinite;
  animation-delay: 0s;
}

.pedagogy-card:nth-child(3n+2) {
  animation: float 6s ease-in-out infinite;
  animation-delay: 2s;
}

.pedagogy-card:nth-child(3n) {
  animation: float 6s ease-in-out infinite;
  animation-delay: 4s;
}

/* Pause animation on hover */
.pedagogy-card:hover {
  animation-play-state: paused;
}
/*History of job*/
    /* Custom color property */
:root {
    --primary-cyber: #F51152;
    --primary-cyber-dark: #c10e41;
}

/* Main container */
.cyber-stats-container {
    padding: 48px 16px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cyber-stats-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Title styling - REDUCED SIZE */
.cyber-stats-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 48px;
    line-height: 1.2;
}

.highlight-text {
    color: #3b8eed;
    font-weight: 600;
}

/* Grid layout */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    align-items: start;
}

/* Individual stat cards - REDUCED PADDING & GAP */
.stat-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Icon containers - REDUCED SIZE */
.stat-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

/* Icon backgrounds */
.job-icon,
.skill-icon,
.growth-icon,
.future-icon,
.degree-icon,
.demand-icon {
    background: #3b8eed;
}

/* Icon content - REDUCED SIZE */
.icon-content {
    color: white;
    font-weight: bold;
    font-size: 11px;
    letter-spacing: 1px;
}

/* Icon shapes - PROPORTIONALLY REDUCED */
.graduation-cap {
    width: 32px;
    height: 24px;
    background: white;
    position: relative;
    border-radius: 2px;
}

.graduation-cap::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -4px;
    width: 40px;
    height: 16px;
    background: white;
    border-radius: 50%;
}

.growth-chart {
    width: 28px;
    height: 28px;
    background: white;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.growth-chart::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 6px;
    height: 16px;
    background: var(--primary-cyber);
    margin-right: 2px;
}

.growth-chart::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10px;
    width: 6px;
    height: 24px;
    background: var(--primary-cyber);
}

.rocket {
    width: 20px;
    height: 32px;
    background: white;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
}

.rocket::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 12px solid var(--primary-cyber);
}

.certificate {
    width: 28px;
    height: 36px;
    background: white;
    border-radius: 3px;
    position: relative;
}

.certificate::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid white;
}

.crown {
    width: 32px;
    height: 20px;
    background: white;
    position: relative;
    border-radius: 0 0 6px 6px;
}

.crown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 12px;
    background: white;
    border-radius: 3px 3px 0 0;
}

/* Content styling - REDUCED FONT SIZES */
.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 1.12rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.stat-description {
    font-size: 0.8rem;
    color: #7f8c8d;
    line-height: 1.5;
    margin: 0;
}

/* Responsive design - REDUCED SIZES */
@media (max-width: 768px) {
    .cyber-stats-title {
        font-size: 1.8rem;
        margin-bottom: 32px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-card {
        padding: 16px;
        gap: 12px;
    }
    
    .stat-icon {
        width: 48px;
        height: 48px;
    }
    
    .stat-number {
        font-size: 0.96rem;
    }
    
    .stat-description {
        font-size: 0.72rem;
    }
}

@media (max-width: 480px) {
    .cyber-stats-container {
        padding: 32px 12px;
    }
    
    .cyber-stats-title {
        font-size: 1.44rem;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}
/*HEADER_SECTION*/
 .ai-hero-section {
            background-image: url('/public/images/new_inner_course/core_ai_intro.webp');
            background-color: #1A202C;
            background-size: cover;
            background-position: center;
            padding: 40px 20px;
            height: 100vh; /* Use full viewport height */
            display: flex;
            align-items: center; /* Center content vertically */
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #ffffff;
            overflow-x: hidden; 
        }
        
        .ai-hero-content {
            max-width: 100%;
        }
        
        .ai-breadcrumbs {
            font-size: 12px;
            color: #A0AEC0;
            margin-bottom: 30px;
        }
        
        .ai-breadcrumbs .ai-current-page {
            color: #ffffff;
        }
        
        .ai-main-title {
            font-size: 28px;
            font-weight: 700;
            line-height: 1.2;
            margin: 0;
        }
        
        .ai-main-title .ai-highlight {
            background: linear-gradient(90deg, #4facfe, #00f2fe);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .ai-separator {
            border: none;
            height: 1px;
            background-color: #4A5568;
            margin: 20px 0;
            width: 80px;
        }
        
        .ai-subtitle {
            font-size: 21px;
            font-weight: 600;
            margin: 0 0 20px 0;
            line-height: 1.3;
            color:white;
        }
        
        .ai-description,
        .ai-course-info {
            font-size: 14px;
            color: #E2E8F0;
            margin-bottom: 8px;
            line-height: 1.6;
        }
        
        .ai-course-info {
            margin-bottom: 30px;
        }
        
        .ai-register-btn {
            background-color: #4facfe;
            color: #ffffff;
            border: none;
            padding: 15px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            width: 100%;
            box-sizing: border-box;
            margin-top: 20px;
        }
        
        .ai-register-btn:hover {
            background: linear-gradient(90deg, #4facfe, #00f2fe);
        }
        
        /* 
         =========================================
         Tablet Styles (for screens 768px and wider)
         =========================================
        */
        @media (min-width: 768px) {
            .ai-hero-section {
                padding: 60px 40px;
            }
            
            .ai-main-title {
                font-size: 34px;
            }
            
            .ai-subtitle {
                font-size: 26px;
            }
            
            .ai-description,
            .ai-course-info {
                font-size: 16px;
            }
            
            .ai-register-btn {
                width: auto;
                padding: 15px 35px;
            }
        }
        
        /* 
         =========================================
         Desktop Styles (for screens 1024px and wider)
         =========================================
        */
        @media (min-width: 1024px) {
            .ai-hero-section {
                padding: 80px;
            }
            
            .ai-hero-content {
                max-width: 650px;
            }
            
            .ai-breadcrumbs {
                font-size: 14px;
            }
            
            .ai-main-title {
                font-size: 38px;
            }
            
            .ai-separator {
                margin: 30px 0;
                width: 100px;
            }
            
            .ai-subtitle {
                font-size: 28px;
            }
        }
        @media (max-width:768px){
            .ai-hero-section{
                margin: 0;
                padding: 20px;
                box-sizing: border-box;
                height:80vh;
            }
        }
