:root {
  --ijri-navy: #082b57;
  --ijri-navy-dark: #041c3c;
  --ijri-gold: #d9a11d;
  --ijri-teal: #0f7f79;
  --ijri-text: #425268;
  --ijri-border: #e6ebf1;
  --ijri-bg: #f8f8f6;
  --ijri-card: #ffffff;
  --ijri-soft: #fffdf8;
  --ijri-soft-gold: #ebe2d2;
  --ijri-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--ijri-bg);
  color: var(--ijri-text);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

/* Navbar */
.navbar-ijri {
  background: linear-gradient(
    90deg,
    var(--ijri-navy-dark) 0%,
    var(--ijri-navy) 100%
  );
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.navbar-ijri .navbar-brand {
  color: #fff !important;
}

.ijri-logo {
  height: 54px;
  width: auto;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
}

.brand-short {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.5px;
}

.brand-divider {
  width: 2px;
  height: 38px;
  background-color: var(--ijri-gold);
  display: inline-block;
}

.brand-full {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.navbar-ijri .nav-link {
  color: rgba(255, 255, 255, 0.92) !important;
  font-weight: 500;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  position: relative;
}

.navbar-ijri .nav-link:hover,
.navbar-ijri .nav-link.active {
  color: #fff !important;
}

.navbar-ijri .nav-link.active::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.3rem;
  height: 3px;
  border-radius: 50px;
  background-color: var(--ijri-gold);
}

.navbar-ijri .dropdown-menu {
  border: 1px solid var(--ijri-border);
  border-radius: 1rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  padding: 0.65rem;
  min-width: 260px;
}

.navbar-ijri .dropdown-item {
  border-radius: 0.8rem;
  padding: 0.7rem 0.9rem;
  font-weight: 500;
  color: #223046;
  transition: all 0.25s ease;
}

.navbar-ijri .dropdown-item:hover {
  background: linear-gradient(
    90deg,
    rgba(8, 43, 87, 0.06),
    rgba(217, 161, 29, 0.14)
  );
  color: var(--ijri-navy);
  transform: translateX(4px);
}

.navbar-toggler {
  border: 0 !important;
  box-shadow: none !important;
}

.navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

/* Universal page layout */
.page-shell {
  padding: 60px 0;
  background: linear-gradient(180deg, #faf8f4 0%, #ffffff 100%);
}

.page-card,
.glass-card,
.page-main-card,
.main-card > .card {
  background: var(--ijri-card);
  border: 1px solid var(--ijri-border);
  border-radius: 28px;
  box-shadow: var(--ijri-shadow);
}

.page-card-body,
.page-content {
  padding: 32px;
}

.page-strip,
.page-top-strip {
  background: linear-gradient(
    90deg,
    var(--ijri-navy-dark) 0%,
    var(--ijri-navy) 100%
  );
  color: #fff;
  padding: 20px 26px;
  border-radius: 28px 28px 0 0;
}

.page-strip h1,
.page-strip h2,
.page-strip h3,
.page-top-strip h1,
.page-top-strip h2,
.page-top-strip h3 {
  color: #fff;
  margin: 0;
  font-weight: 800;
}

.gradient-text,
.section-heading-inline,
.section-title,
.theme-title {
  color: var(--ijri-navy);
  font-weight: 800;
}

.intro-box,
.theme-intro {
  background: linear-gradient(
    135deg,
    rgba(8, 43, 87, 0.04),
    rgba(217, 161, 29, 0.08)
  );
  border: 1px solid #e7dcc7;
  border-radius: 24px;
  padding: 24px;
}

.info-panel,
.info-tile,
.theme-card,
.soft-block,
.highlight-card,
.section-box,
.policy-card-custom {
  background: #fff;
  border: 1px solid var(--ijri-border);
  border-radius: 20px;
  padding: 20px;
  transition: all 0.3s ease;
}

.policy-card-custom,
.highlight-card,
.section-box {
  background: var(--ijri-soft);
  border-color: var(--ijri-soft-gold);
}

.info-panel:hover,
.info-tile:hover,
.theme-card:hover,
.soft-block:hover,
.highlight-card:hover,
.section-box:hover,
.policy-card-custom:hover,
.hover-lift:hover,
.hover-soft:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.07);
}

