

    .section-header2 {
      text-align: center;
      margin-bottom: 30px;
      background-color: white; box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; transition: transform 0.3s, box-shadow 0.3s; padding: 20px 5px 5px 5px; border-radius: 10px ; margin: 20px 5px 5px 5px;;
    }

    .section-title {
      font-size: 25px;
      color: #111;
      font-weight: 700;
      margin-bottom: 10px;
  
      
    }

    .section-subtitle {
      color: #666;
      font-size: 1.1rem;
      line-height: 1.5;
      padding-bottom: 15px ;
    }

    .view-all {
      display: flex;
      justify-content: flex-end;
      margin-bottom: 30px;
    }

    .view-btn {
      background: none;
      color: #0056d6;
      border: none;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: color 0.3s;
    }

    .view-btn:hover {
      color: #003b99;
    }

    /* Grid Layout */
    .video-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      padding: 10px;
    }

    /* Video Card */
    .video-card {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      transition: 0.3s ease;
      border: 2px solid white;

    }

    .video-card:hover {
      transform: scale(1.03);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    /* Thumbnail */
    .video-thumb {
      position: relative;
    }

    .video-thumb img {
      width: 100%;
      height: 160px;
      object-fit: cover;
    }

    .overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .play-icon {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.9);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: #222;
    }

    .live-indicator {
      width: 60px;
      height: 60px;
      background: rgba(255, 0, 0, 0.8);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.8rem;
      animation: pulse 1.5s infinite;
    }

    .live-indicator.green {
      background: rgba(0, 160, 60, 0.8);
    }

    /* Duration & Tag */
    .duration {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(0, 0, 0, 0.7);
      color: #fff;
      padding: 4px 8px;
      font-size: 0.75rem;
      border-radius: 4px;
    }

    .live-tag {
      position: absolute;
      top: 10px;
      left: 10px;
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      padding: 6px 6px;
      border-radius:5px;
      display: flex;
      align-items: center;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    }

    .live-tag.red {
      background: #e63946;
    }

    .live-tag.blue {
      background: #007bff;
    }

    .live-tag.green {
      background: #2ecc71;
    }

    .dot {
      width: 8px;
      height: 8px;
      background: #fff;
      border-radius: 50%;
      margin-right: 6px;
      animation: blink 1s infinite;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0.3;
      }
    }

    /* Video Info */
    .video-info {
      padding: 10px;
    }

    .video-tittle {
      font-size: 15px;
      font-weight: 600;
      color: #222;
      margin-bottom: 8px;
    }

    /* Stats */
    .stats-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 15px;
      font-size: 0.85rem;
      margin-top: 5px;
    }

    .stats-row .left {
      display: flex;
      gap: 15px;
      align-items: center;
    }

    .rating {
      color: #2432fb;
    }

    .views i {
      margin-right: 4px;
    }

    .videos {
      display: block;
      color: #555;
      font-size: 0.85rem;
    }

    .access {
      display: block;
      font-weight: 600;
      font-size: 0.75rem;
    }

    .access.green {
      color: #16a34a;
    }

    .access.blue {
      color: #007bff;
    }

    /* Progress Bar */
    .progress {
      width: 100%;
      background: #e5e7eb;
      height: 6px;
      border-radius: 4px;
      margin-bottom: 15px;
    }

    .progress-bar {
      height: 100%;
      border-radius: 4px;
      animation: pulse 2s infinite;
    }

    .progress-bar.red {
      background: #e63946;
    }

    .progress-bar.blue {
      background: #007bff;
    }

    .progress-bar.green {
      background: #2ecc71;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0.5;
      }
    }

    /* Button */
    .action-btn {
      width: 100%;
      padding: 12px 0;
      border: none;
      border-radius: 10px;
      color: #fff;
      font-weight: 600;
      cursor: pointer;
      transition: transform 0.3s, background 0.3s;
    }

    .action-btn i {
      margin-right: 6px;
    }

    .action-btn.red {
      background: #e63946;
    }

    .action-btn.red:hover {
      background: #e07925;
    }

    .action-btn.blue {
      background: #007bff;
    }

    .action-btn.blue:hover {
      background: #005dc9;
    }

    .action-btn.green {
      background: #2ecc71;
    }

    .action-btn.green:hover {
      background: #28b963;
    }

    /* Grid Layout */
    .video-grid {
      display: grid;
      gap: 25px;
      grid-template-columns: repeat(1, 1fr); /* Default mobile: 1 card */
    }
    /* Tablet (2 cards) */
    @media (min-width: 560px) {
      .video-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* Tablet (2 cards) */
    @media (min-width: 768px) {
      .video-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    /* Desktop (4 cards) */
    @media (min-width: 1200px) {
      .video-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }
