/* =====================================================
   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;
}

/* Hero Image Effect */
.asj-hero img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 
    0 20px 60px rgba(0,0,0,0.45),
    0 0 40px rgba(0,180,255,0.12);
  transition: all 0.6s ease;
}

.asj-hero img:hover {
  transform: scale(1.02);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.55),
    0 0 60px rgba(255,180,60,0.18);
}
.asj-hero {
  position: relative;
  overflow: hidden;
}

.asj-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(0,180,255,0.12), transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(255,170,60,0.10), transparent 45%);
  animation: glowMove 12s infinite alternate ease-in-out;
  pointer-events: none;
}

@keyframes glowMove {
  from { opacity: 0.6; }
  to { opacity: 1; }
}

/* FIX MAKE SUBMISSION HALO */
.asj-make-submission img {
  box-shadow: none !important;
  filter: none !important;
  background: transparent !important;
}

/* حواف أنظف */
.asj-make-submission {
  padding: 12px;
  background: #0b1f3a; /* نفس لون الهوية */
  border-radius: 14px;
}
.asj-make-submission img {
  box-shadow: 0 6px 18px rgba(255, 190, 90, 0.15);
  filter: none;
}
.asj-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: linear-gradient(180deg, #0d2a4d, #081a30);
  color: #f5c46a;

  font-weight: 600;
  font-size: 16px;
  text-decoration: none;

  padding: 14px 18px;
  border-radius: 14px;

  border: 1px solid rgba(245,196,106,0.35);

  box-shadow: 0 8px 22px rgba(0,0,0,0.35);
  transition: all 0.3s ease;
}