/* Universal buttons */
.btn-primary,
.btn.btn-primary,
.btn-ijri-primary {
  background: linear-gradient(
    90deg,
    var(--ijri-navy-dark),
    var(--ijri-navy)
  ) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 12px 24px rgba(8, 43, 87, 0.15);
}

.btn-primary:hover,
.btn.btn-primary:hover,
.btn-ijri-primary:hover {
  background: linear-gradient(
    90deg,
    var(--ijri-navy-dark),
    var(--ijri-navy)
  ) !important;
  color: #fff !important;
}

.btn-outline-primary,
.btn-ijri-outline {
  border: 2px solid #d4dde6 !important;
  color: var(--ijri-navy) !important;
  background: #fff !important;
  border-radius: 999px;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
}

.btn-outline-primary:hover,
.btn-ijri-outline:hover {
  border-color: var(--ijri-navy) !important;
  color: var(--ijri-navy) !important;
  background: #fff !important;
}

/* Universal links */
.text-primary,
.text-primary i,
.fas.text-primary,
.fa.text-primary,
a.text-primary {
  color: var(--ijri-gold) !important;
}

.custom-link {
  color: var(--ijri-navy);
}

.custom-link:hover {
  color: var(--ijri-gold) !important;
}

.custom-link:hover,
a.text-primary:hover {
  color: var(--ijri-gold) !important;
}

/* Sidebar */
/* Sidebar */
.sidebar-shell {
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid #edf1f5;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

.navbar-ijri.sticky-top {
  z-index: 1080 !important;
}

.sidebar-sticky {
  position: sticky;
  top: 118px;
  z-index: 1;
  align-self: flex-start;
}
/* Animation */
.anim-fade-up,
.anim-fade-left,
.anim-fade-right {
  opacity: 0;
  transition: all 0.8s ease;
}

.anim-fade-up {
  transform: translateY(35px);
}

.anim-fade-left {
  transform: translateX(-35px);
}

.anim-fade-right {
  transform: translateX(35px);
}

.anim-show {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* ===== FORCE GOLD ICONS & ELEMENTS ===== */

i,
.icon-animate,
.theme-card i,
.section-title i,
h5 i,
h6 i {
  color: var(--ijri-gold) !important;
}

/* Check icons bhi gold */
.text-success {
  color: var(--ijri-gold) !important;
}

/* Badges */
.badge {
  background: rgba(217, 161, 29, 0.15) !important;
  color: var(--ijri-navy) !important;
}

/* Accordion fix */
.accordion-button::after {
  filter: sepia(1) saturate(4) hue-rotate(350deg);
}

/* ===== Card Headings Gold ===== */

.theme-card h5,
.theme-card h6,
.highlight-card h5,
.highlight-card h6,
.policy-card-custom h5,
.policy-card-custom h6 {
  color: var(--ijri-gold) !important;
}

footer {
  background: linear-gradient(180deg, var(--ijri-navy-dark), var(--ijri-navy));
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 30px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
}

.footer-link:hover {
  color: #fff;
}

@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

@media (max-width: 991.98px) {
  .brand-divider,
  .brand-full {
    display: none !important;
  }

  .brand-short {
    font-size: 1.7rem;
  }

  .navbar-ijri .nav-link.active::after {
    display: none;
  }

  .page-card-body,
  .page-content,
  .glass-card {
    padding: 22px;
  }

  .sidebar-sticky {
    position: static !important;
    top: auto !important;
  }
}

@media (max-width: 767.98px) {
  .ijri-logo {
    height: 46px;
  }

  .brand-short {
    font-size: 1.45rem;
  }
}
.sidebar-title {
  background: #082b57;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 18px;
  text-transform: uppercase;
}

.sidebar-link {
  color: #314357;
  text-decoration: none;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid #edf2f6;
  transition: 0.3s;
  background: #fff;
}

.sidebar-link:hover {
  background: #f8f9fb;
  color: #d9a11d;
}

.sidebar-link i {
  color: #d9a11d;
  width: 18px;
  text-align: center;
}

.topic-pill {
  background: #eef2f6 !important;
  color: #5b6b7e !important;
  border: 0 !important;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 8px 14px;
  border-radius: 50rem;
  text-decoration: none;
  display: inline-block;
}

.topic-pill:hover {
  background: #d9a11d !important;
  color: #fff !important;
}

.scholar-btn {
  background: #082b57 !important;
  border: 0 !important;
  color: #fff !important;
  font-weight: 600;
  border-radius: 50rem;
  padding: 12px 22px;
}

.scholar-btn:hover {
  background: #d9a11d !important;
  color: #fff !important;
}
html {
  scroll-behavior: smooth;
}

.ethics-item {
  background: #ffffff;
  border: 1px solid #e9edf3;
  border-radius: 20px;
  padding: 18px 18px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.03);
  height: 100%;
}

.ethics-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.07);
}

