.videos {
    padding: 60px 0;
    overflow: hidden;
  }
  
  .video-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s ease;
  }
  
  .video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  }
  
  .video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
  }
  
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }
  
  .video-info {
    padding: 20px;
  }
  
  .video-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #008374;
    margin-bottom: 10px;
  }
  
  .video-info p {
    color: #666;
    margin-bottom: 15px;
  }
  
  .video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #777;
    font-size: 14px;
  }
  
  .video-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .watch-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #008374;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .watch-btn:hover {
    color: #006659;
  }
  
  /* Filters Styles */
  .filters {
    margin-bottom: 30px;
    padding: 20px 0;
  }
  
  .filters button {
    margin: 0 8px;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
    background-color: #f5f6f7;
    border: none;
    color: #444444;
  }
  
  .filters button.active {
    background-color: #008374;
    color: #ffffff;
  }
  
  .filters button:hover {
    background-color: #006659;
    color: #ffffff;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .video-info h3 {
      font-size: 18px;
    }
    
    .filters button {
      margin: 5px;
      padding: 8px 20px;
      font-size: 14px;
    }
  }
  