.asj-submit-btn:hover {
  background: linear-gradient(180deg, #123b6b, #0b2442);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
}
/* ===== FIX HEADER / HERO BUTTONS ===== */

/* شكل عام للأزرار */
.hero-buttons a,
.pkp_page_content a.pkp_button,
.pkp_button,
.btn {
  display: inline-block;
  padding: 12px 26px;
  margin: 8px 10px 0 0;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none !important;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 5;
}

/* زر أساسي */
.hero-buttons a.primary,
.pkp_button_primary {
  background: linear-gradient(135deg, #f5c76a, #d4a017);
  color: #0b1d33 !important;
  border: none;
}

/* زر ثانوي */
.hero-buttons a.secondary,
.pkp_button:not(.pkp_button_primary) {
  background: transparent;
  color: #ffffff !important;
  border: 2px solid #f5c76a;
}

/* Hover */
.hero-buttons a:hover,
.pkp_button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

/* تأكيد الظهور فوق الهيرو */
.cps-hero,
.site-header {
  position: relative;
  z-index: 2;
}
/* ===== FIX HEADER / HERO BUTTONS ===== */

/* شكل عام للأزرار */
.hero-buttons a,
.pkp_page_content a.pkp_button,
.pkp_button,
.btn {
  display: inline-block;
  padding: 12px 26px;
  margin: 8px 10px 0 0;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none !important;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 5;
}

/* ===== FIX HEADER / HERO BUTTONS ===== */

/* شكل عام للأزرار */
.hero-buttons a,
.pkp_page_content a.pkp_button,
.pkp_button,
.btn {
  display: inline-block;
  padding: 12px 26px;
  margin: 8px 10px 0 0;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none !important;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 5;
}
<footer class="asj-footer">
  <div class="asj-footer-inner">

    <!-- Column 1 -->
    <div class="asj-footer-col">
      <h4>Academic Science Journal (ASJ)</h4>
      <p>
        An international, peer-reviewed, open-access journal published by
        the College of Science – University of Diyala.
      </p>
    </div>

    <!-- Column 2 -->
    <div class="asj-footer-col">
      <h4>Quick Links</h4>
      <ul>
        <li><a href="/index.php/asj/about">About Journal</a></li>
        <li><a href="/index.php/asj/about/submissions">Make Submission</a></li>
        <li><a href="/index.php/asj//* ===== KEYWORDS BLOCK (OJS SAFE) ===== */

.asjKeywords{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.asjKeywords span{
  padding:7px 14px;
  font-size:0.82rem;
  color:#ffffff;

  background:rgba(255,255,255,0.18);
  border:1px solid rgba(255,255,255,0.35);
  border-radius:20px;

  backdrop-filter: blur(10px);
  transition:all .3s ease;
}

.asjKeywords span:hover{
  background:linear-gradient(
    135deg,
    rgba(255,215,100,.5),
    rgba(255,255,255,.25)
  );
  color:#071c34;
  transform:translateY(-2px);
  box-shadow:0 6px 18px rgba(0,0,0,.4);
}
/current">Current Issue</a></li>
        <li><a href="/index.php/asj/issue/archive">Archives</a></li>
      </ul>
    </div>

    <!-- Column 3 -->
    <div class="asj-footer-col">
      <h4>Policies</h4>
      <ul>
        <li><a href="#">Publication Ethics</a></li>
        <li><a href="#">Peer Review Policy</a></li>
        <li><a href="#">Plagiarism Policy</a></li>
        <li><a href="#">Open Access Policy</a></li>
      </ul>
    </div>

    <!-- Column 4 -->
    <div class="asj-footer-col">
      <h4>Journal Info</h4>
      <p>
        ISSN: 2958-4612<br>
        E-ISSN: 2959-5568<br>
        Frequency: Quarterly
      </p>
    </div>

  </div>

  <div class="asj-footer-bottom">
    © 2025 Academic Science Journal – University of Diyala  
  </div>
</footer>

<style>
.asj-footer{
  background: linear-gradient(135deg,#06192f,#0b2f55);
  color:#dbe7f3;
  padding:70px 0 0;
  font-family: "Segoe UI", Arial, sans-serif;
}

.asj-footer-inner{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:40px;
  padding:0 30px;
}

.asj-footer h4{
  color:#f5c84c;
  margin-bottom:15px;
  font-size:17px;
}

.asj-footer p{
  font-size:14px;
  line-height:1.7;
}

.asj-footer ul{
  list-style:none;
  padding:0;
  margin:0;
}

.asj-footer ul li{
  margin-bottom:10px;
}

.asj-footer ul li a{
  color:#cfd9e4;
  text-decoration:none;
  transition:0.3s;
}

.asj-footer ul li a:hover{
  color:#f5c84c;
}

.asj-footer-bottom{
  margin-top:50px;
  padding:18px;
  text-align:center;
  background:#041427;
  font-size:13px;
  color:#9fb2c8;
}
</style>
<style>
/* =========================
   GLOBAL FUTURISTIC FOOTER
   ASJ – Academic Science Journal
========================= */

.asj-footer {
  background: radial-gradient(circle at top, #0b1f36 0%, #071424 60%, #040b14 100%);
  color: #d7e3f4;
  padding: 70px 0 0;
  font-family: "Segoe UI", Tahoma, sans-serif;
}

.asj-footer a {
  color: #c9d9ff;
  text-decoration: none;
  transition: 0.3s;
}

.asj-footer a:hover {
  color: #f5c84c;
}

.asj-footer .container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

.asj-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
}

.asj-footer h3 {
  color: #f5c84c;
  font-size: 18px;
  margin-bottom: 18px;
  position: relative;
}

.asj-footer h3::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #f5c84c;
  display: block;
  margin-top: 8px;
}

.asj-footer p,
.asj-footer li {
  font-size: 14px;
  line-height: 1.8;
}

.asj-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.asj-footer li {
  margin-bottom: 8px;
}

/* Journal Card */
.asj-footer-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 22px;
  backdrop-filter: blur(6px);
}

.asj-footer-badges span {
  display: inline-block;
  background: rgba(245,200,76,0.15);
  color: #f5c84c;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  margin: 4px 4px 0 0;
}

/* Footer Bottom */
.asj-footer-bottom {
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 25px 0;
  text-align: center;
  font-size: 13px;
  color: #9fb4d9;
}
/* =====================================================
   ASJ MEGA FOOTER – UNIVERSITY EDITION
===================================================== */

.asjMegaFooter {
  width: 100%;
  background: linear-gradient(180deg, #0c223a, #020a14);
  color: #e0e8f4;
  font-family: "Inter", sans-serif;
  margin-top: 40px;
}

/* Top Section */
.asjMegaFooter__top {
  max-width: 1500px;
  margin: auto;
  padding: 70px 40px;
  display: grid;
  grid-template-columns: 2.3fr 1fr 1fr 1fr;
  gap: 45px;
}

/* Headings */
.asjMegaFooter__col h2,
.asjMegaFooter__col h3 {
  color: #ffffff;
  margin-bottom: 14px;
}

.asjMegaFooter__col h2 {
  font-size: 1.7rem;
  font-weight: 600;
}

.asjMegaFooter__col h3 {
  font-size: 1.1rem;
  border-left: 4px solid #2ea3ff;
  padding-left: 10px;
}

/* Paragraphs */
.asjMegaFooter__col p {
  font-size: 0.95rem;
  margin-bottom: 12px;
  line-height: 1.75;
}

/* Lists */
.asjMegaFooter__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.asjMegaFooter__col ul li {
  margin-bottom: 10px;
}

.asjMegaFooter__col ul li a {
  color: #b8d4ff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.asjMegaFooter__col ul li a:hover {
  color: #2ea3ff;
  padding-left: 5px;
}

/* Logos */
.asjMegaFooter__logos {
  display: flex;
  gap: 14px;
  margin: 15px 0;
}

.asjMegaFooter__logos img {
  max-height: 70px;
  background: #ffffff;
  padding: 5px;
  border-radius: 5px;
}

/* License */
.asjMegaFooter__license {
  font-size: 0.88rem;
  margin-top: 10px;
}

/* Contact */
.asjMegaFooter__contact {
  font-size: 0.9rem;
  margin-top: 12px;
}

/* Bottom Bar */
.asjMegaFooter__bottom {
  text-align: center;
  background: #010912;
  padding: 18px;
  font-size: 0.85rem;
  color: #9dbadf;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* Responsive */
@media (max-width: 1100px) {
  .asjMegaFooter__top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 650px) {
  .asjMegaFooter__top {
    grid-template-columns: 1fr;
    padding: 50px 25px;
  }
}
/* ==============================
   FIX ASJ MEGA FOOTER – FINAL
============================== */

/* اجعل الفوتر بعرض الشاشة الكامل */
.asjMegaFooter {
  width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  padding: 0;
}

/* توسيع المحتوى الداخلي */
.asjMegaFooter__top {
  max-width: 1700px !important;
  margin: auto;
  padding: 90px 80px !important;
  align-items: flex-start;
}

/* تحسين النص التعريفي */
.asjMegaFooter__about p {
  font-size: 1rem;
  line-height: 1.9;
  color: #e6eef9;
}

/* حذف أي نص مكسور أو مرجع */
.asjMegaFooter__about p span,
.asjMegaFooter__about p a {
  display: none !important;
}

/* تباعد الأعمدة */
.asjMegaFooter__col {
  padding-right: 20px;
}

/* تحسين القوائم */
.asjMegaFooter__col ul li {
  margin-bottom: 12px;
}

/* تحسين الشعارات */
.asjMegaFooter__logos,
.asjMegaFooter__license {
  display: flex;
  gap: 24px;
  margin-top: 25px;
  align-items: center;
}

.asjMegaFooter__logos img,
.asjMegaFooter__license img {
  background: #fff;
  padding: 8px;
  border-radius: 6px;
  max-height: 75px;
}

/* شريط الحقوق السفلي */
.asjMegaFooter__bottom {
  font-size: 0.9rem;
  padding: 22px;
  background: #01070f;
  letter-spacing: 0.3px;
}
/* ===============================
   ASJ FOOTER – FINAL CLEAN FIX
=============================== */

/* تثبيت العرض العملاق */
.asjMegaFooter {
  width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
}

/* ضبط الشبكة */
.asjMegaFooter__top {
  max-width: 1700px !important;
  padding: 90px 90px !important;
  margin: auto;
}

/* تحسين النص */
.asjMegaFooter__about p {
  font-size: 1rem;
  line-height: 1.9;
  color: #e8f0fb;
}

/* تأكيد إزالة أي بقايا غريبة */
.asjMegaFooter__about *:contains("contentReference") {
  display: none !important;
}

/* توازن الأعمدة */
.asjMegaFooter__col {
  padding-right: 30px;
}

/* القوائم */
.asjMegaFooter__col ul li {
  margin-bottom: 13px;
}

/* الشعارات */
.asjMegaFooter__logos,
.asjMegaFooter__license {
  display: flex;
  gap: 26px;
  margin-top: 28px;
  align-items: center;
}

.asjMegaFooter__logos img,
.asjMegaFooter__license img {
  background: #ffffff;
  padding: 10px;
  border-radius: 8px;
  max-height: 80px;
}

/* الشريط السفلي */
.asjMegaFooter__bottom {
  background: #02070f;
  padding: 24px;
  font-size: 0.9rem;
  color: #a9c2e6;
  border-top: 1px solid rgba(255,255,255,0.08);
}
<div class="asjGlassLogo">
  <img src="https://upload.wikimedia.org/wikipedia/commons/3/3a/OJS_logo.png" alt="Open Journal Systems">
  <span>Powered by Open Journal Systems</span>
</div>
/* =====================================
   SCIENTIFIC LINES + MOTION
===================================== */

.asjMegaFooter {
  position: relative;
  overflow: hidden;
}

/* شبكة خطوط */
.asjMegaFooter::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      rgba(255,255,255,0.05) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,0.05) 1px,
      transparent 1px
    );
  background-size: 60px 60px;
  opacity: 0.25;
  z-index: 0;
}

/* حركة بطيئة */
.asjMegaFooter::after {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(
    circle,
    rgba(46,163,255,0.08),
    transparent 60%
  );
  animation: asjFloat 20s linear infinite;
  z-index: 0;
}

@keyframes asjFloat {
  0% { transform: translate(0,0); }
  50% { transform: translate(120px, -80px); }
  100% { transform: translate(0,0); }
}

/* رفع المحتوى فوق المؤثرات */
.asjMegaFooter__top,
.asjMegaFooter__bottom {
  position: relative;
  z-index: 2;
}
/* =====================================
   ASJ FOOTER – GLASS CARDS COLUMNS
===================================== */

/* كل عمود = Glass Card */
.asjMegaFooter__col {
  position: relative;
  padding: 34px 30px;
  border-radius: 22px;

  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border: 1px solid rgba(255, 255, 255, 0.22);

  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.45),
    inset 0 0 20px rgba(255, 255, 255, 0.08);

  transition: all 0.45s ease;
}

