/* List Page Specific Styles */

/* Breadcrumb Section */
.breadcrumb-section {
  background: var(--card-bg);
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
  margin: 0;
  background: transparent;
  padding: 0;
}

.breadcrumb-item a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
  color: var(--secondary-color);
}

.breadcrumb-item.active {
  color: var(--text-color);
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  color: var(--text-color);
  opacity: 0.6;
}

/* Hero Banner */
.list-hero-banner {
  background: linear-gradient(135deg, var(--primary-color), #0d2d87);
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.list-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: linear-gradient(135deg, rgba(18, 55, 161, 0.9), rgba(13, 45, 135, 0.8)); */
  background: linear-gradient(135deg, rgb(99 99 99 / 90%), rgb(52 53 55 / 80%));
  z-index: 2;
}

.list-hero-banner .container {
  position: relative;
  z-index: 3;
}

.hero-content h1 {
  color: white;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

.hero-image {
  text-align: center;
  position: relative;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  filter: brightness(1.1);
}

/* Category Filter Bar */
.category-filter-bar {
  background: var(--primary-color);
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.filter-tabs {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 5px;
}

.filter-tab {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 0;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
}

.filter-tab:hover,
.filter-tab.active {
  color: white;
  border-bottom-color: var(--secondary-color);
}

.filter-tab.active::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 2px;
}

/* Search and Filter Section */
.search-filter-section {
  background: var(--card-bg);
  padding: 30px 0;
  border-bottom: 1px solid var(--border-color);
}

.time-filter .form-select {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 16px;
  background: var(--bg-color);
  color: var(--text-color);
  transition: all 0.3s ease;
}

.time-filter .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(18, 55, 161, 0.25);
}

.search-box .form-control {
  border: 2px solid var(--border-color);
  border-right: none;
  border-radius: 8px 0 0 8px;
  padding: 12px 15px;
  font-size: 16px;
  background: var(--bg-color);
  color: var(--text-color);
  transition: all 0.3s ease;
}

.search-box .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

.btn-search {
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  color: white;
  border-radius: 0 8px 8px 0;
  padding: 12px 20px;
  transition: all 0.3s ease;
}

.btn-search:hover {
  background: #0d2d87;
  border-color: #0d2d87;
  color: white;
}

/* Reports Grid Section */
.reports-grid-section {
  padding: 60px 0;
  background: var(--bg-color);
}

.report-card {
  background: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.report-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.report-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.report-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.report-card:hover .report-image img {
  transform: scale(1.1);
}

.report-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.report-badge.hot {
  background: linear-gradient(45deg, #ff4757, #ff3742);
  color: white;
  box-shadow: 0 3px 10px rgba(255, 71, 87, 0.3);
}

.report-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.report-content h5 {
  color: var(--text-color);
  font-weight: bold;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  /* overflow: hidden; */
  flex: 1;
}

.report-date {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 15px;
}

.report-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.report-link:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

.report-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.report-link:hover i {
  transform: translateX(3px);
}

/* Load More Button */
.btn-load-more {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(18, 55, 161, 0.3);
}

.btn-load-more:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(18, 55, 161, 0.4);
  color: white;
}

/* Responsive Design */
@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .filter-tabs {
    gap: 20px;
  }

  .filter-tab {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .list-hero-banner {
    padding: 60px 0;
  }

  .hero-content {
    text-align: center;
    margin-bottom: 30px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .category-filter-bar {
    padding: 15px 0;
  }

  .filter-tabs {
    gap: 15px;
    padding: 0 15px;
  }

  .filter-tab {
    font-size: 13px;
  }

  .search-filter-section {
    padding: 20px 0;
  }

  .search-filter-section .row > div {
    margin-bottom: 15px;
  }

  .reports-grid-section {
    padding: 40px 0;
  }

  .report-content {
    padding: 20px;
  }

  .report-content h5 {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .filter-tabs {
    gap: 10px;
  }

  .filter-tab {
    font-size: 12px;
    padding: 8px 0;
  }

  .report-image {
    height: 180px;
  }

  .report-content {
    padding: 15px;
  }

  .report-content h5 {
    font-size: 14px;
  }

  .btn-load-more {
    padding: 12px 30px;
    font-size: 14px;
  }
}

/* Loading Animation for New Cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.report-card.fade-in {
  animation: fadeInUp 0.6s ease-out;
}

/* Custom Scrollbar for Filter Tabs */
.filter-tabs::-webkit-scrollbar {
  height: 4px;
}

.filter-tabs::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.filter-tabs::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 2px;
}

.filter-tabs::-webkit-scrollbar-thumb:hover {
  background: #ffed4e;
}
.ctdownload h2 {
  color: var(--text-color);
  font-size: 44px !important;
  font-weight: bold;
  margin: 50px 0;
  text-align: center;
}
.report-download {
  float: right;
}
.hero-image button#registerBtn {
    margin-bottom: 8px;
}

  /* Upgrade Modal */
  .upgrade-modal {
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 20px;
    overflow: hidden;
  }
  
  .upgrade-modal .modal-header {
    background: #2d2d2d;
    border-bottom: 1px solid #404040;
    padding: 25px 35px;
  }
  
  .upgrade-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  
  .upgrade-logo {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .upgrade-logo img {
    height: 45px;
    width: auto;
  }
  
  .upgrade-logo h4 {
    margin: 0;
    font-weight: bold;
    color: white;
    font-size: 24px;
  }
  
  .upgrade-modal .btn-close {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    opacity: 0.8;
    transition: all 0.3s ease;
  }
  
  .upgrade-modal .btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
  }
  
  .upgrade-modal .modal-body {
    padding: 35px;
    background: var(--bg-color);
  }
  
  .upgrade-intro {
    text-align: center;
    margin-bottom: 35px;
  }
  
  .upgrade-intro h5 {
    font-size: 20px;
    margin: 0;
    color: var(--text-color);
    line-height: 1.5;
  }
  
  .free-badge {
    background: #6c757d;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .lite-badge {
    background: #007bff;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .demo-video {
    margin-bottom: 25px;
  }
  
  .video-placeholder {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: #2d2d2d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  .video-placeholder img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .video-controls {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .btn-play,
  .btn-fullscreen,
  .btn-volume {
    background: rgba(0, 0, 0, 0.8);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
  }
  
  .btn-play:hover,
  .btn-fullscreen:hover,
  .btn-volume:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
  }
  
  .video-caption {
    margin-top: 20px;
    font-size: 15px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .pricing-comparison {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
  }
  
  .pricing-plan {
    flex: 1;
    background: var(--bg-color);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
  }
  
  .lite-plan {
    border-color: var(--text-color);
  }
  
  .pro-plan {
    border-color: var(--primary-color);
  }
  
  .plan-header {
    margin-bottom: 25px;
    text-align: center;
  }
  
  .plan-header h6 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--text-color);
  }
  
  .plan-badge {
    background: #007bff;
    color: var(--text-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .upgrade-badge {
    background: #28a745;
  }
  
  .plan-features {
    space-y: 15px;
  }
  
  .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
  }
  
  .feature-item i {
    color: #28a745;
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 16px;
  }
  
  .feature-item span {
    color: var(--text-color);
  }
  
  .upgrade-info {
    text-align: center;
    margin-top: 25px;
  }
  
  .upgrade-info p {
    margin: 0;
    font-size: 15px;
    color: #aaa;
  }
  
  .upgrade-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .upgrade-link:hover {
    color: #0056b3;
    text-decoration: underline;
  }
  
  .upgrade-modal .modal-footer {
    background: var(--bg-color);
    border-top: none;
    padding: 0 25px 35px;
    text-align: center;
}
  
  .btn-upgrade {
    /* background: linear-gradient(135deg, #007bff, #0056b3); */
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-color));
    color: white;
    border: none;
    padding: 18px 50px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
  }
  
  .btn-upgrade:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 123, 255, 0.5);
  }