.ethics-item i {
  color: #d9a11d;
  margin-top: 2px;
}

.soft-block .mini-title {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #082b57;
  margin-bottom: 10px;
}

.journal-note {
  font-size: 0.78rem;
  color: #6b7280;
}

@media (max-width: 991.98px) {
  .ethics-item {
    padding: 16px;
  }
}
.quick-panel {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.quick-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(21, 84, 230, 0.07);
}

.alert-animate {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.alert-animate:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(217, 161, 29, 0.12);
}
.issue-card {
  overflow: hidden;
  transition: all 0.35s ease;
  border-radius: 20px;
}

.issue-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12) !important;
}

.issue-card img {
  transition: transform 0.4s ease;
}

.issue-card:hover img {
  transform: scale(1.05);
}

.issue-cover-wrap {
  overflow: hidden;
  border-radius: 16px;
}

.issue-meta {
  color: var(--ijri-gold) !important;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.issue-card .badge {
  background: rgba(217, 161, 29, 0.15) !important;
  color: var(--ijri-navy) !important;
  border: 1px solid rgba(217, 161, 29, 0.35);
}
html {
  scroll-behavior: smooth;
}

.hover-lift {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hover-soft {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hover-soft:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.hover-glow:hover {
  box-shadow:
    0 0 0 1px rgba(13, 110, 253, 0.15),
    0 15px 40px rgba(13, 110, 253, 0.08);
}

.smooth-btn {
  transition: all 0.3s ease;
}

.smooth-btn:hover {
  transform: translateY(-2px);
}

.icon-animate {
  transition: transform 0.3s ease;
}

.hover-lift:hover .icon-animate,
.hover-soft:hover .icon-animate {
  transform: scale(1.12);
}

.glass-card {
  transition: box-shadow 0.35s ease;
}
@media (min-width: 768px) {
  .border-start-md {
    border-left: 1px solid #e2e8f0;
  }
}

.article-body p {
  font-size: 1rem;
  color: #4b5563;
}

.fw-800 {
  font-weight: 800;
}

.form-control:focus,
.form-select:focus {
  background-color: #fff !important;
  border-color: var(--primary-blue) !important;
  box-shadow: 0 0 0 0.25rem rgba(0, 97, 255, 0.1) !important;
}
.issue-card {
  overflow: hidden;
  transition: all 0.35s ease;
  border-radius: 20px;
}

.issue-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12) !important;
}

.issue-card img {
  transition: transform 0.4s ease;
}

.issue-card:hover img {
  transform: scale(1.05);
}

.issue-cover-wrap {
  overflow: hidden;
  border-radius: 16px;
}

.issue-meta {
  color: var(--ijri-gold) !important;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.issue-card .badge {
  background: rgba(217, 161, 29, 0.15) !important;
  color: var(--ijri-navy) !important;
  border: 1px solid rgba(217, 161, 29, 0.35);
}
html {
  scroll-behavior: smooth;
}

.hover-lift {
  transition: all 0.35s ease;
  border-radius: 14px;
}

.hover-lift:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hover-glow:hover {
  box-shadow:
    0 0 0 1px rgba(13, 110, 253, 0.15),
    0 15px 40px rgba(13, 110, 253, 0.08);
}

.smooth-btn {
  transition: all 0.3s ease;
}

.smooth-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.icon-hover {
  transition: transform 0.3s ease;
}

.hover-lift:hover .icon-hover {
  transform: scale(1.15);
}

@media (max-width: 575.98px) {
  .glass-card {
    padding: 1.25rem !important;
  }
}
.timeline-line {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e9ecef;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  background: #0d6efd;
  border-radius: 50%;
  position: absolute;
  left: 14px;
  top: 8px;
}

.timeline-item {
  position: relative;
  padding-left: 50px;
}

.hover-soft {
  transition: all 0.3s ease;
}
.hover-soft:hover {
  transform: translateX(6px);
}
.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(217, 161, 29, 0.15);
  color: var(--ijri-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.section-card {
  border-left: 4px solid var(--ijri-gold) !important;
}
.editorial-card h5,
.editorial-card h6 {
  color: var(--ijri-gold);
}

.editorial-card strong {
  color: var(--ijri-gold);
}

.editorial-card p {
  color: #6c757d; /* readable gray */
}

.editorial-photo {
  width: 130px;
  height: 130px;
  object-fit: cover;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.editorial-card:hover .editorial-photo {
  transform: scale(1.04);
  box-shadow: 0 12px 28px rgba(198, 222, 17, 0.84);
}

.initial-avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e4e73d, #1f1b94);
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: 2px solid #dee2e6;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.editorial-card:hover .initial-avatar {
  transform: scale(1.05);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.editorial-card {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.editorial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}

.editorial-card .small p:last-child {
  margin-bottom: 0 !important;
}

.editorial-card .card-body {
  height: 100%;
}

@media (max-width: 575.98px) {
  .editorial-photo,
  .initial-avatar {
    width: 110px;
    height: 110px;
  }

  .initial-avatar {
    font-size: 36px;
  }

  .editorial-card .card-body {
    padding: 1.25rem !important;
  }
}
/* ===== Home Page Only CSS ===== */

.hero-home {
  position: relative;
  padding: 70px 0 45px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.97),
      rgba(247, 245, 241, 0.97)
    ),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cg fill='none' stroke='%23ebe6dc' stroke-width='1'%3E%3Cpath d='M0 90 Q45 45 90 90 T180 90'/%3E%3Cpath d='M0 112 Q45 67 90 112 T180 112'/%3E%3Cpath d='M0 134 Q45 89 90 134 T180 134'/%3E%3C/g%3E%3C/svg%3E");
  overflow: hidden;
}

.issn-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0.9rem 1.35rem;
  border: 2px solid rgba(217, 161, 29, 0.35);
  border-radius: 1rem;
  background: #fffdf8;
  color: var(--ijri-navy);
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.hero-accent {
  width: 72px;
  height: 4px;
  background: var(--ijri-gold);
  border-radius: 50px;
  position: relative;
}

.hero-accent::after {
  content: "";
  position: absolute;
  right: -28px;
  top: 0;
  width: 10px;
  height: 4px;
  border-radius: 50px;
  background: var(--ijri-gold);
}

.hero-title {
  color: var(--ijri-navy);
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -1px;
}

.text-gold {
  color: var(--ijri-gold);
}

.hero-description {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #445164;
  max-width: 760px;
}

.hero-stack .card {
  border: 1px solid #edf1f4;
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.07);
  transition: all 0.35s ease;
}

.hero-stack .card:hover {
  transform: translateY(-4px);
}

.stack-icon-box {
  min-height: 100%;
  color: #fff;
  font-size: 2rem;
}

.stack-icon-navy {
  background: linear-gradient(180deg, #08264a, #07264d);
}

.stack-icon-gold {
  background: linear-gradient(180deg, #d9a11d, #c9910f);
}

.stack-icon-teal {
  background: linear-gradient(180deg, #0d7b78, #0a6764);
}

.stack-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ijri-navy);
  text-transform: uppercase;
  line-height: 1.35;
  letter-spacing: 0.3px;
}

.stack-title .gold-text {
  color: var(--ijri-gold);
}

.stack-line {
  width: 64px;
  height: 3px;
  background-color: var(--ijri-navy);
  border-radius: 50px;
}

.stack-text {
  color: #344154;
  font-size: 1rem;
  line-height: 1.7;
}

.feature-strip-card {
  border: 1px solid #dde3e9;
  border-radius: 1.4rem;
  background: #fbfcfa;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.03);
}

.feature-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.feature-icon.navy {
  background: var(--ijri-navy);
}

.feature-icon.gold {
  background: var(--ijri-gold);
}

.feature-icon.teal {
  background: var(--ijri-teal);
}

.feature-title {
  color: var(--ijri-navy);
  font-weight: 800;
  font-size: 1.3rem;
}

.feature-desc {
  color: #445164;
  font-size: 1rem;
  line-height: 1.6;
}

.indexing-section {
  background: #fff;
  border-top: 1px solid rgba(7, 38, 77, 0.08);
  border-bottom: 1px solid rgba(7, 38, 77, 0.08);
  overflow: hidden;
}

.logo-slider {
  position: relative;
  white-space: nowrap;
  padding: 20px 0;
  overflow: hidden;
}

.logo-track {
  display: inline-flex;
  align-items: center;
  animation: scrollLogos 35s linear infinite;
}

.logo-track img {
  height: 45px;
  margin: 0 40px;
}

.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

.logo-slider::before,
.logo-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
}

.logo-slider::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.logo-slider::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.modern-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.modern-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 16px;
  color: #445164;
  line-height: 1.65;
}