/* حركة Hover */
.asjMegaFooter__col:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow:
    0 22px 55px rgba(0, 0, 0, 0.6),
    inset 0 0 30px rgba(255, 255, 255, 0.14);
}

/* العناوين داخل الكارد */
.asjMegaFooter__col h2,
.asjMegaFooter__col h3 {
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* النص */
.asjMegaFooter__col p,
.asjMegaFooter__col span,
.asjMegaFooter__col li {
  text-shadow: 0 1px 6px rgba(0,0,0,0.45);
}

/* القوائم */
.asjMegaFooter__col ul li a {
  position: relative;
  padding-left: 0;
}

/* تأثير خط عند المرور */
.asjMegaFooter__col ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2ea3ff, #7fd1ff);
  transition: width 0.35s ease;
}

.asjMegaFooter__col ul li a:hover::after {
  width: 100%;
}
/* العمود الأول (تعريف المجلة) */
.asjMegaFooter__about {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.30);
}
/* الشعارات داخل الكروت */
.asjMegaFooter__logos img,
.asjMegaFooter__license img {
  background: rgba(255,255,255,0.9);
  padding: 10px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.asjMegaFooter__logos img:hover,
.asjMegaFooter__license img:hover {
  transform: scale(1.06);
}
.asjMegaFooter__col {
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.14),
    rgba(255,255,255,0.06)
  );
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
/* حركة احترافية غير مزعجة */
.asjMegaFooter__col {
  transition: 
    transform 0.35s cubic-bezier(.4,.0,.2,1),
    box-shadow 0.35s ease;
}

