/* =====================================================
   CPS | GLOBAL HERO + NEWS TICKER
   ===================================================== */

.cps-hero-global{
  background:
    linear-gradient(rgba(8,30,55,.85),rgba(8,30,55,.85)),
    url("https://images.unsplash.com/photo-1529070538774-1843cb3265df");
  background-size:cover;
  background-position:center;
  color:#fff;
}

/* Yellow Bar */
.cps-news{
  background:#f4c430;
  color:#0b2a4a;
  font-size:14px;
  padding:10px 20px;
  font-weight:700;
  text-align:center;
}

/* Compact ticker */
.cps-news-ticker{
  background:#f6f9fc;
  border-bottom:1px solid rgba(0,0,0,.08);
  overflow:hidden;
  white-space:nowrap;
}

.cps-news-track{
  display:inline-block;
  padding:6px 0;
  animation:cpsTicker 45s linear infinite;
}

.cps-news-track span{
  margin:0 28px;
  font-size:12.5px;
  font-weight:600;
  color:#0b2a4a;
}

@keyframes cpsTicker{
  from{transform:translateX(100%)}
  to{transform:translateX(-100%)}
}

/* =====================================================
   CPS | HERO CONTENT
   ===================================================== */

.cps-hero-wrap{
  max-width:1250px;
  margin:auto;
  padding:80px 30px;
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:50px;
}

.cps-hero-left h1{
  font-size:42px;
  font-weight:900;
}

.cps-hero-left h2{
  color:#f4c430;
  margin:14px 0;
}

.cps-hero-left p{
  line-height:1.9;
  max-width:650px;
  color:#e8eef6;
}

.cps-hero-buttons a{
  padding:14px 30px;
  border-radius:6px;
  font-weight:700;
  text-decoration:none;
  margin-right:14px;
}

.btn-main{background:#f4c430;color:#0b2a4a;}
.btn-outline{border:2px solid #fff;color:#fff;}

/* =====================================================
   CPS | ELITE FOOTER (FINAL – CLEAN)
   ===================================================== */

.cps-footer-elite{
  background:
    linear-gradient(180deg,rgba(5,11,24,.95),rgba(3,7,17,.98)),
    radial-gradient(1200px 500px at 15% 0%, #0b2a5a, transparent 60%);
  color:#eaf2ff;
}

/* Gold line */
.cps-footer-goldline{
  height:4px;
  background:linear-gradient(90deg,#d4af37,#ffd778,#d4af37);
  background-size:200% 100%;
  animation:goldflow 7s linear infinite;
}

@keyframes goldflow{
  from{background-position:0%}
  to{background-position:200%}
}

/* Footer grid */
.cps-footer-container{
  max-width:1400px;
  margin:auto;
  padding:80px 40px 70px;
  display:grid;
  grid-template-columns:2.4fr 1fr 1fr 1.3fr;
  gap:70px;
}

/* Brand */
.cps-footer-brand{
  display:flex;
  flex-direction:column;
  gap:18px;
  max-width:420px;
}

.cps-footer-logo{
  font-size:32px;
  font-weight:800;
  letter-spacing:2px;
  color:#d4af37;
}

.cps-footer-desc{
  font-size:14px;
  line-height:1.8;
  opacity:.85;
}

/* Social */
.cps-footer-social{
  display:flex;
  gap:14px;
}

.cps-footer-social a{
  width:38px;
  height:38px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(212,175,55,.5);
  color:#d4af37;
  text-decoration:none;
}

/* Blocks */
.cps-footer-block h4{
  color:#ffd778;
  text-transform:uppercase;
  font-size:14px;
  margin-bottom:18px;
}

.cps-footer-block ul{
  list-style:none;
  padding:0;
}

.cps-footer-block li{
  margin-bottom:11px;
}

.cps-footer-block a{
  color:#eaf2ff;
  text-decoration:none;
  padding-left:18px;
  position:relative;
}

.cps-footer-block a::before{
  content:"›";
  position:absolute;
  left:0;
  color:#d4af37;
}

/* Bottom */
.cps-footer-legal{
  border-top:1px solid rgba(255,255,255,.12);
  background:#02060f;
  padding:22px;
  text-align:center;
  font-size:13px;
}

/* =====================================================
   FLOATING BUTTONS (FINAL – ONE VERSION)
   ===================================================== */

.cps-fab{
  position:fixed;
  bottom:30px;
  right:30px;
  display:flex;
  flex-direction:column;
  gap:14px;
  z-index:999999;
}

.cps-fab-btn{
  width:50px;
  height:50px;
  border-radius:50%;
  background:rgba(5,11,24,.9);
  border:1px solid rgba(212,175,55,.6);
  color:#d4af37;
  font-weight:800;
  cursor:pointer;
}

.cps-fab-top{display:none;}

@media(max-width:650px){
  .cps-footer-container{grid-template-columns:1fr;}
  .cps-fab{right:18px;bottom:18px;}
}

/* Hide PKP */
.pkp_brand_footer{display:none!important;}
.cps-countdown span{
  animation:pulse 1.2s ease infinite alternate;
}

@keyframes pulse{
  from{ transform:scale(1); }
  to{ transform:scale(1.06); }
}
.pkp_navigation_primary a{
  position:relative;
  transition:.35s ease;
}

.pkp_navigation_primary a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:#ffd66b;
  transition:.35s;
}

.pkp_navigation_primary a:hover::after{
  width:100%;
}
.cps-fab-btn{
  position:relative;
}

.cps-fab-btn::after{
  content:attr(title);
  position:absolute;
  right:60px;
  background:#111;
  color:#ffd66b;
  padding:6px 10px;
  font-size:12px;
  border-radius:6px;
  white-space:nowrap;
  opacity:0;
  transform:translateX(10px);
  transition:.3s;
  pointer-events:none;
}

.cps-fab-btn:hover::after{
  opacity:1;
  transform:translateX(0);
}
.cps-fab-btn:hover{
  box-shadow:0 0 22px rgba(212,175,55,.55);
  transform:translateY(-3px);
}
*{
  box-sizing:border-box;
}
.cps-countdown span{
  animation:pulse 1.2s ease infinite alternate;
}
/* ================================
   CPS COUNTDOWN – GLASS BOX (FIXED)
   ================================ */

.cps-countdown-box{
  background: rgba(255,255,255,0.12);   /* شفاف */
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 16px;
  padding: 28px 26px;
  box-shadow: 
    0 15px 40px rgba(0,0,0,.45),
    inset 0 0 0 1px rgba(255,255,255,.08);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  max-width: 360px;
}

/* عنوان */
.cps-countdown-box h3{
  margin-bottom: 18px;
  font-size: 16px;
  letter-spacing: 1px;
  color: #ffd66b;
  text-align: center;
  text-transform: uppercase;
}

/* الشبكة */
.cps-countdown{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:14px;
}

/* كل خانة */
.cps-countdown div{
  background: rgba(0,0,0,.35);
  border-radius: 10px;
  padding: 14px 6px;
  text-align:center;
  border:1px solid rgba(255,255,255,.15);
}

/* الرقم */
.cps-countdown span{
  display:block;
  font-size:26px;
  font-weight:900;
  color:#ffd66b;
}

/* النص */
.cps-countdown small{
  font-size:11px;
  opacity:.85;
  color:#eaf2ff;
}
/* ===== CPS FOOTER FONTS ===== */
.cps-footer-elite{
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.cps-footer-logo{
  font-family: "Poppins", "Inter", system-ui, sans-serif;
  letter-spacing: 1.8px;
}
/* ===== CPS FOOTER FONTS ===== */
.cps-footer-elite{
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.cps-footer-logo{
  font-family: "Poppins", "Inter", system-ui, sans-serif;
  letter-spacing: 1.8px;
}
/* ===== GLASS SHIMMER EFFECT ===== */
.cps-footer-elite::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      120deg,
      transparent 30%,
      rgba(255,255,255,.04) 50%,
      transparent 70%
    );
  animation: glassMove 12s linear infinite;
  pointer-events:none;
}

@keyframes glassMove{
  from{ transform:translateX(-100%); }
  to{ transform:translateX(100%); }
}
/* ===== FOOTER TITLES MOTION ===== */
.cps-footer-block h4{
  position:relative;
  padding-bottom:6px;
}

.cps-footer-block h4::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0;
  height:2px;
  background:#ffd66b;
  transition:.4s ease;
}

.cps-footer-block:hover h4::after{
  width:42px;
}
/* ======================================================
   CPS FOOTER – ELSEVIER / SPRINGER PUBLISHER LEVEL
   ====================================================== */

/* ===== BASE ===== */
.cps-footer-elite{
  position:relative;
  background:
    linear-gradient(180deg,rgba(4,12,28,.96),rgba(2,6,16,.99)),
    radial-gradient(1200px 500px at 15% 0%, #0b2a5a, transparent 60%);
  color:#eef4ff;
  font-family:"Inter","Segoe UI","Helvetica Neue",Arial,sans-serif;
  overflow:hidden;
}

/* ===== GOLD TOP LINE ===== */
.cps-footer-goldline{
  height:4px;
  background:linear-gradient(90deg,#d4af37,#ffd778,#d4af37);
  background-size:200% 100%;
  animation:goldFlow 8s linear infinite;
}

@keyframes goldFlow{
  from{background-position:0%}
  to{background-position:200%}
}

/* ===== GLASS SHIMMER ===== */
.cps-footer-elite::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,.035) 50%,
    transparent 70%
  );
  animation:glassSweep 14s linear infinite;
  pointer-events:none;
}

@keyframes glassSweep{
  from{transform:translateX(-100%)}
  to{transform:translateX(100%)}
}

/* ===== GRID ===== */
.cps-footer-container{
  max-width:1400px;
  margin:auto;
  padding:90px 40px 70px;
  display:grid;
  grid-template-columns:2.4fr 1fr 1fr 1.3fr;
  gap:70px;
  align-items:flex-start;
}

/* ===== BRAND ===== */
.cps-footer-logo{
  font-family:"Poppins","Inter",sans-serif;
  font-size:34px;
  font-weight:800;
  letter-spacing:2px;
  line-height:1.2;
  color:#d4af37;
  text-shadow:0 0 26px rgba(212,175,55,.35);
}

.cps-footer-desc{
  font-size:14px;
  line-height:1.85;
  opacity:.85;
  max-width:440px;
}

/* ===== SECTION TITLES ===== */
.cps-footer-block h4{
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:1.6px;
  color:#ffd778;
  margin-bottom:20px;
  position:relative;
}

.cps-footer-block h4::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:32px;
  height:2px;
  background:#d4af37;
}

