.video-section {
  padding: 60px 30px 60px !important;
  text-align: center !important;
  color: #fff !important;
  position: relative;
  overflow: hidden;
}

h2:hover {
  color: rgb(255, 255, 255) !important;
  text-shadow: rgba(255, 255, 255, 0.5) 0px 0px 10px !important;
}
.video-title {
  font-size: 40px !important;
  font-weight: 700 !important;
  margin-bottom: 40px !important;
  letter-spacing: 1px !important;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.1) !important;
}

.video-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 30px !important;
  max-width: 1440px !important;
  margin: 0 auto !important;
}

.video-wrapper {
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  overflow: hidden !important;
  border-radius: 20px !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6) !important;
  transition: all 0.3s ease !important;
  background: #000;
  position: relative;
}

.video-wrapper:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 20px 60px rgba(255, 255, 255, 0.15) !important;
}

.video-thumb {
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 70px;
  opacity: 0.0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.video-thumb:hover .play-overlay {
  opacity: 1;
}

/* Iframe styling when injected */
.video-wrapper iframe {
  width: 100% !important;
  height: 100% !important;
  border: none !important;
  border-radius: 20px !important;
  display: block !important;
}

/* See More button */
.see-more-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.btn-showcase {
  background-color: #106c31;
  color: #ffffff;
  padding: 1.1rem 2.6rem;
  font-size: 1.1rem;
  border-radius: 100px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 8px 20px rgba(16, 108, 49, 0.35);
  animation: fadeInUp 1.8s ease forwards;
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.btn-showcase:hover,
.btn-showcase:focus {
  background-color: #0d5b2a;
  box-shadow: 0 10px 24px rgba(13, 91, 42, 0.4);
  outline: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr !important;
  }
}