.asjMegaFooter__col:hover {
  transform: translateY(-8px);
}
.asjMegaFooter__col:hover {
  box-shadow:
    0 25px 60px rgba(0,0,0,0.55),
    0 0 40px rgba(46,163,255,0.12);
}
/* ===============================
   ASJ Back To Top Button
=============================== */

#asjBackToTop{
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);

  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  color: #ffffff;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.45),
    inset 0 0 20px rgba(255,255,255,0.15);

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);

  transition: all 0.35s ease;
  z-index: 9999;
}

/* عند الظهور */
#asjBackToTop.show{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hover */
#asjBackToTop:hover{
  background: rgba(46,163,255,0.35);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.6),
    0 0 25px rgba(46,163,255,0.45);
  transform: translateY(-4px) scale(1.05);
}

/* موبايل */
@media (max-width:600px){
  #asjBackToTop{
    bottom: 18px;
    right: 18px;
    width: 46px;
    height: 46px;
    font-size: 20px;
  }
}
#asjBackToTop{
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all .35s ease;
  z-index: 9999;
}

#asjBackToTop.show{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#asjBackToTop:hover{
  background: rgba(46,163,255,0.35);
  transform: translateY(-4px) scale(1.05);
}
/* ===== OJS LOGO HIGHLIGHT ===== */
.asjOJSLogo{
  display:block;
  margin:20px auto 10px;
  max-width:140px;
  background:#ffffff;
  padding:14px;
  border-radius:16px;
  box-shadow:
    0 12px 30px rgba(0,0,0,.45),
    0 0 25px rgba(255,215,0,.25);
  transition:all .35s ease;
}