/* ===== LINKS ===== */
.cps-footer-block ul{
  list-style:none;
  padding:0;
  margin:0;
}

.cps-footer-block li{
  margin-bottom:11px;
}

.cps-footer-block a{
  color:#eef4ff;
  font-size:14px;
  text-decoration:none;
  position:relative;
  padding-left:18px;
  transition:.35s ease;
}

.cps-footer-block a::before{
  content:"›";
  position:absolute;
  left:0;
  color:#d4af37;
  font-size:18px;
  transition:transform .35s ease;
}

.cps-footer-block a:hover{
  color:#ffd778;
  transform:translateX(6px);
}

.cps-footer-block a:hover::before{
  transform:translateX(6px);
}

/* ===== SOCIAL ICONS ===== */
.cps-footer-social{
  display:flex;
  gap:14px;
  margin-top:22px;
}

.cps-footer-social .soc{
  width:40px;
  height:40px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:14px;
  color:#d4af37;
  border:1px solid rgba(212,175,55,.55);
  background:rgba(255,255,255,.02);
  backdrop-filter:blur(6px);
  transition:.4s ease;
}

.cps-footer-social .soc:hover{
  background:#d4af37;
  color:#111;
  box-shadow:0 0 22px rgba(212,175,55,.6);
  transform:translateY(-3px);
}

/* ===== BOTTOM BAR ===== */
.cps-footer-legal{
  border-top:1px solid rgba(255,255,255,.12);
  background:rgba(2,6,15,.98);
  text-align:center;
  padding:22px;
  font-size:13px;
  letter-spacing:.3px;
  color:rgba(255,255,255,.72);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}

/* ===== RESPONSIVE ===== */
@media(max-width:1100px){
  .cps-footer-container{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:650px){
  .cps-footer-container{
    grid-template-columns:1fr;
    text-align:center;
  }
  .cps-footer-social{
    justify-content:center;
  }
}
/* ======================================================
   CPS – ELSEVIER MICRO GRID BACKGROUND (SUBTLE & LUXURY)
   ====================================================== */

/* Overlay grid */
.cps-footer-elite::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size:22px 22px;
  opacity:.35;
  mask-image:linear-gradient(to bottom, transparent 0%, black 25%, black 100%);
}

/* Soft depth noise (publisher touch) */
.cps-footer-elite{
  background-blend-mode:overlay;
}

/* Slight parallax illusion */
@media(min-width:900px){
  .cps-footer-elite::after{
    animation:gridFloat 40s linear infinite;
  }
}

@keyframes gridFloat{
  from{ background-position:0 0 }
  to{ background-position:120px 120px }
}

/* =========================================
   CPS | FOOTER BOTTOM BAR – PUBLISHER LEVEL
   ========================================= */

.cps-footer-legal{
  background:linear-gradient(
    180deg,
    rgba(2,6,15,.98),
    rgba(1,4,10,1)
  );
  border-top:1px solid rgba(255,255,255,.12);
  padding:20px 0;
  font-size:13px;
  color:rgba(255,255,255,.72);
  letter-spacing:.25px;
}

.cps-footer-legal-inner{
  max-width:1400px;
  margin:auto;
  padding:0 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

/* Copyright */
.cps-footer-copy{
  font-weight:500;
}

/* Links */
.cps-footer-links{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:12.5px;
}

.cps-footer-links a{
  color:rgba(255,255,255,.65);
  text-decoration:none;
  position:relative;
  transition:.3s ease;
}

.cps-footer-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-3px;
  width:0;
  height:1px;
  background:#ffd778;
  transition:.3s ease;
}

.cps-footer-links a:hover{
  color:#ffd778;
}

.cps-footer-links a:hover::after{
  width:100%;
}

/* Separator dot */
.cps-footer-links span{
  opacity:.35;
}

/* Responsive */
@media(max-width:700px){
  .cps-footer-legal-inner{
    flex-direction:column;
    text-align:center;
  }
}
/* ===== FOOTER EDGE GRADIENT (PUBLISHER TOUCH) ===== */
.cps-footer-elite{
  position:relative;
}

.cps-footer-elite::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(
      to right,
      rgba(0,0,0,.55) 0%,
      transparent 18%,
      transparent 82%,
      rgba(0,0,0,.55) 100%
    );
}
.cps-footer-elite{
  position: relative;
  overflow: hidden;
}
/* ===== ELSEVIER SOFT EDGE VIGNETTE (FINAL) ===== */
.cps-footer-elite{
  position:relative;
  overflow:hidden;
}

.cps-footer-elite::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(140% 100% at 0% 50%, rgba(0,0,0,.35) 0%, transparent 60%),
    radial-gradient(140% 100% at 100% 50%, rgba(0,0,0,.35) 0%, transparent 60%);
  z-index:0;
}

/* content above overlay */
.cps-footer-container,
.cps-footer-goldline,
.cps-footer-legal{
  position:relative;
  z-index:2;
}

/* ======================================================
   CPS | HERO–FOOTER COLOR HARMONY (ELSEVIER STYLE)
   ====================================================== */