.modern-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--ijri-gold);
}

.section-box {
  background: #fffdf9;
  border: 1px solid #ede5d6;
  border-radius: 1.25rem;
  padding: 1.75rem;
  height: 100%;
  transition: all 0.3s ease;
}

.section-box:hover,
.policy-box:hover,
.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.07);
}

.policy-box {
  background: linear-gradient(
    135deg,
    rgba(7, 38, 77, 0.05),
    rgba(217, 161, 29, 0.08)
  );
  border: 1px solid #e7dfd0;
  border-left: 5px solid var(--ijri-navy);
  border-radius: 1.25rem;
  padding: 1.75rem;
  transition: all 0.3s ease;
}

/* ===== Home Page Animations ===== */
.anim-fade-up,
.anim-fade-left,
.anim-fade-right,
.anim-scale {
  opacity: 0;
  transition: all 0.9s ease;
  will-change: transform, opacity;
}

.anim-fade-up {
  transform: translateY(45px);
}

.anim-fade-left {
  transform: translateX(-45px);
}

.anim-fade-right {
  transform: translateX(45px);
}

.anim-scale {
  transform: scale(0.92);
}

.anim-show {
  opacity: 1 !important;
  transform: translate(0, 0) scale(1) !important;
}

.hero-stack-float {
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0px);
  }
}