.asjOJSLogo:hover{
  transform:scale(1.08);
  box-shadow:
    0 20px 45px rgba(0,0,0,.6),
    0 0 35px rgba(255,215,0,.45);
}
/* ===== GOLD SEPARATOR BAR ===== */
.asjMegaFooter__bottom{
  position:relative;
  margin-top:40px;
}

.asjMegaFooter__bottom::before{
  content:"";
  position:absolute;
  top:-14px;
  left:50%;
  transform:translateX(-50%);
  width:85%;
  height:3px;
  background:linear-gradient(
    90deg,
    transparent,
    #cfa93f,
    #ffd86b,
    #cfa93f,
    transparent
  );
  box-shadow:0 0 18px rgba(255,215,100,.6);
  border-radius:3px;
}
/* ===== GOLD BAR ABOVE FOOTER BLOCKS ===== */
.asjMegaFooter__top{
  position: relative;
  padding-top: 60px; /* مسافة تحت الشريط */
}

.asjMegaFooter__top::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:88%;
  height:4px;

  background:linear-gradient(
    90deg,
    transparent,
    #cfa93f,
    #ffd86b,
    #cfa93f,
    transparent
  );

  box-shadow:
    0 0 18px rgba(255,215,100,.6),
    0 0 35px rgba(255,215,100,.35);

  border-radius:4px;
}
/* ===== HERO IMAGE BOTTOM FADE EFFECT ===== */

.hero-image,
.hero,
.hero-banner,
.pkp_page_content img:first-of-type {
  position: relative;
  display: block;
}