/* Base footer background synced with hero */
.cps-footer-elite{
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(
      180deg,
      #06162e 0%,      /* نفس عمق الهيرو */
      #040e20 45%,
      #020813 100%
    );
}

/* Soft side vignette (no harsh edges) */
.cps-footer-elite::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(
      120% 120% at 0% 50%,
      rgba(0,0,0,.32) 0%,
      transparent 62%
    ),
    radial-gradient(
      120% 120% at 100% 50%,
      rgba(0,0,0,.32) 0%,
      transparent 62%
    );
  z-index:0;
}

/* Gentle gold harmony from top (matches hero accents) */
.cps-footer-elite::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:1px;
  background:linear-gradient(
    90deg,
    transparent,
    rgba(212,175,55,.65),
    transparent
  );
  z-index:1;
}

/* Ensure content stays above overlays */
.cps-footer-container,
.cps-footer-goldline,
.cps-footer-legal{
  position:relative;
  z-index:2;
}
/* =========================================
   CPS FOOTER – PUBLISHER LEVEL (CLEAN)
   ========================================= */

.cps-footer-elite{
  position:relative;
  background:
    linear-gradient(180deg,rgba(4,12,28,.96),rgba(2,6,16,.99)),
    radial-gradient(1200px 500px at 15% 0%, #0b2a5a, transparent 60%);
  color:#eef4ff;
  font-family:"Inter","Segoe UI","Helvetica Neue",Arial,sans-serif;
  overflow:hidden;
}

/* GOLD LINE */
.cps-footer-goldline{
  height:4px;
  background:linear-gradient(90deg,#d4af37,#ffd778,#d4af37);
  background-size:200% 100%;
  animation:goldFlow 8s linear infinite;
}

@keyframes goldFlow{
  from{background-position:0%}
  to{background-position:200%}
}

/* GRID */
.cps-footer-container{
  max-width:1400px;
  margin:auto;
  padding:90px 40px 70px;
  display:grid;
  grid-template-columns:2.4fr 1fr 1fr 1.3fr;
  gap:70px;
}

/* BRAND */
.cps-footer-logo{
  font-family:"Poppins","Inter",sans-serif;
  font-size:34px;
  font-weight:800;
  letter-spacing:2px;
  color:#d4af37;
}

.cps-footer-logo span{
  display:block;
  font-size:12px;
  letter-spacing:1px;
  color:#ffd778;
  margin-top:6px;
}

.cps-footer-desc{
  font-size:14px;
  line-height:1.85;
  opacity:.85;
  max-width:440px;
  margin-top:18px;
}

/* SOCIAL */
.cps-footer-social{
  display:flex;
  gap:14px;
  margin-top:22px;
}

.cps-footer-social .soc{
  width:40px;
  height:40px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  color:#d4af37;
  border:1px solid rgba(212,175,55,.55);
  text-decoration:none;
  transition:.35s;
}

.cps-footer-social .soc:hover{
  background:#d4af37;
  color:#111;
  box-shadow:0 0 20px rgba(212,175,55,.6);
}

/* BLOCKS */
.cps-footer-block h4{
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:1.6px;
  color:#ffd778;
  margin-bottom:20px;
}

.cps-footer-block ul{
  list-style:none;
  padding:0;
  margin:0;
}

.cps-footer-block li{
  margin-bottom:11px;
}

.cps-footer-block a{
  color:#eef4ff;
  font-size:14px;
  text-decoration:none;
  padding-left:18px;
  position:relative;
  transition:.3s;
}

.cps-footer-block a::before{
  content:"›";
  position:absolute;
  left:0;
  color:#d4af37;
}

.cps-footer-block a:hover{
  color:#ffd778;
  transform:translateX(6px);
}

/* INFO */
.cps-footer-info{
  font-size:14px;
  line-height:1.7;
  opacity:.85;
}

/* LOGOS */
.cps-footer-logos{
  display:flex;
  gap:14px;
  margin-top:18px;
}

.cps-footer-logos img{
  height:30px;
  filter:grayscale(1);
  opacity:.85;
  transition:.3s;
}

.cps-footer-logos img:hover{
  filter:none;
  opacity:1;
}

/* BOTTOM BAR */
.cps-footer-bottom{
  text-align:center;
  padding:22px;
  font-size:13px;
  color:rgba(255,255,255,.72);
  border-top:1px solid rgba(255,255,255,.12);
  background:rgba(2,6,15,.98);
}

/* RESPONSIVE */
@media(max-width:1100px){
  .cps-footer-container{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:650px){
  .cps-footer-container{
    grid-template-columns:1fr;
    text-align:center;
  }
  .cps-footer-social{
    justify-content:center;
  }
  .cps-footer-logos{
    justify-content:center;
  }
}

/* HIDE PKP */
.pkp_brand_footer{
  display:none!important;
}
/* =========================================
   CPS FOOTER – MICRO GRID BACKGROUND
   ========================================= */

.cps-footer-elite::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size:34px 34px;
  opacity:.35;
  pointer-events:none;
  z-index:0;
}

/* keep content above grid */
.cps-footer-container,
.cps-footer-bottom,
.cps-footer-goldline{
  position:relative;
  z-index:2;
}
.cps-footer-elite::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle, rgba(255,255,255,.12) 1px, transparent 1.5px);
  background-size:28px 28px;
  opacity:.25;
  pointer-events:none;
  z-index:0;
}
/* ===============================
   CPS – GLASS INFO CARD (RIGHT)
   =============================== */

.cps-footer-info-card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  padding: 22px 18px;
  margin-top: 10px;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow:
    0 18px 45px rgba(0,0,0,.55),
    inset 0 0 0 1px rgba(255,255,255,.05);
}

/* icons row */
.cps-footer-info-icons{
  display:flex;
  gap:14px;
  align-items:center;
  margin-top:14px;
}

.cps-footer-info-icons img{
  height:34px;
  opacity:.95;
  filter: grayscale(100%);
  transition:.4s ease;
}

.cps-footer-info-icons img:hover{
  filter:none;
  transform:translateY(-2px);
}
/* ======================================================
   CPS NAVIGATION – ELSEVIER STYLE (SAFE FOR OJS)
   ====================================================== */

/* ===== NAV BAR BACKGROUND ===== */
.pkp_navigation_primary_row,
.pkp_navigation_primary {
  background:
    linear-gradient(180deg, rgba(6,18,40,.98), rgba(3,10,24,.98));
  border-top:1px solid rgba(255,214,107,.25);
  border-bottom:1px solid rgba(255,255,255,.08);
  box-shadow:0 12px 40px rgba(0,0,0,.55);
}

/* ===== MENU ALIGNMENT ===== */
.pkp_navigation_primary ul {
  display:flex;
  align-items:center;
  gap:26px;
}

/* ===== LINKS ===== */
.pkp_navigation_primary a {
  color:#eaf2ff !important;
  font-weight:600;
  font-size:14px;
  padding:12px 6px;
  position:relative;
  transition:color .35s ease;
}