.home-sidebar-sticky {
  top: 115px !important;
  z-index: 10;
}

@media (prefers-reduced-motion: reduce) {
  .anim-fade-up,
  .anim-fade-left,
  .anim-fade-right,
  .anim-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hero-stack-float {
    animation: none !important;
  }
}

@media (max-width: 991.98px) {
  .feature-border-middle {
    border-top: 1px solid #dde3e9;
    border-bottom: 1px solid #dde3e9;
  }

  .home-sidebar-sticky {
    top: 0 !important;
  }

  .hero-home {
    padding: 50px 0 30px;
  }
}
.issue-detail-cover-card {
  overflow: hidden;
}

.issue-detail-cover {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.article-item {
  transition: all 0.35s ease;
}

.article-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.1) !important;
}

.article-type-badge {
  background: #fff;
  border: 1px solid var(--ijri-border);
  color: var(--ijri-text);
  border-radius: 10px;
  padding: 5px 12px;
  font-size: 0.8rem;
  font-weight: 700;
}

.pdf-btn {
  border: 1px solid #dc3545 !important;
  color: #dc3545 !important;
  background: #fff !important;
  border-radius: 999px;
  font-weight: 700;
  padding: 8px 20px;
}

.pdf-btn:hover {
  background: #dc3545 !important;
  color: #fff !important;
}

