/* =============================================
   COMPLETE CSS – CURRICULUM SECTION (jt- prefixed)
   ============================================= */

/* ---- Layout & Grid ---- */
.jt-section {
    padding: 3rem 0;
    position: relative;
  }
  .jt-section--alt {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 40%, #ffffff 100%);
  }
  .jt-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
  }
  .jt-text-center { text-align: center; }
  .jt-position-relative { position: relative; }
  .jt-d-inline-block { display: inline-block; }
  .jt-text-capitalize { text-transform: capitalize; }
  
  .jt-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.75rem;
  }
  .jt-row-reverse { flex-direction: row-reverse; }
  
  .jt-col-12 { flex: 0 0 100%; max-width: 100%; padding: 0 0.75rem; }
  .jt-col-md-5 { flex: 0 0 41.6667%; max-width: 41.6667%; }
  .jt-col-md-7 { flex: 0 0 58.3333%; max-width: 58.3333%; }
  .jt-col-lg-5 { flex: 0 0 41.6667%; max-width: 41.6667%; }
  .jt-col-lg-7 { flex: 0 0 58.3333%; max-width: 58.3333%; }
  .jt-col-xl-4 { flex: 0 0 33.3333%; max-width: 33.3333%; }
  .jt-col-xl-8 { flex: 0 0 66.6667%; max-width: 66.6667%; }
  
  @media (max-width: 767px) {
    .jt-col-md-5, .jt-col-md-7, .jt-col-lg-5, .jt-col-lg-7, .jt-col-xl-4, .jt-col-xl-8 {
      flex: 0 0 100%;
      max-width: 100%;
    }
    .jt-mobile-display-none { display: none; }
  }
  
  /* ---- Left Sidebar (Curriculum Card) ---- */
  .jt-curriculum {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 1px 2px rgba(26,26,26,.04), 0 6px 18px rgba(26,26,26,.05);
    position: sticky;
    top: 96px;
  }
  .jt-curr-head {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
  }
  .jt-curriculum > p {
    color: #5b5b5b;
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
  }
  
  /* Stats rows */
  .jt-sy-img-con {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
  .jt-syllabus-img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff5ee;
    border-radius: 10px;
  }
  .jt-syllabus-img img {
    max-width: 100%;
    height: auto;
  }
  .jt-syllabus-content span {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ff6b00;
  }
  .jt-syllabus-content p {
    margin: 0;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.9rem;
  }
  
  /* Download button */
  .jt-down-cum {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    background: #ff6b00;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    width: 100%;
    margin-top: 0.5rem;
  }
  .jt-down-cum:hover {
    background: #ff8a00;
    box-shadow: 0 8px 20px rgba(255,107,0,0.32);
  }
  
  /* ---- SCROLLABLE RIGHT PANEL ---- */
  .jt-scrollable-content {
    max-height: 650px;
    overflow-y: auto;
    padding-right: 8px;
    scroll-behavior: smooth;
  }
  
  .jt-shadow{
      padding: 20px;
      border-radius: 5px;
       box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10), 
                0 4px 12px rgba(255, 107, 0, 0.06) !important;
  }
  /* Custom scrollbar */
  .jt-scrollable-content::-webkit-scrollbar {
    width: 6px;
  }
  .jt-scrollable-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }
  .jt-scrollable-content::-webkit-scrollbar-thumb {
    background: #ff6b00;
    border-radius: 10px;
  }
  .jt-scrollable-content::-webkit-scrollbar-thumb:hover {
    background: #e05e00;
  }
  
  /* ---- Accordion Styles ---- */
  .jt-accordion {
    display: grid;
    gap: 0.625rem;
    margin-top: 1.5rem;
  }
  .jt-accordion .jt-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 0.22s, transform 0.2s;
  }
  
  
  .jt-card-header {
    margin: 0;
  }
  .jt-card-header a {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    width: 100%;
    padding: 0.875rem 1rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    cursor: pointer;
    background: transparent;
    border: 0;
  }
  .jt-card-header a:hover {
    color: #ff6b00;
    text-decoration: none;
  }
  .jt-card-header a .fa-caret-down {
    margin-left: auto;
    transition: transform 0.22s;
    font-size: 0.9rem;
  }
  .jt-card-header a .fa-caret-down { transform: rotate(0deg); }
  .jt-card-header a:not(.jt-collapsed) .fa-caret-down { transform: rotate(180deg); }
  
  .jt-collapse {
    display: none;
  }
  .jt-collapse.jt-show {
    display: block;
  }
  .jt-card-body {
    padding: 0 1rem 1.125rem;
    color: #5b5b5b;
    font-size: 0.9375rem;
  }
  
  /* ---- Feature List (Chip-style with Icons) ---- */
  .jt-feature-list {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
  }
  .jt-feature-list li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    font-size: 0.9375rem;
    color: #1a1a1a;
    transition: all 0.2s ease-in-out;
    cursor: default;
  }
  .jt-feature-list li:hover {
    background: #fff8f4;
    border-color: #ffd7c0;
    border-left: 3px solid #ff6b00;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.10), 0 1px 2px rgba(26, 26, 26, 0.04);
    transform: translateY(-1px);
  }
  .jt-feature-list li svg {
    width: 18px;
    height: 18px;
    color: #ff6b00;
    flex-shrink: 0;
  }
  
  /* ---- Module Headings ---- */
  .jt-module-heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 1.5rem 0 0.5rem;
    color: #1a1a1a;
  }
  .jt-mb-0 { margin-bottom: 0; }
  
  /* ---- Responsive ---- */
  @media (min-width: 768px) {
    .jt-container { padding: 0 2rem; }
    .jt-section { padding: 4rem 0; }
    .jt-scrollable-content { max-height: 700px; }
  }
  @media (max-width: 767px) {
    .jt-curriculum { position: relative; top: 0; }
    .jt-scrollable-content { max-height: 450px; }
  } 