/* ===== GOLD UNDERLINE EFFECT ===== */
.pkp_navigation_primary a::after {
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:linear-gradient(90deg,#d4af37,#ffd778);
  transition:.35s ease;
}

/* ===== HOVER ===== */
.pkp_navigation_primary a:hover {
  color:#ffd778 !important;
}

.pkp_navigation_primary a:hover::after {
  width:100%;
}

/* ===== ACTIVE LINK ===== */
.pkp_navigation_primary .pkp_navigation_primary_item_active > a {
  color:#ffd778 !important;
}

.pkp_navigation_primary .pkp_navigation_primary_item_active > a::after {
  width:100%;
}

/* ===== DROPDOWN MENU ===== */
.pkp_navigation_primary ul ul {
  background:rgba(5,12,28,.98);
  border-radius:10px;
  box-shadow:0 20px 50px rgba(0,0,0,.65);
  padding:10px 0;
}

.pkp_navigation_primary ul ul a {
  font-size:13px;
  padding:10px 18px;
}

/* ===== SEARCH ICON ===== */
.pkp_navigation_search_wrapper a {
  color:#ffd778 !important;
  font-weight:700;
}
/* ======================================================
   CPS NAV DROPDOWN – FIX & PUBLISHER STYLE
   ====================================================== */

/* تأكد أن الشريط فوق كل شيء */
.pkp_navigation_primary {
  position: relative;
  z-index: 9999;
}

/* ===== DROPDOWN CONTAINER ===== */
.pkp_navigation_primary ul ul {
  background: rgba(6, 18, 40, 0.98) !important;
  border-radius: 12px;
  padding: 10px 0;
  min-width: 240px;

  box-shadow:
    0 25px 60px rgba(0,0,0,.65),
    inset 0 0 0 1px rgba(255,255,255,.08);

  border: 1px solid rgba(212,175,55,.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  z-index: 99999;
}

/* ===== DROPDOWN ITEMS ===== */
.pkp_navigation_primary ul ul li {
  margin: 0;
}

/* ===== LINKS ===== */
.pkp_navigation_primary ul ul a {
  color: #eaf2ff !important;
  font-size: 13.5px;
  font-weight: 500;
  padding: 10px 18px;
  display: block;
  transition: all .3s ease;
}

/* ===== HOVER ===== */
.pkp_navigation_primary ul ul a:hover {
  background: linear-gradient(
    90deg,
    rgba(212,175,55,.18),
    rgba(212,175,55,.05)
  );
  color: #ffd778 !important;
  padding-left: 24px;
}

/* ===== REMOVE OLD BULLETS ===== */
.pkp_navigation_primary ul ul {
  list-style: none;
}

/* ===== ARROW FIX ===== */
.pkp_navigation_primary ul ul a::after {
  display: none !important;
}
.pkp_structure_head {
  z-index: 99999;
  position: relative;
}
/* ======================================================
   CPS – FINAL DROPDOWN FIX (OJS OVERRIDE)
   ====================================================== */

/* الحاوية */
.pkp_navigation_primary ul ul,
.pkp_navigation_primary .dropdown-menu {
  background-color: rgba(6,18,40,0.98) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-radius: 14px;
  border: 1px solid rgba(212,175,55,.28);

  box-shadow:
    0 30px 70px rgba(0,0,0,.75),
    inset 0 0 0 1px rgba(255,255,255,.06);

  padding: 10px 0;
  min-width: 260px;

  z-index: 999999 !important;
}

/* عناصر القائمة */
.pkp_navigation_primary ul ul li {
  background: transparent !important;
}

/* الروابط */
.pkp_navigation_primary ul ul a {
  background: transparent !important;
  color: #eaf2ff !important;
  font-size: 13.5px;
  font-weight: 500;
  padding: 11px 20px;
  display: block;
  transition: all .25s ease;
}

/* Hover */
.pkp_navigation_primary ul ul a:hover {
  background: linear-gradient(
    90deg,
    rgba(212,175,55,.22),
    rgba(212,175,55,.06)
  ) !important;

  color: #ffd778 !important;
  padding-left: 26px;
}

/* إزالة أي لون أبيض افتراضي */
.pkp_navigation_primary ul ul * {
  background-color: transparent !important;
}

/* تأكيد الظهور فوق المحتوى */
.pkp_structure_head,
.pkp_navigation_primary {
  position: relative;
  z-index: 99999;
}
/* ======================================================
   CPS – NAVIGATION BOTTOM DIVIDER (ELSEVIER STYLE)
   ====================================================== */

.pkp_navigation_primary {
  position: relative;
}

/* الخط الذهبي المتدرّج */
.pkp_navigation_primary::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:2px;
  background:linear-gradient(
    90deg,
    transparent 0%,
    #d4af37 20%,
    #ffd778 50%,
    #d4af37 80%,
    transparent 100%
  );
  opacity:.9;
}
/* ======================================================
   CPS – NAV META BAR
   ====================================================== */

.cps-nav-meta{
  background: linear-gradient(180deg, #071a36, #061225);
  color: rgba(255,255,255,.85);
  font-size: 12px;
  letter-spacing: .4px;
  text-align: center;
  padding: 6px 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.cps-nav-meta span{
  margin: 0 12px;
  position: relative;
}

.cps-nav-meta span::after{
  content:"•";
  margin-left: 12px;
  color:#d4af37;
}

.cps-nav-meta span:last-child::after{
  content:"";
}
/* ======================================================
   CPS – CURRENT ISSUE CARDS (ELSEVIER LEVEL)
   ====================================================== */

/* غلاف البطاقات */
.obj_issue_toc,
.obj_issue_summary,
.issue-toc{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 28px;
  margin-top: 30px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

/* عنوان Current Issue */
.obj_issue_toc h2,
.obj_issue_summary h2{
  font-size: 26px;
  font-weight: 800;
  color:#0b2a4a;
  border-left: 5px solid #d4af37;
  padding-left: 14px;
  margin-bottom: 22px;
}

/* كل مقال */
.obj_article_summary{
  background: rgba(255,255,255,.96);
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 18px;
  transition: .35s ease;
  border: 1px solid rgba(0,0,0,.08);
}

/* Hover */
.obj_article_summary:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
  border-color:#d4af37;
}

/* عنوان المقال */
.obj_article_summary .title a{
  font-size: 18px;
  font-weight: 700;
  color:#071a36;
  text-decoration:none;
}

.obj_article_summary .title a:hover{
  color:#d4af37;
}

/* المؤلفين */
.obj_article_summary .authors{
  font-size: 13px;
  opacity:.75;
  margin-top:6px;
}

/* الملخص */
.obj_article_summary .abstract{
  font-size:14px;
  line-height:1.7;
  margin-top:10px;
  color:#333;
}
.obj_article_summary::after{
  content:"PDF • Open Access • Peer Reviewed";
  display:block;
  margin-top:10px;
  font-size:11px;
  color:#777;
  letter-spacing:.4px;
}
/* ======================================================
   CPS – CURRENT ISSUE (HOME) + ISSUE TOC (CURRENT PAGE)
   Works on OJS Default Theme
   ====================================================== */

/* ============ 1) صندوق العدد في HOME ============ */
.pkp_page_index .obj_issue_summary,
.pkp_page_index .current_issue,
.pkp_page_index .issue_summary{
  background: rgba(255,255,255,.04) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 16px !important;
  padding: 28px !important;
  margin-top: 30px !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  box-shadow: 0 20px 50px rgba(0,0,0,.35) !important;
}

/* عنوان Current Issue */
.pkp_page_index .obj_issue_summary h2,
.pkp_page_issue .obj_issue_toc h2,
.pkp_page_issue .cmp_issue_toc h2{
  font-size: 26px !important;
  font-weight: 800 !important;
  color:#0b2a4a !important;
  border-left: 5px solid #d4af37 !important;
  padding-left: 14px !important;
  margin-bottom: 22px !important;
}

/* ============ 2) صفحة العدد الحالي /issue/current ============ */
.pkp_page_issue .obj_issue_toc,
.pkp_page_issue .cmp_issue_toc,
.pkp_page_issue .issue-toc{
  background: rgba(255,255,255,.04) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 16px !important;
  padding: 28px !important;
  margin-top: 30px !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  box-shadow: 0 20px 50px rgba(0,0,0,.35) !important;
}

/* ============ 3) بطاقات المقالات (تغطي أكثر من تركيب OJS) ============ */
.pkp_page_issue .cmp_article_list > li,
.pkp_page_issue .cmp_article_list .obj_article_summary,
.pkp_page_issue .obj_issue_toc .obj_article_summary,
.pkp_page_issue .cmp_issue_toc .obj_article_summary{
  background: rgba(255,255,255,.96) !important;
  border-radius: 14px !important;
  padding: 18px 22px !important;
  margin-bottom: 18px !important;
  transition: .35s ease !important;
  border: 1px solid rgba(0,0,0,.08) !important;
}

/* Hover */
.pkp_page_issue .cmp_article_list > li:hover,
.pkp_page_issue .obj_article_summary:hover{
  transform: translateY(-6px) !important;
  box-shadow: 0 18px 45px rgba(0,0,0,.18) !important;
  border-color:#d4af37 !important;
}

/* عنوان المقال */
.pkp_page_issue .obj_article_summary .title a,
.pkp_page_issue .cmp_article_list .title a{
  font-size: 18px !important;
  font-weight: 700 !important;
  color:#071a36 !important;
  text-decoration:none !important;
}

.pkp_page_issue .obj_article_summary .title a:hover,
.pkp_page_issue .cmp_article_list .title a:hover{
  color:#d4af37 !important;
}

/* المؤلفين */
.pkp_page_issue .obj_article_summary .authors,
.pkp_page_issue .cmp_article_list .authors{
  font-size: 13px !important;
  opacity:.75 !important;
  margin-top:6px !important;
}

/* شارة بسيطة أسفل البطاقة */
.pkp_page_issue .obj_article_summary::after,
.pkp_page_issue .cmp_article_list > li::after{
  content:"PDF • Open Access • Peer Reviewed";
  display:block;
  margin-top:10px;
  font-size:11px;
  color:#777;
  letter-spacing:.4px;
}
/* ======================================================
   CPS – CURRENT ISSUE (HOME) + ISSUE TOC (CURRENT PAGE)
   Works on OJS Default Theme
   ====================================================== */

/* ============ 1) صندوق العدد في HOME ============ */
.pkp_page_index .obj_issue_summary,
.pkp_page_index .current_issue,
.pkp_page_index .issue_summary{
  background: rgba(255,255,255,.04) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 16px !important;
  padding: 28px !important;
  margin-top: 30px !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  box-shadow: 0 20px 50px rgba(0,0,0,.35) !important;
}

/* عنوان Current Issue */
.pkp_page_index .obj_issue_summary h2,
.pkp_page_issue .obj_issue_toc h2,
.pkp_page_issue .cmp_issue_toc h2{
  font-size: 26px !important;
  font-weight: 800 !important;
  color:#0b2a4a !important;
  border-left: 5px solid #d4af37 !important;
  padding-left: 14px !important;
  margin-bottom: 22px !important;
}

/* ============ 2) صفحة العدد الحالي /issue/current ============ */
.pkp_page_issue .obj_issue_toc,
.pkp_page_issue .cmp_issue_toc,
.pkp_page_issue .issue-toc{
  background: rgba(255,255,255,.04) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 16px !important;
  padding: 28px !important;
  margin-top: 30px !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  box-shadow: 0 20px 50px rgba(0,0,0,.35) !important;
}

/* ============ 3) بطاقات المقالات (تغطي أكثر من تركيب OJS) ============ */
.pkp_page_issue .cmp_article_list > li,
.pkp_page_issue .cmp_article_list .obj_article_summary,
.pkp_page_issue .obj_issue_toc .obj_article_summary,
.pkp_page_issue .cmp_issue_toc .obj_article_summary{
  background: rgba(255,255,255,.96) !important;
  border-radius: 14px !important;
  padding: 18px 22px !important;
  margin-bottom: 18px !important;
  transition: .35s ease !important;
  border: 1px solid rgba(0,0,0,.08) !important;
}

/* =========================================
   CPS – ISSUE VIEW ARTICLE CARDS (FIXED)
   ========================================= */

.cmp_article_list .articles{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:26px;
  margin-top:40px;
}

/* بطاقة المقال */
.cmp_article_list .article{
  background:#ffffff;
  border-radius:18px;
  padding:22px 24px;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 18px 45px rgba(0,0,0,.15);
  transition:.35s ease;
}

/* Hover */
.cmp_article_list .article:hover{
  transform:translateY(-8px);
  border-color:#d4af37;
  box-shadow:0 26px 60px rgba(0,0,0,.22);
}

/* عنوان المقال */
.cmp_article_list .article .title a{
  font-size:18px;
  font-weight:800;
  color:#071a36;
  text-decoration:none;
}

.cmp_article_list .article .title a:hover{
  color:#d4af37;
}

/* المؤلفون */
.cmp_article_list .article .authors{
  font-size:13px;
  opacity:.75;
  margin-top:6px;
}

/* الملخص */
.cmp_article_list .article .abstract{
  font-size:14px;
  line-height:1.75;
  margin-top:12px;
  color:#333;
}

/* شارات */
.cmp_article_list .article::after{
  content:"PDF • Open Access • Peer Reviewed";
  display:block;
  margin-top:14px;
  font-size:11px;
  color:#777;
  letter-spacing:.4px;
}
/* =========================================
   CPS – ISSUE VIEW ARTICLE CARDS (FIXED)
   ========================================= */

.cmp_article_list .articles{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:26px;
  margin-top:40px;
}

/* بطاقة المقال */
.cmp_article_list .article{
  background:#ffffff;
  border-radius:18px;
  padding:22px 24px;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 18px 45px rgba(0,0,0,.15);
  transition:.35s ease;
}

/* Hover */
.cmp_article_list .article:hover{
  transform:translateY(-8px);
  border-color:#d4af37;
  box-shadow:0 26px 60px rgba(0,0,0,.22);
}

/* عنوان المقال */
.cmp_article_list .article .title a{
  font-size:18px;
  font-weight:800;
  color:#071a36;
  text-decoration:none;
}

.cmp_article_list .article .title a:hover{
  color:#d4af37;
}

/* المؤلفون */
.cmp_article_list .article .authors{
  font-size:13px;
  opacity:.75;
  margin-top:6px;
}

/* الملخص */
.cmp_article_list .article .abstract{
  font-size:14px;
  line-height:1.75;
  margin-top:12px;
  color:#333;
}

/* شارات */
.cmp_article_list .article::after{
  content:"PDF • Open Access • Peer Reviewed";
  display:block;
  margin-top:14px;
  font-size:11px;
  color:#777;
  letter-spacing:.4px;
}
/* =========================================
   CPS – ISSUE VIEW ARTICLE CARDS (FIXED)
   ========================================= */

.cmp_article_list .articles{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:26px;
  margin-top:40px;
}

/* بطاقة المقال */
.cmp_article_list .article{
  background:#ffffff;
  border-radius:18px;
  padding:22px 24px;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 18px 45px rgba(0,0,0,.15);
  transition:.35s ease;
}

/* Hover */
.cmp_article_list .article:hover{
  transform:translateY(-8px);
  border-color:#d4af37;
  box-shadow:0 26px 60px rgba(0,0,0,.22);
}

/* عنوان المقال */
.cmp_article_list .article .title a{
  font-size:18px;
  font-weight:800;
  color:#071a36;
  text-decoration:none;
}

.cmp_article_list .article .title a:hover{
  color:#d4af37;
}

/* المؤلفون */
.cmp_article_list .article .authors{
  font-size:13px;
  opacity:.75;
  margin-top:6px;
}

/* الملخص */
.cmp_article_list .article .abstract{
  font-size:14px;
  line-height:1.75;
  margin-top:12px;
  color:#333;
}

/* شارات */
.cmp_article_list .article::after{
  content:"PDF • Open Access • Peer Reviewed";
  display:block;
  margin-top:14px;
  font-size:11px;
  color:#777;
  letter-spacing:.4px;
}
/* =========================================
   CPS – ISSUE VIEW ARTICLE CARDS (FIXED)
   ========================================= */

.cmp_article_list .articles{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:26px;
  margin-top:40px;
}

/* بطاقة المقال */
.cmp_article_list .article{
  background:#ffffff;
  border-radius:18px;
  padding:22px 24px;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 18px 45px rgba(0,0,0,.15);
  transition:.35s ease;
}

/* Hover */
.cmp_article_list .article:hover{
  transform:translateY(-8px);
  border-color:#d4af37;
  box-shadow:0 26px 60px rgba(0,0,0,.22);
}

/* عنوان المقال */
.cmp_article_list .article .title a{
  font-size:18px;
  font-weight:800;
  color:#071a36;
  text-decoration:none;
}

.cmp_article_list .article .title a:hover{
  color:#d4af37;
}

/* المؤلفون */
.cmp_article_list .article .authors{
  font-size:13px;
  opacity:.75;
  margin-top:6px;
}

/* الملخص */
.cmp_article_list .article .abstract{
  font-size:14px;
  line-height:1.75;
  margin-top:12px;
  color:#333;
}

/* شارات */
.cmp_article_list .article::after{
  content:"PDF • Open Access • Peer Reviewed";
  display:block;
  margin-top:14px;
  font-size:11px;
  color:#777;
  letter-spacing:.4px;
}
/* =========================================
   CPS – ISSUE VIEW ARTICLE CARDS (FIXED)
   ========================================= */

.cmp_article_list .articles{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:26px;
  margin-top:40px;
}

/* بطاقة المقال */
.cmp_article_list .article{
  background:#ffffff;
  border-radius:18px;
  padding:22px 24px;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 18px 45px rgba(0,0,0,.15);
  transition:.35s ease;
}

/* Hover */
.cmp_article_list .article:hover{
  transform:translateY(-8px);
  border-color:#d4af37;
  box-shadow:0 26px 60px rgba(0,0,0,.22);
}

/* عنوان المقال */
.cmp_article_list .article .title a{
  font-size:18px;
  font-weight:800;
  color:#071a36;
  text-decoration:none;
}

.cmp_article_list .article .title a:hover{
  color:#d4af37;
}

/* المؤلفون */
.cmp_article_list .article .authors{
  font-size:13px;
  opacity:.75;
  margin-top:6px;
}

/* الملخص */
.cmp_article_list .article .abstract{
  font-size:14px;
  line-height:1.75;
  margin-top:12px;
  color:#333;
}

/* شارات */
.cmp_article_list .article::after{
  content:"PDF • Open Access • Peer Reviewed";
  display:block;
  margin-top:14px;
  font-size:11px;
  color:#777;
  letter-spacing:.4px;
}
/* =========================================
   CPS – SIDEBAR CARDS (ISSUE VIEW)
   ========================================= */

/* الحاوية */
.pkp_structure_sidebar{
  display:flex;
  flex-direction:column;
  gap:26px;
}

/* كل بلوك */
.pkp_structure_sidebar .pkp_block{
  background:#ffffff;
  border-radius:18px;
  padding:22px 20px;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 18px 45px rgba(0,0,0,.15);
  transition:.35s ease;
}

/* Hover */
.pkp_structure_sidebar .pkp_block:hover{
  transform:translateY(-6px);
  box-shadow:0 26px 55px rgba(0,0,0,.22);
  border-color:#d4af37;
}

/* عنوان البلوك */
.pkp_structure_sidebar .pkp_block .title{
  font-size:15px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.8px;
  color:#071a36;
  border-left:4px solid #d4af37;
  padding-left:10px;
  margin-bottom:16px;
}

/* الروابط */
.pkp_structure_sidebar .pkp_block a{
  color:#071a36;
  font-weight:600;
  text-decoration:none;
  display:block;
  margin-bottom:10px;
  transition:.3s;
}

.pkp_structure_sidebar .pkp_block a:hover{
  color:#d4af37;
  transform:translateX(6px);
}

/* الصور داخل البلوك (مثل Journal Template) */
.pkp_structure_sidebar img{
  max-width:100%;
  border-radius:10px;
  margin-top:10px;
}
/* ===============================
   CPS – ARTICLE VIEW (HEADER)
   =============================== */

.obj_article_details,
.obj_article_summary,
.article-details {
  background: rgba(255,255,255,.96);
  border-radius: 18px;
  padding: 34px 36px;
  margin-bottom: 28px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 20px 55px rgba(0,0,0,.18);
}
.obj_article_details h1,
.article-details h1 {
  font-size: 30px;
  font-weight: 900;
  color: #071a36;
  line-height: 1.35;
  margin-bottom: 16px;
  border-left: 6px solid #d4af37;
  padding-left: 16px;
}
.article-details .authors,
.article-details .authors a {
  font-size: 14px;
  font-weight: 600;
  color: #444;
}

.article-details .authors a:hover {
  color: #d4af37;
}
.article-details .abstract {
  margin-top: 26px;
  background: rgba(11,42,74,.04);
  border-left: 4px solid #d4af37;
  padding: 22px 26px;
  border-radius: 14px;
}

.article-details .abstract h2 {
  font-size: 18px;
  font-weight: 800;
  color: #0b2a4a;
  margin-bottom: 12px;
}

.article-details .abstract p {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}
.article-details .galleys_links a {
  display: inline-block;
  background: linear-gradient(135deg,#0b2a4a,#071a36);
  color: #fff !important;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 700;
  margin-right: 10px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  transition: .3s ease;
}

.article-details .galleys_links a:hover {
  background: #d4af37;
  color: #071a36 !important;
  transform: translateY(-3px);
}
.article-details .item {
  background: rgba(0,0,0,.03);
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 12px;
  font-size: 13.5px;
}
/* ==============================
   CPS | GOLD DOT BEFORE ITEMS
   ============================== */

.cps-news-track span{
  position:relative;
  padding-left:16px;                 /* مساحة للنقطة */
}

/* النقطة الذهبية */
.cps-news-track span::before{
  content:"•";
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
  color:#ffd66b;                     /* ذهبي عالمي */
  font-size:18px;
  line-height:1;
  text-shadow:0 0 6px rgba(255,214,107,.6);
}
/* =====================================
   CPS | GOLD SEPARATOR BETWEEN NEWS
   ===================================== */

.cps-news-track span{
  position:relative;
  padding-right:34px;   /* مساحة للفاصل */
}

/* الفاصل الذهبي */
.cps-news-track span::after{
  content:"";
  position:absolute;
  right:10px;
  top:50%;
  width:14px;
  height:2px;
  background:linear-gradient(
    90deg,
    rgba(255,214,107,.2),
    rgba(255,214,107,.9),
    rgba(255,214,107,.2)
  );
  transform:translateY(-50%);
  border-radius:4px;
  animation:cpsGlow 2.5s ease-in-out infinite;
}

/* حركة توهج خفيفة */
@keyframes cpsGlow{
  0%{ opacity:.4; }
  50%{ opacity:1; }
  100%{ opacity:.4; }
}
/* =========================
   CPS – EDITORIAL BOARD CARDS
   ========================= */

.editorial-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:24px;
  margin-top:30px;
}

.editor-card{
  background:#ffffff;
  border-radius:14px;
  padding:22px;
  box-shadow:0 12px 35px rgba(0,0,0,.10);
  border-top:5px solid #0b3a66;
  transition:all .3s ease;
}

.editor-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 45px rgba(0,0,0,.18);
}

.editor-name{
  font-size:18px;
  font-weight:800;
  color:#0b2a4a;
  margin-bottom:6px;
}

.editor-role{
  font-size:12.5px;
  font-weight:800;
  color:#d4af37;
  text-transform:uppercase;
  letter-spacing:.6px;
  margin-bottom:10px;
}

.editor-info{
  font-size:14px;
  color:#444;
  line-height:1.7;
}

.editor-info a{
  color:#0b3a66;
  text-decoration:none;
  font-weight:700;
}

.editor-info a:hover{
  text-decoration:underline;
}
.editor-links{
  display:flex;
  gap:14px;
  margin-top:14px;
  align-items:center;
}

.editor-links a{
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#f4f6f8;
  box-shadow:0 6px 16px rgba(0,0,0,.12);
  transition:.25s ease;
}

.editor-links a:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 24px rgba(0,0,0,.25);
}

.editor-links img{
  width:20px;
  height:20px;
  object-fit:contain;
}
.editorial-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(320px,1fr));
  gap:22px;
}

