



/* ------------- testimony category seletion* ------- */

.category-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.category-bar {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 0.6rem;
  padding: 0.5rem 0.5rem;
  margin: 0 auto;
  scrollbar-width: none;
}

.category-bar::-webkit-scrollbar {
  display: none;
}

.category {
  flex: 0 0 auto;
  padding: 0.5rem 1rem;
  /*background-color: #f1f1f1;*/
  border: none;
  border-radius: 20px;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}
/*
.category:hover {
  background-color: #e0e0e0;
 
}*/

.category:hover,
.category:focus,
.category:active {
  color: #fb8b23;
}


.category.active {
  background-color: #000;
  color: #fff;
}

.scroll-btn {
  display: none; 
  background: #fff;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0 0.5rem;
  color: #333;
  z-index: 2;
}

.scroll-btn.visible {
  display: block;
}

.scroll-btn:hover {
  color: #000;
}

.scroll-btn.left {
  margin-right: 0.3rem;
}

.scroll-btn.right {
  margin-left: 0.3rem;
}









/* ------------- testimony overall section* ------- */

.testimony-page-content{
  background-color: #0f0f0f;
}

.testimony-text-heading{
  max-width: 90%;
  margin: 0 auto;
}



.testimony-text-heading h3,
.testimony-text-heading h2 {
  text-align: center;
  color: #f1f1f1;
}

.testimony-text-heading p {
  color: #f1f1f1;
  font-size: 1.5rem;
}

.testimony-text-heading p {
  margin-top: 1rem; 
}


.testimony-text-heading{
padding-top: 2rem;

}


/* ------------------- testimony rows * ----------- */

.tstimony-page {
  max-width: 90%;
  margin: 0 auto;
  padding: 1rem 1rem;
  font-family: Arial, sans-serif;
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #0f0f0f;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.video-card {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.video-card:hover {
  transform: translateY(-4px);
}

.thumbnail {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.video-info {
  margin-top: 0.6rem;
}

.video-title {
  font-size: 1rem;
  font-weight: bold;
  color: #f1f1f1;
  margin: 0 0 0.3rem;
  line-height: 1.3;
}

.channel-name {
  font-size: 0.9rem;
  color: #606060;
  margin: 0;
}

.meta {
  font-size: 0.8rem;
  color: #909090;
  margin-top: 0.2rem;
}