@media (max-width: 991.98px) {
  .issue-detail-cover {
    height: 280px;
  }
}
.table-hover-anim tbody tr {
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.table-hover-anim tbody tr:hover {
  background-color: rgba(217, 161, 29, 0.08);
}
html {
  scroll-behavior: smooth;
}

.hover-lift {
  transition: all 0.35s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hover-glow:hover {
  box-shadow:
    0 0 0 1px rgba(13, 110, 253, 0.15),
    0 15px 40px rgba(13, 110, 253, 0.08);
}

.smooth-btn {
  transition: all 0.3s ease;
}

.smooth-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.icon-hover {
  transition: transform 0.3s ease;
}

.hover-lift:hover .icon-hover {
  transform: scale(1.15);
}

@media (max-width: 575.98px) {
  .glass-card {
    padding: 1.25rem !important;
  }
}
html {
  scroll-behavior: smooth;
}

.hover-lift {
  transition: all 0.35s ease;
}
.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hover-glow:hover {
  box-shadow:
    0 0 0 1px rgba(13, 110, 253, 0.15),
    0 15px 40px rgba(13, 110, 253, 0.08);
}

.smooth-btn {
  transition: all 0.3s ease;
}
.smooth-btn:hover {
  transform: translateY(-2px);
}
/* Hover state */
.accordion-button:hover {
  background: rgba(212, 160, 23, 0.12) !important;
  color: #d4a017 !important;
}

/* Active (open) state */
.accordion-button:not(.collapsed) {
  background: rgba(212, 160, 23, 0.18) !important;
  color: #d4a017 !important;
  box-shadow: none !important;
}

/* Icon color bhi gold */
.accordion-button:hover i,
.accordion-button:not(.collapsed) i {
  color: #d4a017 !important;
}

/* Remove blue focus border */
.accordion-button:focus {
  box-shadow: none !important;
  border-color: transparent !important;
}
.policy-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: rgba(217, 161, 29, 0.15);
  color: var(--ijri-gold);
}

.hover-glow:hover {
  box-shadow:
    0 0 0 1px rgba(217, 161, 29, 0.18),
    0 15px 40px rgba(217, 161, 29, 0.12);
}
.review-step-number {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--ijri-navy);
  color: #e6e93c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}

.review-step-card {
  border-left: 4px solid var(--ijri-gold);
}
html {
  scroll-behavior: smooth;
}

.hover-lift {
  transition: all 0.35s ease;
  border-radius: 14px;
}

.hover-lift:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hover-glow:hover {
  box-shadow:
    0 0 0 1px rgba(13, 110, 253, 0.15),
    0 15px 40px rgba(13, 110, 253, 0.08);
}

.smooth-btn {
  transition: all 0.3s ease;
}

.smooth-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.icon-hover {
  transition: transform 0.3s ease;
}

.hover-lift:hover .icon-hover {
  transform: scale(1.15);
}

.policy-table th,
.policy-table td {
  vertical-align: middle;
}

@media (max-width: 575.98px) {
  .glass-card {
    padding: 1.25rem !important;
  }
}