.editor-card{
  background:#fff;
  border-radius:14px;
  padding:20px;
  box-shadow:0 12px 35px rgba(0,0,0,.12);
}

.editor-role{
  display:inline-block;
  margin:6px 0 10px;
  color:#d4af37;
  font-weight:700;
}

.editor-links a{
  width:36px;
  height:36px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#0b2a5a;
  color:#fff;
  margin-right:6px;
  transition:.3s;
}

.editor-links a:hover{
  background:#d4af37;
  color:#000;
}
.editor-role{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:50%;
  margin:10px auto 6px;
  font-size:18px;
  color:#fff;
}

/* Editor-in-Chief */
.icon-chief{
  background:linear-gradient(135deg,#d4af37,#ffd66b);
  box-shadow:0 0 12px rgba(212,175,55,.55);
}

/* Journal Manager */
.icon-manager{
  background:linear-gradient(135deg,#1e88e5,#64b5f6);
}

/* Editor */
.icon-editor{
  background:linear-gradient(135deg,#2e7d32,#66bb6a);
}
/* Fix header shadow spacing */
.pkp_structure_head{
  box-shadow: 0 6px 18px rgba(0,0,0,.15) !important;
}

.pkp_structure_main{
  margin-top: 14px !important;
}
/* Sidebar action buttons */
.pkp_structure_sidebar a,
.pkp_structure_sidebar .block_make_submission a{
  background: #0b2f5f !important;
  color:#fff !important;
  border-radius:8px !important;
  padding:12px 14px !important;
  font-weight:700 !important;
  display:block !important;
  text-align:center !important;
}

.pkp_structure_sidebar a:hover{
  background:#081c3a !important;
}
/* Footer academic clean */
.pkp_structure_footer_wrapper{
  background:#081c3a !important;
  color:#fff !important;
  padding:26px 0 !important;
  margin-top:40px !important;
}

.pkp_structure_footer_wrapper a{
  color:#d4af37 !important;
  font-weight:600 !important;
}
/* Article meta */
.obj_article_summary .meta,
.obj_article_summary .authors{
  font-size:13px !important;
  color:#555 !important;
}
/* =====================================================
   ASJ | HEADER BRAND – CLEAN & PREMIUM (FINAL)
   ===================================================== */

/* Wrapper */
.pkp_site_name_wrapper{
  display:flex !important;
  align-items:center;
}

/* Logo + Text container */
.pkp_site_name a{
  display:flex !important;
  align-items:center;
  gap:18px;
  position:relative;
  text-decoration:none;
}

/* Logo */
.pkp_site_name img{
  height:72px;
  width:auto;
  transition:transform .5s ease;
}

/* Hover logo */
.pkp_site_name a:hover img{
  transform:scale(1.06) rotate(-1deg);
}

/* Main Title */
.pkp_site_name a::after{
  content:"ASJ  |  Academic Science Journal";
  font-size:32px;
  font-weight:900;
  letter-spacing:1.2px;
  color:#ffffff;
  line-height:1.15;
  white-space:nowrap;

  animation:asjSlide 1.s ease forwards;
}

/* ISSN Line */
.pkp_site_name a::before{
  content:"ISSN: 2958-4612   •   E-ISSN: 2959-5568";
  position:absolute;
  left:330px;
  top:55px;

  font-size:14px;
  font-weight:600;
  letter-spacing:1px;
  color:#d4af37;

  opacity:0;
  animation:asjFade 1.9s ease forwards;
}

/* Animations */
@keyframes asjSlide{
  from{opacity:0;transform:translateX(-18px)}
  to{opacity:1;transform:translateX(0)}
}

@keyframes asjFade{
  from{opacity:0;transform:translateY(8px)}
  to{opacity:1;transform:translateY(0)}
}

/* Mobile */
@media(max-width:768px){
  .pkp_site_name a::after{
    font-size:20px;
  }
  .pkp_site_name a::before{
    font-size:11px;
    left:86px;
    top:34px;
  }
}



/* TAG */
.pkp_site_name_wrapper::after{
  content:"Peer-Reviewed • Open Access";
  position:absolute;

  right:0;              /* يمين الهيدر */
  bottom:-6px;          /* أسفل الاسم */

  font-size:11px;
  font-weight:700;
  letter-spacing:.8px;

  color:#d4af37;
  padding:2px 10px;

  border-bottom:1.5px solid rgba(212,175,55,.55);
  white-space:nowrap;
}
.pkp_site_name_wrapper::after{
  bottom:-4px;                 /* أقرب قليلًا */
  font-size:10.5px;            /* أخف */
  letter-spacing:.9px;
  color:rgba(212,175,55,.85);  /* ذهبي أنعم */
}
.pkp_site_name_wrapper::after{
  font-size:10px;
  opacity:.85;
}

/* =========================================
   ASJ | PERFECT HEADER HEIGHT & COLOR
   ========================================= */

/* الهيكل العام للهيدر */
.pkp_structure_head{
  background: linear-gradient(
    180deg,
    #061a33 0%,
    #0a2747 60%,
    #0d2f57 100%
  ) !important;

  padding-top: 22px !important;
  padding-bottom: 16px !important;

  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}

/* منطقة اسم المجلة */
.pkp_site_name_wrapper{
  padding: 6px 0 12px 0 !important;
}

/* اسم المجلة */
.pkp_site_name{
  font-size: 30px !important;
  line-height: 1.25;
}

/* الأرقام المعيارية */
.pkp_site_name .issn{
  margin-top: 6px;
}

/* شريط القوائم */
.pkp_navigation_primary_wrapper{
  background: transparent !important;
  padding-top: 10px;
  padding-bottom: 10px;

  border-top: 1px solid rgba(212,175,55,.25);
}

/* عناصر القائمة */
.pkp_navigation_primary > li > a{
  padding: 8px 14px;
  font-size: 14px;
}

/* خط ذهبي فاصل ناعم أسفل الهيدر */
.pkp_structure_head::after{
  content:"";
  display:block;
  height:2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212,175,55,.65),
    transparent
  );
}
/* ===== ASJ | HEADER FINAL POLISH ===== */

/* تعميق الإحساس بالطبقات */
.pkp_structure_head{
  background:
    radial-gradient(circle at top,
      rgba(255,255,255,0.06),
      transparent 60%),
    linear-gradient(
      180deg,
      #05172e 0%,
      #0a2a4f 55%,
      #0d355f 100%
    ) !important;
}

/* إبراز شريط القوائم بشكل أنيق */
.pkp_navigation_primary_wrapper{
  background: rgba(0,0,0,0.18);
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(212,175,55,.35);
}

/* ظل أنعم وأسفل فقط */
.pkp_structure_head{
  box-shadow: 0 10px 26px rgba(0,0,0,.28);
}
/* ===== ASJ | DROPDOWN MENU FINAL STYLE ===== */

.pkp_navigation_primary ul ul{
  background: linear-gradient(
    180deg,
    #061a33 0%,
    #0b2d52 100%
  );
  border-radius: 10px;
  padding: 6px 0;
  border: 1px solid rgba(212,175,55,.35);
  box-shadow: 0 14px 34px rgba(0,0,0,.45);
  min-width: 240px;
}

/* عناصر القائمة */
.pkp_navigation_primary ul ul li a{
  color: #e8eef6 !important;
  padding: 10px 18px;
  font-size: 14px;
  transition: all .25s ease;
}

/* Hover أنيق */
.pkp_navigation_primary ul ul li a:hover{
  background: rgba(212,175,55,.12);
  color: #ffd873 !important;
}

/* العنصر الحالي */
.pkp_navigation_primary ul ul li.current a{
  background: rgba(212,175,55,.18);
  color: #ffd873 !important;
  font-weight: 600;
}

/* إزالة أي حدود افتراضية مزعجة */
.pkp_navigation_primary ul ul li{
  border: none !important;
}
/* ===============================
   ASJ | RIGHT ALIGNED GOLD DROPDOWN
   =============================== */

/* محاذاة القائمة المنسدلة لليمين */
.pkp_navigation_primary ul ul{
  right: 0 !important;
  left: auto !important;
  text-align: left;

  background: linear-gradient(
    180deg,
    #061a33 0%,
    #0b2d52 100%
  );

  border-radius: 12px;
  padding: 6px 0;
  border: 1px solid rgba(212,175,55,.45);
  box-shadow: 0 18px 38px rgba(0,0,0,.45);
  min-width: 260px;
  z-index: 9999;
}

/* عناصر القائمة */
.pkp_navigation_primary ul ul li a{
  color: #eef3f9 !important;
  padding: 11px 20px;
  font-size: 14px;
  letter-spacing: .2px;
  transition: all .25s ease;
}

/* Hover ذهبي ناعم */
.pkp_navigation_primary ul ul li a:hover{
  background: linear-gradient(
    90deg,
    rgba(212,175,55,.22),
    rgba(212,175,55,.08)
  );
  color: #ffd873 !important;
}

/* العنصر الحالي */
.pkp_navigation_primary ul ul li.current a{
  background: rgba(212,175,55,.28);
  color: #ffd873 !important;
  font-weight: 600;
}

/* إزالة أي خطوط جانبية */
.pkp_navigation_primary ul ul li{
  border: none !important;
}
/* =====================================
   ASJ | FIX NAVIGATION HEIGHT (FINAL)
   ===================================== */

/* الحاوية العامة لشريط القوائم */
.pkp_structure_navigation{
  padding: 0 !important;
  min-height: unset !important;
}

/* صف القوائم */
.pkp_navigation_primary_wrapper{
  padding: 0 !important;
}

/* القائمة نفسها */
.pkp_navigation_primary{
  min-height: 20px !important;   /* الارتفاع المثالي */
  line-height: 10px !important;
  padding: 0 5.pkp_navigation_primary > ul > li > a{
  padding: 12px 16px;   /* بدل 14px */
  font-size: 13.8px;
}
px !important;
}

/* عناصر القائمة */
.pkp_navigation_primary > ul > li{
  height: 44px !important;
  display: flex;
  align-items: center;
}

/* ===== HEADER BACKGROUND ===== */
.pkp_structure_head {
  background: linear-gradient(
    135deg,
    #0b1f3a 0%,
    #132f55 100%
  ) !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
}

/* ===== JOURNAL TITLE ===== */
.pkp_site_name h1,
.pkp_site_name a {
  color: #ffffff !important;
  letter-spacing: 0.8px;
}

/* ===== ISSN LINE ===== */
.site-name .issn,
.issn {
  color: #d4af37 !important;
  font-weight: 500;
  font-size: 12px;
}

/* ===== MENU BAR ===== */
.pkp_navigation_primary_wrapper {
  background: linear-gradient(
    180deg,
    #081a30 0%,
    #0b1f3a 100%
  ) !important;
  height: 54px; /* ارتفاع متوازن */
}

/* ===== MENU ITEMS ===== */
.pkp_navigation_primary > li > a {
  color: #ffffff !important;
  padding: 16px 18px;
  font-weight: 500;
}

.pkp_navigation_primary > li > a:hover {
  color: #d4af37 !important;
}

/* ===== DROPDOWN MENU ===== */
.pkp_navigation_primary ul {
  background: #0b1f3a !important;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

.pkp_navigation_primary ul li a {
  color: #ffffff !important;
}

.pkp_navigation_primary ul li a:hover {
  background: rgba(212, 175, 55, 0.12);
  color: #d4af37 !important;
}

/* ===== SEARCH ICON ===== */
.pkp_site_nav_toggle,
.pkp_navigation_search a {
  color: #d4af37 !important;
}

background: radial-gradient(
  circle at top right,
  #3A2E6E 0%,
  #0F2A44 40%,
  #050B1E 100%
);
.site-header {
  background:
    linear-gradient(
      rgba(5,15,30,0.88),
      rgba(5,15,30,0.88)
    ),
    url('/images/science-bg.jpg') center/cover no-repeat;
}
/* ===== UNIFIED HEADER + NAV COLOR ===== */

.pkp_structure_head,
.site-header,
#headerNavigationContainer,
.pkp_navigation_primary_wrapper {
  background: linear-gradient(
    180deg,
    #020E1F 0%,
    #081C34 100%
  ) !important;
}


/* =====================================
   ASJ | GLOBAL HEADER + HERO BACKGROUND
   ===================================== */

.pkp_structure_head,
.site-header,
.cps-hero-global {
  background:
    radial-gradient(
      1200px 600px at top right,
      rgba(212,175,55,.08),
      transparent 60%
    ),
    linear-gradient(
      135deg,
      #020E1F 0%,
      #081C34 55%,
      #050B1E 100%
    ) !important;

  color:#ffffff;
}

/* إزالة أي صورة قديمة */
.cps-hero-global{
  background-image:none !important;
}
.pkp_structure_head::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      120deg,
      transparent 40%,
      rgba(212,175,55,.05) 50%,
      transparent 60%
    );
  pointer-events:none;
}
/* =====================================
   ASJ | HERO CARD (GLOBAL JOURNAL STYLE)
   ===================================== */

