/* Dumps List View Styles */
.dumps-list-view {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.dump-list-item {
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1px solid #f1f1f1;
  background: #fff;
}

.dump-list-item:hover {
  box-shadow: 0 4px 24px 0 rgba(80, 80, 120, 0.10);
  transform: translateY(-2px) scale(1.01);
}

.dump-img-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 8px;
}

@media (max-width: 767px) {
  .dump-list-item {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .dump-img-wrapper {
    margin-bottom: 1rem !important;
    margin-right: 0 !important;
  }
}

body {
  font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
}

.hero-section {
  background: linear-gradient(135deg, #25345d 0%, #455274 100%);
  color: white;
}

.exam-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exam-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #4f46e5;
}

.navbar {
  padding: 0.8rem 0;
}

.navbar-nav .nav-link {
  padding: 0.5rem 1rem;
  position: relative;
}

.navbar-nav .nav-link.active {
  font-weight: 500;
}

.navbar-nav .nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: #fff;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover:after,
.navbar-nav .nav-link.active:after {
  width: 70%;
}

.footer {
  width: 100%;
  margin: 0;
  max-width: 100%;
}

/* --- Blog Modern Styles --- */
.blog-card {
  transition: transform 0.25s cubic-bezier(.4, 2, .6, 1), box-shadow 0.25s;
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 4px 24px 0 rgba(80, 80, 120, 0.08);
}

.blog-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(80, 80, 120, 0.16);
}

.blog-thumb img,
.blog-detail-thumb img {
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.blog-thumb img:hover {
  transform: scale(1.05);
}

.blog-section h1 {
  font-weight: 700;
  color: #4f46e5;
  letter-spacing: 1px;
}

.blog-card .badge {
  font-size: 0.95rem;
  border-radius: 1rem;
  background: linear-gradient(90deg, #4f46e5 60%, #7c3aed 100%);
}

.blog-card .card-title {
  color: #22223b;
}

.blog-card .card-text {
  color: #6c757d;
}

.blog-card .stretched-link {
  z-index: 2;
}

.blog-detail-section h1 {
  color: #4f46e5;
  font-weight: 700;
}

.blog-detail-thumb img {
  border-radius: 0;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
}

.blog-detail-section .card {
  border-radius: 1.5rem;
}

.blog-detail-section .btn-primary {
  background: linear-gradient(90deg, #4f46e5 60%, #7c3aed 100%);
  border: none;
}