/* ==========================================
   GLOBAL VARIABLES & STYLES
   ========================================== */
   :root {
    --vc-dark-bg: #070C1A;
    --vc-page-bg: #F4F6FB;
    --vc-card-border: #E2E8F0;
    --vc-text-dark: #0F172A;
    --vc-text-muted: #64748B;
    --vc-accent-purple: #7E22CE;
    --vc-accent-orange: #EA580C;
  }
  
  .video-courses-page {
    background-color: var(--vc-page-bg);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--vc-text-dark);
    overflow-x: hidden;
  }
  
  .vc-hero-container,
  .vc-main-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* ==========================================
     HERO SECTION & DECORATIVE BACKGROUNDS
     ========================================== */
  .vc-hero {
    position: relative;
    background: linear-gradient(135deg, #050814 0%, #0B1124 40%, #160D33 100%);
    padding: 40px 0 90px 0;
    color: #FFFFFF;
    overflow: hidden;
  }
  
  /* Fainted Dot Pattern Grid Left */
  .vc-dot-grid-left {
    position: absolute;
    top: 30px;
    left: 20px;
    width: 90px;
    height: 90px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.2) 2px, transparent 2px);
    background-size: 14px 14px;
    z-index: 1;
  }
  
  /* Radial Hero Purple Glow */
  .vc-hero-glow-bubble {
    position: absolute;
    right: 18%;
    top: 15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(126, 34, 206, 0.4) 0%, rgba(11, 17, 36, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
  }
  
  /* SVG Fainted Wavy Lines */
  .vc-fainted-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }
  
  /* Floating Elements (Video Play, Stars, Message Bubbles) */
  .vc-floating-elem {
    position: absolute;
    color: rgba(255, 255, 255, 0.08);
    z-index: 1;
    user-select: none;
    pointer-events: none;
  }
  .vc-play-icon-bg { top: 20%; left: 50%; font-size: 38px; transform: rotate(-10deg); }
  .vc-star-bg { top: 25%; left: 58%; font-size: 22px; color: rgba(255, 255, 255, 0.12); }
  .vc-chat-bubble-1 { top: 15%; right: 8%; font-size: 32px; transform: rotate(15deg); }
  .vc-chat-bubble-2 { bottom: 35%; right: 4%; font-size: 28px; transform: rotate(-10deg); }
  
  .vc-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 2;
  }
  
  .vc-title-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
  }
  
  .vc-hero-play-badge {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #7E22CE 0%, #A855F7 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #FFFFFF;
    box-shadow: 0 8px 20px rgba(126, 34, 206, 0.4);
  }
  
  .vc-hero-title {
    font-size: 42px;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0;
  }
  
  .vc-hero-subtitle {
    font-size: 14px;
    color: #94A3B8;
    max-width: 480px;
    line-height: 1.6;
    margin-bottom: 28px;
  }
  
  /* Stats Row */
  .vc-hero-stats {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  
  .vc-stat-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 14px;
    border-radius: 10px;
  }
  
  .vc-stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
  }
  .vc-stat-icon.purple { background: rgba(168, 85, 247, 0.15); color: #C084FC; }
  .vc-stat-icon.green { background: rgba(34, 197, 94, 0.15); color: #4ADE80; }
  .vc-stat-icon.blue { background: rgba(59, 130, 246, 0.15); color: #60A5FA; }
  .vc-stat-icon.orange { background: rgba(245, 158, 11, 0.15); color: #FBBF24; }
  
  .vc-stat-data strong { display: block; font-size: 13px; color: #FFFFFF; }
  .vc-stat-data span { font-size: 11px; color: #94A3B8; }
  
  .vc-hero-media {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  
  .vc-hero-img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 15px 35px rgba(0,0,0,0.5));
  }
  
  .vc-hero-bottom-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
    pointer-events: none;
  }
  
  /* ==========================================
     STICKY TOP FILTER BAR
     ========================================== */
  .vc-top-filter-bar {
    background: #FFFFFF;
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-end;
    gap: 16px;
    margin-top: -45px;
    margin-bottom: 24px;
    position: relative;
    z-index: 100;
    border: 1px solid var(--vc-card-border);
  }
  
  .sticky-topbar {
    position: sticky;
    top: 80px;
  }
  
  .vc-filter-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  
  .vc-filter-item label {
    font-size: 11px;
    font-weight: 700;
    color: #475569;
  }
  
  .vc-filter-item select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--vc-card-border);
    border-radius: 8px;
    font-size: 13px;
    background-color: #F8FAFC;
    color: var(--vc-text-dark);
    outline: none;
  }
  
  .vc-filter-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .vc-btn-apply {
    background: #0B1120;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    padding: 11px 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
  }
  
  .vc-btn-clear {
    color: var(--vc-accent-orange);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
  }
  
  /* ==========================================
     MAIN LAYOUT & STICKY SIDEBAR
     ========================================== */
  .vc-layout-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 20px;
    align-items: start;
  }
  
  .vc-sticky-sidebar {
    position: sticky;
    top: 170px;
    z-index: 90;
    overflow: visible !important;
    max-height: none !important;
  }
  
  .vc-sidebar-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 14px;
    border: 1px solid var(--vc-card-border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  }
  
  .vc-sidebar-header {
    background: #0B1120;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 13px;
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 10px;
  }
  
  .vc-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .vc-category-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    border-radius: 6px;
    color: #475569;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.2s;
  }
  
  .vc-category-list li.active a,
  .vc-category-list li a:hover {
    background-color: #FFF7ED;
    color: var(--vc-accent-orange);
    font-weight: 700;
  }
  
  .vc-category-list li a .cat-title {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .vc-category-list li a .cat-count {
    font-size: 11px;
    color: #64748B;
    font-weight: 600;
  }
  
  .vc-sidebar-footer-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    color: #64748B;
    text-decoration: none;
    margin-top: 12px;
    font-weight: 600;
    padding: 0 4px;
  }
  
  /* ==========================================
     COURSE CARDS GRID (RIGHT SIDE)
     ========================================== */
  .vc-content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
  }
  
  .vc-content-header h2 {
    font-size: 18px;
    font-weight: 800;
    color: #0F172A;
    margin: 0;
  }
  
  .vc-header-meta {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  .meta-count {
    font-size: 11px;
    color: #64748B;
  }
  
  .vc-sort-box {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #475569;
  }
  
  .vc-sort-box select {
    padding: 4px 8px;
    border: 1px solid var(--vc-card-border);
    border-radius: 6px;
    background: #FFFFFF;
    font-size: 12px;
  }
  
  /* 4 Column Cards Layout */
  .vc-course-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  
  .vc-course-card {
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid var(--vc-card-border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  
  .vc-course-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  }
  
  /* Thumbnail Styling with Gradients & Background Graphics */
  .vc-card-thumb {
    height: 125px;
    padding: 12px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #FFFFFF;
  }
  
  /* Thumbnail Theme Backgrounds */
  .thumb-ca-inter { background: linear-gradient(135deg, #180933 0%, #2A105C 100%); }
  .thumb-ca-found { background: linear-gradient(135deg, #022C1C 0%, #064E3B 100%); }
  .thumb-cs-exec { background: linear-gradient(135deg, #0B1938 0%, #1E3A8A 100%); }
  .thumb-jee { background: linear-gradient(135deg, #431407 0%, #7C2D12 100%); }
  .thumb-neet { background: linear-gradient(135deg, #1F0933 0%, #4C1D95 100%); }
  .thumb-ca-final { background: linear-gradient(135deg, #022E2B 0%, #047857 100%); }
  .thumb-ssc { background: linear-gradient(135deg, #450A0A 0%, #7F1D1D 100%); }
  .thumb-banking { background: linear-gradient(135deg, #0A192F 0%, #1E3A8A 100%); }
  
  .vc-badge {
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 3px 6px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    width: fit-content;
    color: #FFFFFF;
  }
  
  .thumb-title-wrap h3 {
    font-size: 13px;
    font-weight: 800;
    margin: 0;
    max-width: 70%;
    line-height: 1.2;
  }
  
  .thumb-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #FFFFFF;
    transition: transform 0.2s;
  }
  
  .vc-course-card:hover .thumb-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 255, 255, 0.4);
  }
  
  .vc-duration-tag {
    position: absolute;
    bottom: 8px;
    right: 8px;
    font-size: 9px;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.6);
    padding: 2px 5px;
    border-radius: 3px;
    color: #FFFFFF;
  }
  
  /* Card Body */
  .vc-card-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  
  .vc-course-name {
    font-size: 12px;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 10px 0;
    line-height: 1.3;
  }
  
  .vc-instructor {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
  }
  
  .vc-instructor img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .vc-instructor span {
    font-size: 11px;
    color: #475569;
    font-weight: 600;
  }
  
  .vc-card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
    border-top: 1px dashed var(--vc-card-border);
  }
  
  .vc-meta-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  
  .vc-level, .vc-rating {
    font-size: 10px;
    color: #64748B;
  }
  
  .text-gold { color: #F59E0B; }
  
  .vc-price {
    font-size: 14px;
    font-weight: 800;
    color: #7E22CE;
  }
  
  /* ==========================================
     FEATURES BOTTOM STRIP
     ========================================== */
  .vc-features-strip {
    background: #FFFFFF;
    border: 1px solid var(--vc-card-border);
    border-radius: 12px;
    padding: 18px 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 40px;
  }
  
  .vc-feature-card {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .vc-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }
  
  .vc-feature-icon.purple { background: #FAF5FF; color: #7E22CE; }
  .vc-feature-icon.green { background: #F0FDF4; color: #16A34A; }
  .vc-feature-icon.orange { background: #FFF7ED; color: #EA580C; }
  .vc-feature-icon.blue { background: #EFF6FF; color: #2563EB; }
  
  .vc-feature-info h5 {
    font-size: 13px;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 2px 0;
  }
  
  .vc-feature-info p {
    font-size: 11px;
    color: #64748B;
    margin: 0;
    line-height: 1.3;
  }
  
  /* ==========================================
     RESPONSIVE MEDIA QUERIES
     ========================================== */
  @media (max-width: 1200px) {
    .vc-course-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (max-width: 991px) {
    .vc-hero-grid {
      grid-template-columns: 1fr;
      text-align: center;
    }
    .vc-title-row {
      justify-content: center;
    }
    .vc-hero-subtitle {
      margin-left: auto;
      margin-right: auto;
    }
    .vc-hero-stats {
      justify-content: center;
    }
    .vc-hero-media {
      display: none;
    }
    .vc-layout-grid {
      grid-template-columns: 1fr;
    }
    .vc-sticky-sidebar {
      position: relative;
      top: 0;
    }
    .vc-course-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .vc-features-strip {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .vc-top-filter-bar {
      flex-direction: column;
      align-items: stretch;
      position: relative;
      top: 0;
    }
    .vc-course-grid {
      grid-template-columns: 1fr;
    }
    .vc-features-strip {
      grid-template-columns: 1fr;
    }
  }
  
.notes-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    font-size: 13px;
    flex-wrap: wrap;
  }
  
  .notes-breadcrumb li a {
    color: #94A3B8;
    text-decoration: none;
  }
  
  .notes-breadcrumb li.active {
    color: #FFFFFF;
  }
  
  .notes-breadcrumb li+li::before {
    content: ">";
    color: #64748B;
    margin-right: 8px;
  }
  

  /* ==========================================================================
   FINAL RESPONSIVE OVERRIDES
   Hi-Tech Pathshala - Video Courses
   --------------------------------------------------------------------------
   IMPORTANT:
   - No classes removed
   - No HTML changes required
   - Existing desktop design preserved
   - Responsive behavior refined
   ========================================================================== */


/* ==========================================================================
   LARGE DESKTOP
   1400px+
   ========================================================================== */

@media (min-width: 1400px) {

  .vc-hero-container,
  .vc-main-container {
      max-width: 1320px;
  }

  .vc-hero-grid {
      grid-template-columns: 1.1fr 0.9fr;
      gap: 50px;
  }

  .vc-course-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .vc-layout-grid {
      grid-template-columns: 250px minmax(0, 1fr);
      gap: 24px;
  }

}


/* ==========================================================================
 LAPTOP
 1200px - 1399px
 ========================================================================== */

@media (max-width: 1399px) {

  .vc-hero-container,
  .vc-main-container {
      max-width: 1200px;
  }

  .vc-hero-grid {
      gap: 28px;
  }

  .vc-hero-title {
      font-size: 38px;
  }

  .vc-layout-grid {
      grid-template-columns: 225px minmax(0, 1fr);
      gap: 18px;
  }

  .vc-course-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
  }

  .vc-features-strip {
      gap: 16px;
  }

}


/* ==========================================================================
 SMALL LAPTOP / TABLET LANDSCAPE
 992px - 1199px
 ========================================================================== */

@media (max-width: 1199px) {

  /* ---------- Containers ---------- */

  .vc-hero-container,
  .vc-main-container {
      padding-left: 20px;
      padding-right: 20px;
  }


  /* ---------- Hero ---------- */

  .vc-hero {
      padding: 34px 0 80px;
  }

  .vc-hero-grid {
      grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
      gap: 24px;
  }

  .vc-hero-title {
      font-size: 36px;
      line-height: 1.15;
  }

  .vc-hero-subtitle {
      max-width: 450px;
      font-size: 13px;
  }

  .vc-hero-play-badge {
      width: 52px;
      height: 52px;
      font-size: 20px;
      border-radius: 14px;
  }

  .vc-hero-media {
      justify-content: center;
  }

  .vc-hero-img {
      max-height: 260px;
  }


  /* ---------- Decorative Elements ---------- */

  .vc-hero-glow-bubble {
      width: 320px;
      height: 320px;
      right: 10%;
  }

  .vc-chat-bubble-1 {
      right: 4%;
  }

  .vc-chat-bubble-2 {
      right: 2%;
  }


  /* ---------- Filter ---------- */

  .vc-top-filter-bar {
      gap: 12px;
      padding: 14px 16px;
  }

  .vc-filter-item select {
      padding: 9px 10px;
      font-size: 12px;
  }

  .vc-btn-apply {
      padding: 10px 16px;
  }


  /* ---------- Main Layout ---------- */

  .vc-layout-grid {
      grid-template-columns: 220px minmax(0, 1fr);
      gap: 18px;
  }

  .vc-sticky-sidebar {
      top: 150px;
  }


  /* ---------- Course Grid ---------- */

  .vc-course-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
  }

  .vc-card-thumb {
      height: 120px;
  }


  /* ---------- Features ---------- */

  .vc-features-strip {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      padding: 16px 18px;
  }

}


/* ==========================================================================
 TABLET
 768px - 991px
 ========================================================================== */

@media (max-width: 991px) {

  /* ---------- Containers ---------- */

  .vc-hero-container,
  .vc-main-container {
      padding-left: 18px;
      padding-right: 18px;
  }


  /* ---------- Hero ---------- */

  .vc-hero {
      padding: 32px 0 72px;
  }

  .vc-hero-grid {
      grid-template-columns: 1fr;
      gap: 28px;
      text-align: center;
  }

  .vc-title-row {
      justify-content: center;
  }

  .vc-hero-title {
      font-size: 34px;
  }

  .vc-hero-subtitle {
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
  }

  .vc-hero-stats {
      justify-content: center;
  }


  /* ---------- KEEP HERO IMAGE ON TABLET ---------- */

  .vc-hero-media {
      display: flex;
      justify-content: center;
      width: 100%;
  }

  .vc-hero-img {
      max-width: 400px;
      max-height: 220px;
  }


  /* ---------- Decorative Background ---------- */

  .vc-dot-grid-left {
      width: 70px;
      height: 70px;
      left: 12px;
  }

  .vc-hero-glow-bubble {
      width: 280px;
      height: 280px;
      right: 50%;
      transform: translateX(50%);
      top: 25%;
  }

  .vc-play-icon-bg {
      left: 20%;
  }

  .vc-star-bg {
      left: auto;
      right: 20%;
  }

  .vc-chat-bubble-1,
  .vc-chat-bubble-2 {
      opacity: 0.5;
  }


  /* ---------- Filter ---------- */

  .vc-top-filter-bar {
      margin-top: -35px;
      padding: 14px;
      gap: 12px;
  }

  .vc-filter-actions {
      width: 100%;
      justify-content: flex-end;
  }


  /* ---------- Main Layout ---------- */

  .vc-layout-grid {
      grid-template-columns: 1fr;
      gap: 20px;
  }


  /* ---------- Sidebar ---------- */

  .vc-sticky-sidebar {
      position: relative;
      top: auto;
      width: 100%;
  }

  .vc-sidebar-card {
      padding: 12px;
  }

  .vc-category-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 4px;
  }

  .vc-category-list li a {
      height: 100%;
      padding: 9px 10px;
  }

  .vc-sidebar-footer-link {
      margin-top: 10px;
  }


  /* ---------- Content Header ---------- */

  .vc-content-header {
      margin-bottom: 14px;
  }

  .vc-content-header h2 {
      font-size: 17px;
  }


  /* ---------- Course Grid ---------- */

  .vc-course-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
  }


  /* ---------- Features ---------- */

  .vc-features-strip {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
  }

}


/* ==========================================================================
 LARGE MOBILE
 576px - 767px
 ========================================================================== */

@media (max-width: 767px) {

  /* ---------- Containers ---------- */

  .vc-hero-container,
  .vc-main-container {
      padding-left: 16px;
      padding-right: 16px;
  }


  /* ---------- Hero ---------- */

  .vc-hero {
      padding: 28px 0 62px;
  }

  .vc-hero-grid {
      gap: 24px;
  }

  .vc-title-row {
      gap: 12px;
  }

  .vc-hero-play-badge {
      width: 46px;
      height: 46px;
      border-radius: 12px;
      font-size: 18px;
      flex-shrink: 0;
  }

  .vc-hero-title {
      font-size: 29px;
      line-height: 1.18;
  }

  .vc-hero-subtitle {
      font-size: 12px;
      line-height: 1.6;
      margin-bottom: 22px;
  }


  /* ---------- Hero Stats ---------- */

  .vc-hero-stats {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      width: 100%;
      max-width: 500px;
      margin: 0 auto;
  }

  .vc-stat-box {
      width: 100%;
      padding: 8px 10px;
      justify-content: flex-start;
      text-align: left;
  }

  .vc-stat-icon {
      width: 32px;
      height: 32px;
      flex-shrink: 0;
  }

  .vc-stat-data strong {
      font-size: 12px;
  }

  .vc-stat-data span {
      font-size: 10px;
  }


  /* ---------- Hero Image ---------- */

  .vc-hero-media {
      display: flex;
  }

  .vc-hero-img {
      max-width: 320px;
      max-height: 190px;
  }


  /* ---------- Decorative Elements ---------- */

  .vc-floating-elem {
      opacity: 0.5;
  }

  .vc-play-icon-bg {
      font-size: 28px;
  }

  .vc-star-bg {
      font-size: 18px;
  }

  .vc-chat-bubble-1 {
      font-size: 24px;
  }

  .vc-chat-bubble-2 {
      font-size: 22px;
  }


  /* ---------- Filter ---------- */

  .vc-top-filter-bar {
      margin-top: -28px;
      margin-bottom: 20px;
      padding: 14px;
      border-radius: 12px;
  }

  .vc-filter-item {
      width: 100%;
  }

  .vc-filter-item label {
      font-size: 10px;
  }

  .vc-filter-item select {
      padding: 9px 10px;
      font-size: 12px;
  }

  .vc-filter-actions {
      justify-content: space-between;
      width: 100%;
  }

  .vc-btn-apply {
      flex: 1;
      justify-content: center;
  }


  /* ---------- Sidebar ---------- */

  .vc-category-list {
      grid-template-columns: 1fr 1fr;
  }

  .vc-sidebar-header {
      font-size: 12px;
  }


  /* ---------- Content Header ---------- */

  .vc-content-header {
      align-items: flex-start;
      gap: 10px;
      flex-wrap: wrap;
  }

  .vc-header-meta {
      gap: 10px;
  }

  .vc-sort-box {
      font-size: 11px;
  }

  .vc-sort-box select {
      font-size: 11px;
  }


  /* ---------- Course Cards ---------- */

  .vc-course-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
  }

  .vc-card-thumb {
      height: 115px;
      padding: 10px;
  }

  .vc-card-body {
      padding: 11px;
  }

  .vc-course-name {
      font-size: 11px;
  }

  .vc-instructor {
      gap: 6px;
      margin-bottom: 10px;
  }

  .vc-instructor img {
      width: 20px;
      height: 20px;
  }

  .vc-instructor span {
      font-size: 10px;
  }

  .vc-price {
      font-size: 13px;
  }


  /* ---------- Features ---------- */

  .vc-features-strip {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      padding: 14px;
      gap: 12px;
      margin-top: 24px;
      margin-bottom: 30px;
  }

  .vc-feature-card {
      gap: 9px;
  }

  .vc-feature-icon {
      width: 36px;
      height: 36px;
      font-size: 15px;
      border-radius: 9px;
  }

  .vc-feature-info h5 {
      font-size: 11px;
  }

  .vc-feature-info p {
      font-size: 9px;
  }


  /* ---------- Breadcrumb ---------- */

  .notes-breadcrumb {
      gap: 6px;
      font-size: 11px;
      margin-bottom: 14px;
  }

}


/* ==========================================================================
 MOBILE PORTRAIT
 <= 575px
 ========================================================================== */

@media (max-width: 575px) {

  /* ---------- Containers ---------- */

  .vc-hero-container,
  .vc-main-container {
      padding-left: 14px;
      padding-right: 14px;
  }


  /* ---------- Hero ---------- */

  .vc-hero {
      padding: 24px 0 56px;
  }

  .vc-title-row {
      flex-direction: column;
      gap: 10px;
  }

  .vc-hero-title {
      font-size: 26px;
      line-height: 1.2;
  }

  .vc-hero-subtitle {
      font-size: 11px;
      max-width: 340px;
      margin-bottom: 20px;
  }

  .vc-hero-play-badge {
      width: 44px;
      height: 44px;
      font-size: 17px;
  }


  /* ---------- Stats ---------- */

  .vc-hero-stats {
      grid-template-columns: 1fr;
      max-width: 280px;
      gap: 8px;
  }

  .vc-stat-box {
      min-height: 48px;
  }


  /* ---------- Hero Image ---------- */

  .vc-hero-media {
      display: none;
  }


  /* ---------- Decorative Elements ---------- */

  .vc-dot-grid-left {
      width: 55px;
      height: 55px;
      top: 20px;
      left: 8px;
      opacity: 0.5;
  }

  .vc-hero-glow-bubble {
      width: 220px;
      height: 220px;
      top: 30%;
  }

  .vc-fainted-waves {
      opacity: 0.5;
  }

  .vc-floating-elem {
      opacity: 0.25;
  }

  .vc-chat-bubble-2 {
      display: none;
  }


  /* ---------- Filter ---------- */

  .vc-top-filter-bar {
      margin-top: -24px;
      padding: 12px;
      border-radius: 10px;
      gap: 10px;
  }

  .vc-filter-item select {
      padding: 9px;
      font-size: 11px;
  }

  .vc-filter-actions {
      gap: 8px;
  }

  .vc-btn-apply {
      padding: 10px 12px;
      font-size: 11px;
  }

  .vc-btn-clear {
      font-size: 10px;
  }


  /* ---------- Sidebar ---------- */

  .vc-sidebar-card {
      padding: 10px;
      border-radius: 10px;
  }

  .vc-category-list {
      grid-template-columns: 1fr;
      gap: 2px;
  }

  .vc-category-list li a {
      padding: 8px 9px;
      font-size: 11px;
  }


  /* ---------- Content Header ---------- */

  .vc-content-header {
      flex-direction: column;
      align-items: stretch;
      gap: 10px;
  }

  .vc-content-header h2 {
      font-size: 16px;
  }

  .vc-header-meta {
      justify-content: space-between;
      width: 100%;
  }


  /* ---------- Course Cards ---------- */

  .vc-course-grid {
      grid-template-columns: 1fr;
      gap: 12px;
  }

  .vc-card-thumb {
      height: 120px;
  }

  .vc-course-name {
      font-size: 12px;
  }

  .vc-instructor span {
      font-size: 10px;
  }

  .vc-card-footer {
      padding-top: 9px;
  }


  /* ---------- Features ---------- */

  .vc-features-strip {
      grid-template-columns: 1fr;
      gap: 10px;
      padding: 13px;
  }

  .vc-feature-card {
      padding: 2px 0;
  }

  .vc-feature-info h5 {
      font-size: 12px;
  }

  .vc-feature-info p {
      font-size: 10px;
  }


  /* ---------- Breadcrumb ---------- */

  .notes-breadcrumb {
      font-size: 10px;
      gap: 4px;
      margin-bottom: 12px;
  }

  .notes-breadcrumb li+li::before {
      margin-right: 4px;
  }

}


/* ==========================================================================
 SMALL MOBILE
 <= 400px
 ========================================================================== */

@media (max-width: 400px) {

  .vc-hero-container,
  .vc-main-container {
      padding-left: 12px;
      padding-right: 12px;
  }


  .vc-hero {
      padding-top: 22px;
      padding-bottom: 52px;
  }


  .vc-hero-title {
      font-size: 24px;
  }

  .vc-hero-subtitle {
      font-size: 10.5px;
  }


  .vc-stat-box {
      padding: 7px 9px;
  }

  .vc-stat-icon {
      width: 30px;
      height: 30px;
  }

  .vc-stat-data strong {
      font-size: 11px;
  }

  .vc-stat-data span {
      font-size: 9px;
  }


  /* ---------- Filter ---------- */

  .vc-top-filter-bar {
      padding: 10px;
  }

  .vc-btn-apply {
      padding: 9px 10px;
  }


  /* ---------- Cards ---------- */

  .vc-card-thumb {
      height: 115px;
  }

  .vc-card-body {
      padding: 10px;
  }

  .vc-course-name {
      font-size: 11px;
  }


  /* ---------- Features ---------- */

  .vc-features-strip {
      padding: 12px;
  }

}


/* ==========================================================================
 VERY SMALL DEVICES
 <= 350px
 ========================================================================== */

@media (max-width: 350px) {

  .vc-hero-container,
  .vc-main-container {
      padding-left: 10px;
      padding-right: 10px;
  }


  .vc-hero-title {
      font-size: 22px;
  }

  .vc-hero-subtitle {
      font-size: 10px;
  }


  .vc-hero-stats {
      max-width: 100%;
  }


  .vc-filter-actions {
      flex-direction: column;
      align-items: stretch;
  }

  .vc-btn-apply {
      width: 100%;
  }

  .vc-btn-clear {
      text-align: center;
  }


  .vc-content-header h2 {
      font-size: 15px;
  }


  .vc-header-meta {
      flex-direction: column;
      align-items: flex-start;
      gap: 7px;
  }


  .vc-sort-box {
      width: 100%;
      justify-content: space-between;
  }


  .notes-breadcrumb {
      font-size: 9px;
  }

}