/* مؤثر التدرج السفلي */
.hero-image::after,
.hero::after,
.hero-banner::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0) 0%,
    #ffffff 90%
  );
  pointer-events: none;
  z-index: 2;
}
/* ================= ASJ VARIABLES ================= */
:root {
  --asj-navy: #0b1f3a;
  --asj-blue: #133a63;
  --asj-gold: #d4af37;
  --asj-light: #f5f7fa;
  --asj-text: #2b2b2b;
}

/* ================= NEWS BAR ================= */
#asj-news-bar {
  background: linear-gradient(90deg, var(--asj-gold), #f1d36a);
  overflow: hidden;
  height: 44px;
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #1a1a1a;
}

.asj-news-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: asj-scroll 25s linear infinite;
  padding-left: 100%;
}

@keyframes asj-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* ================= HERO ================= */
.asj-top-card {
  background: var(--asj-light);
}

.asj-hero-card {
  position: relative;
  height: 420px;
  background:
    url("https://images.unsplash.com/photo-1581090700227-1e37b190418e")
    center/cover no-repeat;
}

.asj-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11,31,58,.88),
    rgba(11,31,58,.75)
  );
}

.asj-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 90px 20px;
  color: #fff;
  text-align: center;
}

.asj-hero-content h1 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: .5px;
  margin-bottom: 18px;
}

.asj-hero-content p {
  font-size: 18px;
  line-height: 1.7;
  opacity: .95;
  margin-bottom: 32px;
}

/* ================= BUTTONS ================= */
.asj-hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.asj-btn {
  padding: 13px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s ease;
}

.asj-primary {
  background: var(--asj-gold);
  color: #111;
}

.asj-primary:hover {
  background: #c59c2b;
}

.asj-secondary {
  border: 2px solid #fff;
  color: #fff;
}

.asj-secondary:hover {
  background: #fff;
  color: var(--asj-navy);
}

/* ================= INTRO TEXT ================= */
.asj-intro {
  max-width: 980px;
  margin: 60px auto;
  padding: 0 20px;
  color: var(--asj-text);
  font-size: 16px;
  line-height: 1.85;
}

.asj-intro p {
  margin-bottom: 22px;
}
/* ================= ASJ COLOR SYSTEM ================= */
:root{
  --asj-navy:#0b1f3a;
  --asj-blue:#133a63;
  --asj-gold:#d4af37;
  --asj-light:#f5f7fa;
}

/* ================= NEWS BAR ================= */
#asj-news-bar{
  background:linear-gradient(90deg,var(--asj-gold),#f1d36a);
  height:44px;
  overflow:hidden;
  display:flex;
  align-items:center;
  font-weight:600;
}

.asj-news-track{
  display:flex;
  gap:60px;
  white-space:nowrap;
  animation:asj-scroll 26s linear infinite;
  padding-left:100%;
}

@keyframes asj-scroll{
  from{transform:translateX(0)}
  to{transform:translateX(-100%)}
}

/* ================= HOME HERO ================= */
.asj-home-hero{
  position:relative;
  height:480px;
  background:
    url("https://images.unsplash.com/photo-1581090700227-1e37b190418e")
    center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
}

.asj-home-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(11,31,58,.9),
    rgba(11,31,58,.75)
  );
}

/* ================= HERO CARD ================= */
.asj-home-card{
  position:relative;
  z-index:2;
  background:rgba(255,255,255,.06);
  backdrop-filter:blur(6px);
  border:1px solid rgba(255,255,255,.18);
  border-radius:14px;
  padding:50px 60px;
  max-width:860px;
  text-align:center;
  color:#fff;
  box-shadow:0 20px 50px rgba(0,0,0,.35);
}

.asj-home-card h1{
  font-size:42px;
  font-weight:800;
  margin-bottom:18px;
}

.asj-home-card p{
  font-size:18px;
  line-height:1.7;
  opacity:.95;
  margin-bottom:32px;
}

/* ================= BUTTONS ================= */
.asj-home-actions{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}

