/* Premium Video Page Styles */
.premium-video-page {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  min-height: 100vh;
}

/* Breadcrumb Enhancement */
.premium-video-page .breadumtop {
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 15px 20px;
  margin: 20px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.premium-video-page .breadcrumb {
  background: none !important;
  margin: 0;
  padding: 0;
}

.premium-video-page .breadcrumb-item a {
  color: #ff6100;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.premium-video-page .breadcrumb-item a:hover {
  color: #ff8c00;
}

.premium-video-page .breadcrumb-item.active {
  color: #4a5568;
  font-weight: 500;
}

/* Main Content Container */
.premium-video-page .recent-recruits-post {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin: 30px 0;
}

/* Section Title */
.premium-video-page .recent-recruits-post p {
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  color: #1a202c !important;
  margin-bottom: 20px !important;
  position: relative;
}

.premium-video-page .recent-recruits-post p::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #ff6100, #ff8c00);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Subheading */
.premium-video-page .recent-recruits-post h1 {
  font-size: 1.6rem !important;
  color: #4a5568 !important;
  font-weight: 600 !important;
  margin-bottom: 20px !important;
}

/* Description */
.premium-video-page .recent-recruits-post h2 {
  font-size: 1.1rem !important;
  color: #6b7280 !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  margin-bottom: 30px !important;
}

/* Video Grid */
.premium-video-page .row {
  margin: 0 -15px;
}

.premium-video-page .col-lg-3 {
  padding: 0 15px;
  margin-bottom: 30px;
}

/* Video Card Container */
.premium-video-page .position-relative {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.premium-video-page .position-relative:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Portrait Aspect Ratio for Video Images */
.premium-video-page .position-relative img {
  width: 100%;
  height: 400px; /* Portrait height */
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
  border-radius: 15px;
}

.premium-video-page .position-relative:hover img {
  transform: scale(1.05);
}

/* Play Button */
.premium-video-page .recruit-video {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  background: #fff !important;
  color: #ff6100 !important;
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 20px !important;
  transition: all 0.3s ease !important;
  z-index: 10 !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
  text-decoration: none !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.premium-video-page .recruit-video:hover {
  background: #ff6100 !important;
  transform: translate(-50%, -50%) scale(1.1) !important;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 6px 20px rgba(255, 97, 0, 0.4) !important;
}

.premium-video-page .recruit-video i {
  margin-left: 2px !important;
  color: #ff6100 !important;
  transition: color 0.3s ease !important;
  display: block !important;
  line-height: 1 !important;
  font-size: 20px !important;
}

.premium-video-page .recruit-video:hover i {
  color: #fff !important;
}

/* Additional overrides to ensure play button works correctly */
.premium-video-page .position-relative .recruit-video {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  background: #fff !important;
  color: #ff6100 !important;
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 20px !important;
  transition: all 0.3s ease !important;
  z-index: 10 !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
  text-decoration: none !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.premium-video-page .position-relative .recruit-video:hover {
  background: #ff6100 !important;
  transform: translate(-50%, -50%) scale(1.1) !important;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 6px 20px rgba(255, 97, 0, 0.4) !important;
}

.premium-video-page .position-relative .recruit-video i {
  margin-left: 2px !important;
  color: #ff6100 !important;
  transition: color 0.3s ease !important;
  display: block !important;
  line-height: 1 !important;
  font-size: 20px !important;
}

.premium-video-page .position-relative .recruit-video:hover i {
  color: #fff !important;
}

/* Override main style.css conflicting styles */
.premium-video-page .col-lg-3 .position-relative .recruit-video,
.premium-video-page .py-3 .position-relative .recruit-video {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  background: #fff !important;
  color: #ff6100 !important;
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 20px !important;
  transition: all 0.3s ease !important;
  z-index: 10 !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
  text-decoration: none !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.premium-video-page .col-lg-3 .position-relative .recruit-video:hover,
.premium-video-page .py-3 .position-relative .recruit-video:hover {
  background: #ff6100 !important;
  transform: translate(-50%, -50%) scale(1.1) !important;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 6px 20px rgba(255, 97, 0, 0.4) !important;
}

.premium-video-page .col-lg-3 .position-relative .recruit-video i,
.premium-video-page .py-3 .position-relative .recruit-video i {
  margin-left: 2px !important;
  color: #ff6100 !important;
  transition: color 0.3s ease !important;
  display: block !important;
  line-height: 1 !important;
  font-size: 20px !important;
}

.premium-video-page .col-lg-3 .position-relative .recruit-video:hover i,
.premium-video-page .py-3 .position-relative .recruit-video:hover i {
  color: #fff !important;
}

/* Video Content */
.premium-video-page .recent-recruits-post-content {
  background: #fff;
  padding: 20px;
  border-radius: 0 0 15px 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.premium-video-page .recent-recruits-post-content h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 8px;
  line-height: 1.4;
}

.premium-video-page .recent-recruits-post-content h6 {
  font-size: 1rem;
  font-weight: 600;
  color: #ff6100;
  margin-bottom: 0;
  line-height: 1.4;
}

/* Pagination */
.premium-video-page .paginationfftr {
  margin-top: 40px;
}

.premium-video-page .pagination {
  justify-content: center;
}

.premium-video-page .pagination .page-link {
  color: #ff6100;
  border-color: rgba(255, 97, 0, 0.2);
  padding: 10px 15px;
  margin: 0 5px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.premium-video-page .pagination .page-link:hover {
  background-color: #ff6100;
  border-color: #ff6100;
  color: #fff;
}

.premium-video-page .pagination .page-item.active .page-link {
  background-color: #ff6100;
  border-color: #ff6100;
  color: #fff;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .premium-video-page .position-relative img {
    height: 350px;
  }
}

@media (max-width: 992px) {
  .premium-video-page .position-relative img {
    height: 320px;
  }
  
  .premium-video-page .recent-recruits-post {
    padding: 30px 20px;
  }
  
  .premium-video-page .recent-recruits-post p {
    font-size: 2rem !important;
  }
}

@media (max-width: 768px) {
  .premium-video-page .position-relative img {
    height: 300px;
  }
  
  .premium-video-page .recent-recruits-post {
    padding: 25px 15px;
  }
  
  .premium-video-page .recent-recruits-post p {
    font-size: 1.8rem !important;
  }
  
  .premium-video-page .recent-recruits-post h1 {
    font-size: 1.4rem !important;
  }
  
  .premium-video-page .recent-recruits-post h2 {
    font-size: 1rem !important;
  }
}

@media (max-width: 576px) {
  .premium-video-page .position-relative img {
    height: 280px;
  }
  
  .premium-video-page .recent-recruits-post {
    padding: 20px 10px;
  }
  
  .premium-video-page .recent-recruits-post p {
    font-size: 1.6rem !important;
  }
  
  .premium-video-page .recent-recruits-post-content {
    padding: 15px;
  }
  
  .premium-video-page .recent-recruits-post-content h5 {
    font-size: 1rem;
  }
  
  .premium-video-page .recent-recruits-post-content h6 {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .premium-video-page .position-relative img {
    height: 250px;
  }
}

@media (max-width: 360px) {
  .premium-video-page .position-relative img {
    height: 220px;
  }
}
