/* * SCOPED CSS - Safe to copy 
   * All styles are prefixed with #unique-testimonial-section
   */
  
  #unique-testimonial-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden; 
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    box-sizing: border-box;
    width: 100%;
  }

  /* Reset box-sizing for children */
  #unique-testimonial-section * {
    box-sizing: border-box;
  }

  /* Headline Styles */
  #unique-testimonial-section .uts-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
  }

  #unique-testimonial-section .uts-sub-title {
    display: block;
    color: #4f46e5; /* Indigo-600 */
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  /* Main Title with Gradient Class */
  #unique-testimonial-section .uts-main-title {
    font-size: 36px;
    font-weight: 800;
    color: #111827; /* Fallback color */
    margin: 0;
    line-height: 1.2;
  }

  /* The Gradient Style you requested */
  #unique-testimonial-section .gradient-headline {
    background: linear-gradient(93deg, #5135FF 10.65%, #FF5455 89.35%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    text-align: center;
  }

  #unique-testimonial-section .uts-container {
    width: 100%;
    max-width: 1200px; 
    margin: 0 auto;
    position: relative;
    height: 400px; /* Slight height increase for mobile spacing */
    display: flex;
    align-items: center;
  }

  #unique-testimonial-section .uts-track {
    display: flex;
    gap: 30px;
    position: absolute;
    left: 50%; /* Start from center */
    will-change: transform;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  #unique-testimonial-section .uts-card {
    width: 320px;
    min-height: 220px;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    position: relative;
    flex-shrink: 0;
    opacity: 0.5; 
    transform: scale(0.9); 
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
  }

  #unique-testimonial-section .uts-card.active {
    opacity: 1;
    transform: scale(1.1); 
    z-index: 10;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }

  /* Colors based on index */
  #unique-testimonial-section .uts-card:nth-child(8n+1) { background: #e0f2fe; }
  #unique-testimonial-section .uts-card:nth-child(8n+2) { background: #fce7f3; }
  #unique-testimonial-section .uts-card:nth-child(8n+3) { background: #dcfce7; }
  #unique-testimonial-section .uts-card:nth-child(8n+4) { background: #fff7ed; }
  #unique-testimonial-section .uts-card:nth-child(8n+5) { background: #e0e7ff; }
  #unique-testimonial-section .uts-card:nth-child(8n+6) { background: #f3e8ff; }
  #unique-testimonial-section .uts-card:nth-child(8n+7) { background: #fee2e2; }
  #unique-testimonial-section .uts-card:nth-child(8n+8) { background: #fef9c3; }

  #unique-testimonial-section .uts-quote-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.05);
    border-radius: 0 20px 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0,0,0,0.2);
    font-size: 32px;
    font-weight: bold;
  }

  #unique-testimonial-section h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
  }

  #unique-testimonial-section span.uts-designation {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  #unique-testimonial-section p.uts-feedback {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #374151;
    font-style: italic;
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    #unique-testimonial-section {
      padding: 60px 0;
    }
    
    #unique-testimonial-section .uts-main-title {
        font-size: 28px;
        padding: 0 10px;
    }

    #unique-testimonial-section .uts-card {
      width: 280px; /* Smaller width on mobile */
      min-height: 200px;
      padding: 25px 20px;
    }

    #unique-testimonial-section .uts-card.active {
      transform: scale(1.05); /* Less zoom on mobile to stay within screen */
    }
  }



  /* for syllabus code  */


    /* * ==========================================
   * SAFE-TO-COPY CSS
   * All styles are prefixed with #unique-syllabus-section
   * ========================================== */

  #unique-syllabus-section {
    padding: 100px 6%;
    background: #f8fafc;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #0f172a;
    box-sizing: border-box;
    width: 100%;
    position: relative;
    overflow: hidden;
  }

  /* Background decorative blob to make it pop */
  #unique-syllabus-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(81, 53, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
  }

  #unique-syllabus-section * {
    box-sizing: border-box;
  }

  /* Layout Grid */
  #unique-syllabus-section .uss-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
  }

  /* --- Sidebar Styles --- */
  #unique-syllabus-section .uss-sidebar {
    position: sticky;
    top: 40px;
  }

  #unique-syllabus-section .uss-sub-title {
    display: inline-block;
    padding: 6px 12px;
    background: #e0e7ff;
    color: #4338ca;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 6px;
    margin-bottom: 20px;
  }

  #unique-syllabus-section .uss-main-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 24px 0;
    color: #0f172a;
  }

  #unique-syllabus-section .uss-main-title span {
    background: linear-gradient(93deg, #5135FF 10.65%, #FF5455 89.35%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  #unique-syllabus-section .uss-description {
    font-size: 17px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 32px;
  }

  /* Creative Button */
  #unique-syllabus-section .uss-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    background: #0f172a;
    color: #fff;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    overflow: hidden;
    z-index: 1;
  }

  /* Button Gradient Hover Effect */
  #unique-syllabus-section .uss-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(93deg, #5135FF 0%, #FF5455 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
  }

  #unique-syllabus-section .uss-btn:hover::before {
    opacity: 1;
  }

  #unique-syllabus-section .uss-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(81, 53, 255, 0.2);
  }

  /* --- Timeline Accordion Styles --- */
  #unique-syllabus-section .uss-timeline-wrapper {
    position: relative;
    padding-left: 20px; /* Space for the line markers */
  }

  /* The continuous vertical line */
  #unique-syllabus-section .uss-timeline-line {
    position: absolute;
    left: 27px; /* Align with center of bubbles */
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: #e2e8f0;
    z-index: 0;
  }

  #unique-syllabus-section .uss-timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    gap: 30px;
  }

  /* The Number Bubble */
  #unique-syllabus-section .uss-marker {
    position: relative;
    z-index: 2;
    width: 54px;
    height: 54px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #94a3b8;
    flex-shrink: 0;
    transition: all 0.4s ease;
    cursor: pointer;
  }

  /* Active Marker State */
  #unique-syllabus-section .uss-timeline-item.active .uss-marker {
    background: #fff;
    border-color: transparent; /* Use gradient border trick if needed, or just shadow */
    color: #5135FF;
    box-shadow: 0 0 0 4px rgba(81, 53, 255, 0.1);
    transform: scale(1.1);
  }
  
  /* Gradient Border for Active Marker */
  #unique-syllabus-section .uss-timeline-item.active .uss-marker::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(93deg, #5135FF, #FF5455);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
  }

  /* Pulse Animation for Active Marker */
  @keyframes uss-pulse {
    0% { box-shadow: 0 0 0 0 rgba(81, 53, 255, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(81, 53, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(81, 53, 255, 0); }
  }

  #unique-syllabus-section .uss-timeline-item.active .uss-marker {
    animation: uss-pulse 2s infinite;
  }

  /* The Card Container */
  #unique-syllabus-section .uss-card {
    flex-grow: 1;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  }

  #unique-syllabus-section .uss-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
  }

  #unique-syllabus-section .uss-timeline-item.active .uss-card {
    border-color: #5135FF;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 0 0 1px #5135FF;
  }

  /* Card Header */
  #unique-syllabus-section .uss-card-header {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #unique-syllabus-section .uss-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
  }

  #unique-syllabus-section .uss-card-duration {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 20px;
  }

  /* Toggle Icon */
  #unique-syllabus-section .uss-toggle {
    width: 24px;
    height: 24px;
    position: relative;
    color: #94a3b8;
    transition: color 0.3s;
  }
  
  #unique-syllabus-section .uss-timeline-item.active .uss-toggle {
    color: #5135FF;
  }

  /* Card Body */
  #unique-syllabus-section .uss-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background: #f8fafc;
  }

  #unique-syllabus-section .uss-content {
    padding: 0 24px 24px 24px;
  }

  #unique-syllabus-section .uss-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr; /* Single column for list */
    gap: 12px;
  }

  #unique-syllabus-section .uss-list li {
    position: relative;
    padding-left: 24px;
    font-size: 15px;
    color: #475569;
    line-height: 1.5;
  }

  /* Custom Checkmark Bullet */
  #unique-syllabus-section .uss-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #5135FF;
    font-weight: 800;
    font-size: 14px;
  }

  /* Responsive Design */
  @media (max-width: 900px) {
    #unique-syllabus-section {
      padding: 60px 5%;
    }

    #unique-syllabus-section .uss-container {
      grid-template-columns: 1fr;
      gap: 50px;
    }

    #unique-syllabus-section .uss-sidebar {
      position: static;
      text-align: center;
    }
    
    #unique-syllabus-section .uss-main-title {
        font-size: 36px;
    }

    /* Adjust timeline for mobile */
    #unique-syllabus-section .uss-timeline-wrapper {
      padding-left: 0;
    }

    /* Hide the line on very small screens if it gets messy, or keep it */
    #unique-syllabus-section .uss-timeline-line {
      left: 20px;
    }

    #unique-syllabus-section .uss-timeline-item {
      gap: 20px;
    }

    #unique-syllabus-section .uss-marker {
      width: 42px;
      height: 42px;
      font-size: 15px;
    }
    
    #unique-syllabus-section .uss-card-header {
      padding: 18px;
    }
    
    #unique-syllabus-section .uss-card-title {
        font-size: 17px;
    }
  }


    /* * PROJECT-SAFE STYLES 
     * These styles use the 'ds-' (Dev Stack) prefix to avoid conflicting 
     * with your existing project classes.
     */

    /* Reset for this widget only */
    #ds-widget-root {
      font-family: 'Inter', sans-serif;
      color: #0f172a; /* Slate 900 */
      background-color: #ffffff;
      width: 100%;
      /* CRITICAL FIX: Removed 'overflow: hidden' here. 
         Overflow on a parent container breaks 'position: sticky', 
         causing the scroll effect to fail/jitter. */
      box-sizing: border-box;
      position: relative;
    }

    #ds-widget-root * {
      box-sizing: border-box;
    }

    /* --- 1. INTRO SECTION --- */
    .ds-intro {
      height: 80vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 2.5rem 1rem;
    }

    .ds-intro-content {
      max-width: 48rem;
      margin: 0 auto;
    }

    .ds-badge {
      display: inline-block;
      padding: 0.375rem 1rem;
      border-radius: 9999px;
      background-color: rgba(81, 53, 255, 0.1);
      color: #5135ff;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      margin-bottom: 2rem;
      border: 1px solid rgba(81, 53, 255, 0.2);
      text-transform: uppercase;
    }

    .ds-title {
      font-size: 3rem;
      line-height: 1.1;
      font-weight: 700;
      margin-bottom: 2rem;
      letter-spacing: -0.025em;
    }

    /* Responsive Font Size */
    @media (min-width: 768px) {
      .ds-title { font-size: 4.5rem; }
    }

    .ds-title span { display: block; }
    .ds-text-primary { color: #5135ff; }
    .ds-text-dark { color: #000000; }

    .ds-subtitle {
      color: #64748b; /* Slate 500 */
      font-size: 1.125rem;
      max-width: 42rem;
      margin: 0 auto 3rem auto;
      line-height: 1.625;
    }

    .ds-arrow {
      color: #94a3b8;
      animation: ds-bounce 2s infinite;
      width: 24px;
      height: 24px;
      margin: 0 auto;
    }

    @keyframes ds-bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(25%); }
    }

    /* --- 2. SCROLL SECTION --- */
    .ds-scroll-section {
      position: relative;
      height: 500vh; /* Determines scroll length */
    }

    .ds-sticky-wrapper {
      position: sticky;
      top: 0;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding: 2.5rem 0;
    }

    .ds-cards-container {
      position: relative;
      width: 92%;
      max-width: 1080px;
      height: 65vh; /* Mobile Height */
    }

    @media (min-width: 768px) {
      .ds-cards-container { height: 448px; }
    }

    /* --- CARD STYLES --- */
    .ds-card {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: white;
      border-radius: 24px;
      border: 1px solid rgba(0,0,0,0.08);
      box-shadow: 0 10px 40px -10px rgba(0,0,0,0.1);
      overflow: hidden;
      transform-origin: top center;
      display: flex;
      flex-direction: column;
      will-change: transform;
    }

    @media (min-width: 768px) {
      .ds-card {
        border-radius: 40px;
        flex-direction: row;
      }
    }

    .ds-card-content {
      width: 100%;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .ds-card-content { width: 50%; padding: 3rem; }
    }

    .ds-card-media {
      width: 100%;
      height: 14rem;
      position: relative;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .ds-card-media { width: 50%; height: 100%; }
    }

    .ds-card-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .ds-card:hover .ds-card-img {
      transform: scale(1.05);
    }

    /* Card Content Typography */
    .ds-category {
      font-size: 0.875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      display: block;
      margin-bottom: 1rem;
    }

    .ds-card-title {
      font-size: 1.875rem;
      font-weight: 700;
      line-height: 1.2;
      color: #0f172a;
      margin: 0 0 1rem 0;
    }

    @media (min-width: 768px) {
      .ds-card-title { font-size: 2.25rem; }
    }

    .ds-card-desc {
      font-size: 1rem;
      color: #475569;
      line-height: 1.6;
      margin: 0;
    }

    @media (min-width: 768px) {
      .ds-card-desc { font-size: 1.125rem; }
    }

    .ds-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 600;
      color: #0f172a;
      background: none;
      border: none;
      border-bottom: 1px solid #e2e8f0;
      padding-bottom: 0.25rem;
      cursor: pointer;
      font-size: 1rem;
      transition: all 0.2s;
    }

    .ds-btn svg {
      width: 16px;
      height: 16px;
      transition: transform 0.2s;
    }

    .ds-btn:hover svg { transform: translateX(4px); }

    /* Colors for specific cards */
    .ds-color-1 { color: #059669; } /* Emerald */
    .ds-btn-1:hover { color: #059669; border-color: #059669; }

    .ds-color-2 { color: #2563eb; } /* Blue */
    .ds-btn-2:hover { color: #2563eb; border-color: #2563eb; }

    .ds-color-3 { color: #ea580c; } /* Orange */
    .ds-btn-3:hover { color: #ea580c; border-color: #ea580c; }

    .ds-color-4 { color: #9333ea; } /* Purple */
    .ds-btn-4:hover { color: #9333ea; border-color: #9333ea; }

    .ds-spacer { height: 20vh; }




         /* * ==========================================
         * COMPONENT STYLES (Copy this block)
         * ==========================================
         */

        /* * All styles are scoped under '.dt-wrapper' 
         * and use the prefix 'dt-' to prevent conflicts.
         */
        
        .dt-wrapper {
            /* --- Component Variables --- */
            --dt-bg-card: #ffffff;
            --dt-text-main: #1f2937; 
            --dt-text-muted: #6b7280; 
            --dt-text-heading: #111827;
            --dt-border: #f3f4f6; 
            --dt-primary: #3b82f6;
            
            /* Lighter, more diffuse/airy shadows */
            --dt-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05); 
            
            --dt-font: 'Inter', system-ui, -apple-system, sans-serif;
            
            /* Gradient defined here for reuse */
            --dt-gradient: linear-gradient(135deg, #5b2dd8 0%, #db2777 100%);
            
            /* Layout & Font Defaults */
            font-family: var(--dt-font);
            width: 100%;
            overflow: hidden;
            background-color: transparent; 
            position: relative; /* Ensure containment context */
            transition: background-color 0.3s ease;
        }

        /* Dark Mode Support via class on wrapper ONLY */
        .dt-wrapper.dt-dark {
            --dt-bg-card: #1f1f1f;
            --dt-text-main: #f9fafb;
            --dt-text-heading: #f9fafb;
            --dt-text-muted: #9ca3af;
            --dt-border: #374151;
            --dt-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
            
            /* Set a background for the section itself in dark mode 
               so it stands out as an isolated block */
            background-color: #171717; 
        }

        /* Internal Reset to protect component from external CSS */
        .dt-wrapper * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        /* --- Structure --- */
        .dt-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 16px;
            position: relative;
        }

        /* Header Elements */
        .dt-header {
            /* Use Flexbox Column to STRICTLY stack elements vertically */
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            
            max-width: 600px;
            margin: 0 auto 60px auto;
            
            /* Entrance Anim */
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 1s ease, transform 1s ease;
        }
        
        .dt-header.dt-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .dt-badge {
            display: inline-block;
            background: var(--dt-gradient);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: #ffffff; 
            margin-bottom: 20px;
            border: none;
        }

        .dt-title {
            font-size: 36px;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: var(--dt-text-heading);
            margin-bottom: 16px;
            line-height: 1.2;
            
            background-image: var(--dt-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
            display: inline-block; 
        }

        .dt-desc {
            font-size: 18px;
            line-height: 1.6;
            color: var(--dt-text-muted);
        }

        /* Grid Layout */
        .dt-grid {
            display: flex;
            justify-content: center;
            gap: 24px;
            height: 680px; 
            overflow: hidden;
            position: relative;
            /* Gradient Mask */
            mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
            -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
        }
        
        .dt-col {
            width: 314px; 
            flex-shrink: 0;
        }

        .dt-track {
            display: flex;
            flex-direction: column;
            gap: 24px;
            padding-bottom: 24px;
            animation: dt-scroll linear infinite;
            will-change: transform; 
        }

        /* --- Card Styles --- */
        .dt-card {
            width: 314px;
            height: auto; 
            min-height: 200px;
            background-color: var(--dt-bg-card);
            border: 1px solid var(--dt-border);
            border-radius: 24px;
            padding: 32px; 
            box-shadow: var(--dt-shadow);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            user-select: none;
            cursor: default;
        }

        .dt-card-text {
            font-size: 16px; 
            line-height: 1.7; 
            color: var(--dt-text-muted);
            font-weight: 400;
            margin-bottom: 24px; 
            display: -webkit-box;
            -webkit-line-clamp: 6;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .dt-card-footer {
            display: flex;
            align-items: center;
            margin-top: auto;
        }

        .dt-meta {
            display: flex;
            flex-direction: column;
        }

        .dt-name {
            font-size: 16px;
            font-weight: 700;
            color: var(--dt-text-heading);
            line-height: 1.2;
        }

        .dt-role {
            font-size: 13px;
            color: var(--dt-text-muted);
            margin-top: 4px;
            font-weight: 500;
        }

        @keyframes dt-scroll {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }

        @media (max-width: 1024px) {
            .dt-grid { gap: 16px; }
            .dt-col:last-child { display: none; }
        }

        @media (max-width: 768px) {
            .dt-col:nth-child(2) { display: none; }
            .dt-title { font-size: 28px; }
            
            /* Move button slightly on mobile */
            .dt-toggle-btn { top: 10px; right: 10px; width: 40px; height: 40px; }
        }

        /* Circular Button Styles - SCOPED & POSITIONED ABSOLUTE */
        .dt-toggle-btn {
            position: absolute; 
            top: 30px; 
            right: 30px; 
            z-index: 10; 
            width: 50px; 
            height: 50px;
            border-radius: 50%;
            background: var(--dt-gradient);
            color: #fff; 
            border: 2px solid rgba(255, 255, 255, 0.2); 
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            outline: none;
        }
        .dt-toggle-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(91, 45, 216, 0.3);
        }
        .dt-toggle-btn:active {
            transform: scale(0.95);
        }
        .dt-toggle-btn svg {
            width: 22px;
            height: 22px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        
        .dt-toggle-btn .icon-moon { display: none; }
        
        /* Icon toggle logic based on wrapper class */
        .dt-wrapper.dt-dark .dt-toggle-btn .icon-sun { display: none; }
        .dt-wrapper.dt-dark .dt-toggle-btn .icon-moon { display: block; }




        /* =========================================
   ISOLATED STATS COMPONENT STYLES
   Prefix: st-
   ========================================= */

/* Component Wrapper - Scopes variables and base styles */
.st-section {
  /* Local Variables */
  --st-navy: #1e3a8a;
  --st-bright-blue: #3b82f6;
  --st-bg: #ffffff;
  --st-border: #e5e7eb;
  --st-text-main: #374151;
  
  /* Layout & Reset */
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--st-bg);
  padding: 60px 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Ensure box-sizing for all children */
.st-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===== GRID CONTAINER ===== */
.st-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  /* Default: 4 columns + 1 highlight column */
  grid-template-columns: repeat(4, 1fr) 1.4fr;
  gap: 20px;
}

/* ===== CARD ===== */
.st-card {
  background: #ffffff;
  border: 1px solid var(--st-border);
  border-radius: 22px;
  padding: 24px 20px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  /* Removed hover transition/transform */
}

/* ===== MOVING LIGHT SHIMMER ===== */
.st-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(59, 130, 246, 0.08), 
    transparent 70%
  );
  transform: translateX(-100%);
  /* UPDATED: FAST ANIMATION (2 seconds) */
  animation: st-shimmer 2s linear infinite;
  pointer-events: none;
}

@keyframes st-shimmer {
  0% { transform: translateX(-100%); }
  /* Faster pass-through */
  50% { transform: translateX(100%); } 
  100% { transform: translateX(100%); }
}

/* ===== NUMBER ===== */
.st-value {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 8px;
  background: linear-gradient(
    270deg,
    var(--st-bright-blue),
    var(--st-navy),
    var(--st-bright-blue)
  );
  background-size: 400% 400%;
  /* UPDATED: FASTER GRADIENT (3 seconds) */
  animation: st-gradient-move 2s ease infinite;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@keyframes st-gradient-move {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===== LABEL ===== */
.st-label {
  font-size: 13px;
  color: var(--st-text-main);
  letter-spacing: 0.2px;
  text-transform: uppercase;
  line-height: 1.5;
  font-weight: 600;
  word-wrap: break-word; 
  overflow-wrap: break-word;
}

/* ===== HIGHLIGHT CARD (Last One) ===== */
.st-card.st-highlight {
  background: linear-gradient(
    135deg,
    var(--st-navy),
    var(--st-bright-blue)
  );
  border: none;
  grid-column: auto; 
}

.st-card.st-highlight::before { display: none; }

.st-card.st-highlight .st-value {
  font-size: 42px;
  background: linear-gradient(270deg, #ffffff, #bfdbfe, #ffffff);
  background-size: 300% 300%;
  /* UPDATED: FASTER GRADIENT (3 seconds) */
  animation: st-gradient-move 3s ease infinite;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.st-card.st-highlight .st-label {
  color: #eff6ff;
  opacity: 0.9;
}

/* ===== BAR GRAPH ===== */
.st-bars {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  gap: 6px;
  align-items: flex-end;
}

.st-bars span {
  width: 8px;
  border-radius: 4px;
  background: linear-gradient(180deg, #93c5fd, var(--st-bright-blue));
  /* UPDATED: FAST PULSE (1 second) */
  animation: st-bar-pulse 1s ease-in-out infinite;
}

.st-bars span:nth-child(1) { height: 20px; background: rgba(255,255,255,0.3); }
.st-bars span:nth-child(2) { height: 30px; animation-delay: .1s; background: rgba(255,255,255,0.6); }
.st-bars span:nth-child(3) { height: 45px; animation-delay: .2s; background: #ffffff; }

@keyframes st-bar-pulse {
  0%,100% { transform: scaleY(0.9); }
  50% { transform: scaleY(1.1); }
}

/* =========================================
   RESPONSIVE BREAKPOINTS
   ========================================= */

/* Tablet / Small Laptop */
@media (max-width: 1200px) {
  .st-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .st-card.st-highlight {
    grid-column: span 1; 
  }
}

/* Tablet Portrait */
@media (max-width: 900px) {
  .st-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .st-card.st-highlight {
    grid-column: span 2;
  }
  .st-value {
    font-size: 32px;
  }
}

/* Mobile */
@media (max-width: 550px) {
  .st-grid {
    grid-template-columns: repeat(2, 1fr); /* 2x2 grid */
    gap: 12px;
  }
  
  .st-card.st-highlight {
    grid-column: span 2; /* Highlight card spans bottom */
  }
  
  .st-card {
    padding: 16px;
    min-height: auto; 
  }
  
  .st-value {
    font-size: 28px;
    margin-bottom: 4px;
  }

  .st-label {
    font-size: 11px;
    line-height: 1.3;
  }
}