.asj-btn{
  padding:13px 30px;
  font-weight:600;
  border-radius:6px;
  text-decoration:none;
  transition:.3s ease;
}

.asj-primary{
  background:var(--asj-gold);
  color:#111;
}

.asj-primary:hover{
  background:#c59c2b;
}

.asj-outline{
  border:2px solid #fff;
  color:#fff;
}

.asj-outline:hover{
  background:#fff;
  color:var(--asj-navy);
}
/* ================= JACS OVERVIEW ================= */
.jacs-overview{
  margin:80px auto;
  max-width:1200px;
  padding:0 20px;
  text-align:center;
}

.jacs-overview h2{
  font-size:34px;
  font-weight:800;
  color:#0b1f3a;
  margin-bottom:10px;
}

.jacs-overview-sub{
  font-size:17px;
  color:#555;
  margin-bottom:50px;
}

/* ================= GRID ================= */
.jacs-overview-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:28px;
}

/* ================= CARD ================= */
.jacs-card{
  background:linear-gradient(
    180deg,
    rgba(11,31,58,.95),
    rgba(11,31,58,.85)
  );
  border-radius:18px;
  padding:40px 30px;
  color:#fff;
  text-align:left;
  box-shadow:0 20px 40px rgba(0,0,0,.25);
  position:relative;
  transition:.3s ease;
}

.jacs-card:hover{
  transform:translateY(-6px);
}

/* ================= NUMBER ================= */
.jacs-number{
  font-size:42px;
  font-weight:800;
  color:#d4af37;
  display:block;
  margin-bottom:14px;
}

/* ================= TEXT ================= */
.jacs-card h3{
  font-size:20px;
  font-weight:700;
  margin-bottom:10px;
}

.jacs-card p{
  font-size:15px;
  line-height:1.6;
  opacity:.95;
}
/* =====================================================
   JACS | OVERVIEW SECTION (UNDER HERO)
   ===================================================== */

.jacs-overview{
  margin: -60px auto 80px; /* يدخل تحت الهيرو بشكل أنيق */
  max-width: 1200px;
  padding: 60px 40px;
  background: linear-gradient(
    180deg,
    #071c34 0%,
    #0b2b4f 100%
  );
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(0,0,0,.45);
  text-align: center;
  position: relative;
  z-index: 3;
}

/* عنوان القسم */
.jacs-overview h2{
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: .3px;
}

/* الوصف */
.jacs-overview-sub{
  font-size: 16px;
  color: rgba(255,255,255,.85);
  margin-bottom: 50px;
}

/* =====================================================
   GRID
   ===================================================== */
.jacs-overview-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 26px;
}

/* =====================================================
   CARD
   ===================================================== */
.jacs-card{
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: left;
  color: #ffffff;
  transition: all .35s ease;
  position: relative;
}

/* تأثير Hover */
.jacs-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  border-color: rgba(212,175,55,.45);
}

/* الرقم */
.jacs-number{
  font-size: 40px;
  font-weight: 800;
  color: #d4af37;
  display: block;
  margin-bottom: 14px;
}

/* العنوان */
.jacs-card h3{
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

/* النص */
.jacs-card p{
  font-size: 14.8px;
  line-height: 1.65;
  color: rgba(255,255,255,.9);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 768px){
  .jacs-overview{
    margin-top: -30px;
    padding: 40px 20px;
  }

  .jacs-overview h2{
    font-size: 28px;
  }
}
/* FORCE TEST VISIBILITY */
.jacs-overview{
  display:block !important;
  visibility:visible !important;
  opacity:1 !important;
  background:red !important;
}
.jacs-overview{
  margin: 60px auto 80px;
  max-width: 1200px;
  padding: 60px 40px;
  background: linear-gradient(
    180deg,
    #071c34 0%,
    #0b2b4f 100%
  );
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(0,0,0,.45);
  text-align: center;
  position: relative;
}
/* ================= REMOVE HERO FROM ABOUT PAGE ================= */
.page-about .cps-hero-global{
  display: none !important;
}