.asj-hero-card{
  margin: 30px auto 40px;
  max-width: 1400px;
  padding: 0 30px;
}

.asj-hero-inner{
  background:
    radial-gradient(
      800px 300px at top right,
      rgba(212,175,55,.10),
      transparent 60%
    ),
    linear-gradient(
      135deg,
      #020E1F 0%,
      #081C34 55%,
      #050B1E 100%
    );

  border-radius: 22px;
  padding: 60px 70px;
  color:#ffffff;

  box-shadow:
    0 30px 70px rgba(0,0,0,.45),
    inset 0 0 0 1px rgba(255,255,255,.06);
}

/* Title */
.asj-hero-inner h1{
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: .6px;
}

/* Subtitle */
.asj-sub{
  max-width: 720px;
  font-size: 16px;
  line-height: 1.8;
  opacity: .9;
}

/* Meta */
.asj-meta{
  display:flex;
  gap:18px;
  margin-top:18px;
  font-size:13px;
  font-weight:600;
  color:#d4af37;
  flex-wrap:wrap;
}

/* Buttons */
.asj-actions{
  margin-top:30px;
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.btn-gold{
  background: linear-gradient(135deg,#d4af37,#ffd66b);
  color:#071a36;
  padding:14px 28px;
  border-radius:10px;
  font-weight:800;
  text-decoration:none;
  box-shadow:0 12px 30px rgba(212,175,55,.35);
}

.btn-outline{
  border:2px solid rgba(255,255,255,.55);
  color:#ffffff;
  padding:14px 28px;
  border-radius:10px;
  font-weight:700;
  text-decoration:none;
}

.btn-outline:hover{
  background:rgba(255,255,255,.08);
}

/* Responsive */
@media(max-width:768px){
  .asj-hero-inner{
    padding:40px 26px;
  }
  .asj-hero-inner h1{
    font-size:26px;
  }
}
/* =====================================
   ASJ | FORCE HERO CARD AFTER HEADER
   ===================================== */

/* اجعل البطاقة تطفو للأعلى */
.asj-hero-card{
  position: relative;
  margin-top: -40px;   /* ترفعها فوق المحتوى */
  z-index: 50;
}

/* أضف مسافة تعويض للمحتوى حتى لا يتراكب */
.pkp_structure_main{
  padding-top: 40px !important;
}
