
.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #0d2b4d;
  position: relative;
}

/* hover krne pr effect start here */
.issue-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-top: 5px solid #c6a54b;
  transition: all 0.8s ease;
  position: relative;
  overflow: hidden;
}

/* Smooth Lift + Shadow Enhance */
.issue-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(13, 43, 77, 0.15);
}

/* Gold Border Glow Effect */
.issue-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(198, 165, 75, 0.4),
    transparent
  );
  transform: skewX(-20deg);
  transition: 0.6s;
}

/* Shine Sweep Animation */
.issue-card:hover::before {
  left: 130%;
}

/* Title Hover Color Transition */
.issue-card:hover .issue-title {
  color: #c6a54b;
  transition: 0.3s ease;
}

/* Button Hover Animation */
.btn-view,
.btn-download {
  transition: all 0.3s ease;
}

.btn-view:hover,
.btn-download:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  border: 1px solid;
}