/* =====================================================
   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 60s 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 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;
}


/* ===== 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%}
}



/* ===== 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 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;
}



/* ============ 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;
}

/* كل بلوك */
.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);
}
/* ===== FORCE HERO DESIGN ON ISSUE PAGE ===== */
.pkp_page_issue .page_header {

  background:
    linear-gradient(rgba(6,18,40,.9),rgba(6,18,40,.95)),
   background-image:url("YOUR-LOCAL-IMAGE.jpg");

  padding: 70px 40px;
  color: white;
  position: relative;
}

/* TITLE */
.pkp_page_issue .page_title {
  font-size: 42px;
  font-weight: 900;
  color: white;
  margin-bottom: 10px;
}

/* SUBTITLE */
.pkp_page_issue .page_header::after {
  content: "International Open Access Scientific Journal";
  display: block;
  color: #f4b400;
  font-weight: 700;
  margin-top: 5px;
}

/* DESCRIPTION */
.pkp_page_issue .page_description {
  color: #ddd;
  max-width: 700px;
  margin-top: 10px;
}

/* BUTTON STYLE */
.pkp_page_issue .page_header a {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 22px;
  border-radius: 6px;
  background: #f4b400;
  color: black;
  text-decoration: none;
  font-weight: 600;
}

/* REMOVE OLD STYLE */
.pkp_page_issue .page_header {
  border: none !important;
}

/* FIX SPACING */
.pkp_page_issue .page {
  margin-top: 0 !important;
}
/* ===== ISSUE SECTION UPGRADE ===== */
.obj_issue_toc {

  margin-top: -60px; /* رفع الكارد للأعلى */
  position: relative;
  z-index: 5;
}

/* الكارد الرئيسي */
.obj_issue_toc .issue_description {

  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 25px 60px rgba(0,0,0,.25);
  border: 1px solid rgba(0,0,0,.08);
  transition: 0.3s;
}

/* تأثير hover */
.obj_issue_toc .issue_description:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 80px rgba(0,0,0,.35);
}

/* صورة المجلة */
.obj_issue_toc img {
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,.3);
}/* ===== ARTICLES TITLE ===== */
.page_issue .page_title,
.page_issue h2 {

  font-size: 28px;
  font-weight: 800;
  position: relative;
  padding-left: 20px;
}

/* الخط الذهبي */
.page_issue h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 25px;
  background: linear-gradient(#d4af37, #ffd778);
  border-radius: 3px;
}/* ===== SIDEBAR PREMIUM ===== */
.pkp_structure_sidebar .pkp_block {

  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,.15);
  transition: 0.3s;
}

.pkp_structure_sidebar .pkp_block:hover {
  transform: translateY(-5px);
}

/* عنوان البلوكات */
.pkp_structure_sidebar .title {
  font-weight: 800;
  border-left: 4px solid #d4af37;
  padding-left: 10px;
}/* ===== SIDEBAR PREMIUM ===== */
.pkp_structure_sidebar .pkp_block {

  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,.15);
  transition: 0.3s;
}

.pkp_structure_sidebar .pkp_block:hover {
  transform: translateY(-5px);
}

/* عنوان البلوكات */
.pkp_structure_sidebar .title {
  font-weight: 800;
  border-left: 4px solid #d4af37;
  padding-left: 10px;
}
/* ===== SEPARATOR ===== */
.obj_issue_toc::before {
  content: "";
  display: block;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #f5f7fb);
}
/* REMOVE EMPTY SPACE */
.obj_issue_toc .issue_description {
  padding-top: 15px !important;
}
/* FLOATING CARD */
.obj_issue_toc {
  margin-top: -80px;
  position: relative;
  z-index: 10;
}

.obj_issue_toc .issue_description {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 30px 70px rgba(0,0,0,.25);
  border: 1px solid rgba(0,0,0,.08);
  transition: .3s;
}

.obj_issue_toc .issue_description:hover {
  transform: translateY(-6px);
}/* SMOOTH TRANSITION */
.obj_issue_toc::before {
  content: "";
  display: block;
  height: 100px;
  background: linear-gradient(to bottom, transparent, #f5f7fb);
}.page_issue .page_title {
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 20px;
  position: relative;
}

.page_issue .page_title::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 8px;
  width: 5px;
  height: 28px;
  background: linear-gradient(#d4af37, #ffd778);
  border-radius: 3px;
}.obj_issue_toc img {
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,.3);
}.ijas-stats{
  display:flex;
  justify-content:center;
  gap:40px;
  margin-top:-60px;
  position:relative;
  z-index:10;
}

.ijas-stat-box{
  background:#fff;
  padding:20px 30px;
  border-radius:14px;
  text-align:center;
  box-shadow:0 20px 50px rgba(0,0,0,.2);
  transition:.3s;
}

.ijas-stat-box:hover{
  transform:translateY(-6px);
}

.ijas-stat-box h3{
  color:#0b2a4a;
  font-size:26px;
  font-weight:900;
}

.ijas-stat-box p{
  color:#666;
}

/* تقليل المسافة تحت الهيرو */
.cps-hero-global{
  padding-bottom: 20px !important;
  margin-bottom: 0 !important;
}

.pkp_navigation_primary{
  position: relative;
  top: -1px;
  z-index: 999;
}

/* تقليل الفراغ العام */
.pkp_structure_page{
  margin-top: 0 !important;
  padding-top: 0 !important;
}
/* ===============================
   HEADER PRO (GLOBAL)
=============================== */
.ijas-header-pro{
  font-family:'Segoe UI',sans-serif;
}

/* TOP BAR */
.ijas-topbar{
  background:#d4af37;
  color:#000;
  font-size:13px;
  padding:6px 20px;
  text-align:center;
  font-weight:600;
}

/* MAIN HEADER */
.ijas-header-main{
  background:linear-gradient(135deg,#0b2a4a,#071a36);
  padding:18px 40px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* BRAND */
.ijas-brand{
  display:flex;
  align-items:center;
  gap:15px;
}

.ijas-logo{
  height:55px;
}

.ijas-brand h1{
  color:#fff;
  font-size:22px;
  margin:0;
}

.ijas-brand span{
  color:#ffd778;
  font-size:13px;
}

/* ACTIONS */
.ijas-actions{
  display:flex;
  align-items:center;
  gap:15px;
}

/* LOGIN */
.ijas-login{
  color:#fff;
  text-decoration:none;
  font-weight:600;
}

.ijas-login:hover{
  color:#ffd778;
}

/* SUBMIT BUTTON */
.ijas-submit{
  background:linear-gradient(135deg,#d4af37,#ffd778);
  color:#000;
  padding:8px 18px;
  border-radius:8px;
  font-weight:700;
  text-decoration:none;
}

.ijas-submit:hover{
  background:#fff;
}

/* SEARCH ICON */
.ijas-search{
  color:#ffd778;
  font-size:18px;
  cursor:pointer;
}.pkp_navigation_primary{
  background:#071a36;
  margin-top:-10px;
 box-shadow:0 12px 30px rgba(0,0,0,.18);
}

.pkp_navigation_primary a{
  color:#fff;
}




.ijas-logo{
  width:55px;
  height:auto;
  filter:drop-shadow(0 4px 12px rgba(0,0,0,.4));
}.cps-hero-global{
  background:
    linear-gradient(to bottom,
      rgba(5,25,45,0.95) 0%,
      rgba(5,25,45,0.85) 40%,
      rgba(5,25,45,1) 100%
    ),
    url("https://images.unsplash.com/photo-1581092918056-0c4c3acd3789") center 80% / cover;
}
.pkp_structure_head{
  background: transparent !important;
}

.pkp_navigation_primary{
  background: linear-gradient(
    to right,
    #061b34,
    #0b2c4a
  ) !important;
}.pkp_structure_head{
  margin-top: -118px !important;
}
/* وصف الهيدر */
.ijas-left p{
  font-size: 14px !important;
  line-height: 1.8;
  opacity: 0.9;
}

/* العنوان الفرعي */
.ijas-tag{
  font-size: 15px !important;
}

/* العنوان الرئيسي */
.ijas-left h1{
  font-size: 36px !important;
}/* Container */
.ijas-actions{
  margin-top: 20px;
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* زر ذهبي */
.btn-gold{
  background: linear-gradient(135deg,#ffd36a,#f5b942);
  color: #071f3a;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-gold:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}


}

/* =========================
   LOGO + TITLE INLINE
   ========================= */

.cps-hero-title-row{
  display:flex;
  align-items:center;
  gap:18px;
}

/* اللوكو */
.cps-logo{
  height:75px;
  width:auto;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,.5));
}

/* النص */
.cps-title-text h1{
  font-size:40px;
  font-weight:900;
  margin:0;
}

.cps-title-text h2{
  font-size:16px;
  color:#f4c430;
  margin-top:6px;
}


  



/* LIGHT BUTTON */
.btn-light {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

/* HOVER EFFECTS */
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(245,197,66,0.5);
}

.btn-light:hover {
    background: #fff;
    color: #000;
}

/* SECTION */





/* GRID */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 90%;
    margin: auto;
}

/* CARD */
.card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 30px;
    text-align: left;
    position: relative;

    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.4s;
    overflow: hidden;
}

/* GLOW EFFECT */
.card::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(244,196,48,0.3), transparent);
    top: -50%;
    left: -50%;
    opacity: 0;
    transition: 0.4s;
}

/* HOVER */
.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* ICON */
.icon {
    font-size: 28px;
    margin-bottom: 10px;
}

/* TEXT */
.card h3 {
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    color: #cbd7e5;
}

/* BUTTON */
.card a {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 15px;
    background: linear-gradient(45deg, #f5c542, #ffd86b);
    color: #000;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.card a:hover {
    background: #fff;
}

/* FOOTER MAIN */
.ijas-footer {
    background: linear-gradient(180deg, #081726, #050e17);
    color: #dbe7f3;
    padding-top: 60px;
    position: relative;
}

/* CONTAINER */
.footer-container {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}



/* UNDERLINE EFFECT */
.footer-col h3::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #f5c542;
    position: absolute;
    left: 0;
    bottom: -5px;
}

/* LINKS */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin: 8px 0;
}

.footer-col ul li a {
    text-decoration: none;
    color: #c7d6e6;
    transition: 0.3s;
}

/* HOVER EFFECT */
.footer-col ul li a:hover {
    color: #f5c542;
    padding-left: 6px;
}

/* TEXT */
.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

/* SOCIAL */
.social a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: #fff;
    transition: 0.3s;
}

.social a:hover {
    color: #f5c542;
    transform: scale(1.2);
}

/* BOTTOM BAR */
.footer-bottom {
    margin-top: 40px;
    text-align: center;
    padding: 15px;
    background: #02070d;
    font-size: 13px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* GLOW EFFECT */
.ijas-footer::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 200px;
    background: radial-gradient(circle, rgba(244,196,48,0.1), transparent);
    top: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}/* MAIN */
.ultimate-footer {
    background: linear-gradient(180deg, #071524, #02070d);
    color: #d6e3f1;
    padding: 60px 20px;
    position: relative;
}

/* GRID */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 40px;
    width: 90%;
    margin: auto;
}


/* BOX */
.footer-box h3 {
    color: #f5c542;
    margin-bottom: 15px;
}

.footer-box a {
    display: block;
    color: #cbd7e5;
    text-decoration: none;
    margin: 6px 0;
    transition: 0.3s;
}

.footer-box a:hover {
    color: #f5c542;
    transform: translateX(5px);
}

/* INDEXING */
.footer-indexing {
    text-align: center;
    margin-top: 40px;
}

.footer-indexing span {
    display: block;
    margin-bottom: 10px;
    color: #aaa;
}

.footer-indexing img {
    height: 35px;
    margin: 10px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s;
}

.footer-indexing img:hover {
    filter: none;
    opacity: 1;
    transform: scale(1.1);
}

/* NEWSLETTER */
.footer-newsletter {
    text-align: center;
    margin-top: 40px;
}

.footer-newsletter input {
    padding: 10px;
    width: 250px;
    border: none;
    border-radius: 5px;
}

.footer-newsletter button {
    padding: 10px 15px;
    margin-left: 10px;
    background: linear-gradient(45deg, #f5c542, #ffd86b);
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
}

/* GLOW */
.ultimate-footer::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 200px;
    background: radial-gradient(circle, rgba(244,196,48,0.1), transparent);
    top: 0;
}

/* BACK TO TOP */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #f5c542;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}/* FULL WIDTH */
.pro-footer {
    width: 100%;
    background: linear-gradient(180deg, #061321, #02070d);
    color: #dbe7f3;
    padding-top: 60px;
    position: relative;
    overflow: hidden;
}

/* GLOW */
.pro-footer::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 300px;
    background: radial-gradient(circle, rgba(244,196,48,0.15), transparent);
    top: -100px;
    left: -10%;
}

/* INNER */
.footer-inner {
    width: 95%;
    margin: auto;
}

/* TOP GRID */
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

/* LOGO */
.about img {
    width: 140px;
    margin-bottom: 15px;
}

/* TEXT */
.f-col h3 {
    color: #f5c542;
    margin-bottom: 15px;
}

.f-col a {
    display: block;
    color: #c7d6e6;
    text-decoration: none;
    margin: 8px 0;
    transition: 0.3s;
}

.f-col a:hover {
    color: #f5c542;
    transform: translateX(6px);
}

/* DIVIDER */
.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #f5c542, transparent);
    margin: 40px 0;
}

/* INDEXING */
.footer-index {
    text-align: center;
}

.footer-index span {
    color: #aaa;
    display: block;
    margin-bottom: 15px;
}

/* LOGOS */
.logos img {
    height: 40px;
    margin: 15px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.4s;
}

.logos img:hover {
    filter: none;
    opacity: 1;
    transform: scale(1.2);
}

/* NEWS */
.footer-news {
    text-align: center;
    margin-top: 40px;
}

.subscribe-box {
    margin-top: 10px;
}

.subscribe-box input {
    padding: 12px;
    width: 280px;
    border-radius: 6px;
    border: none;
}

.subscribe-box button {
    padding: 12px 20px;
    margin-left: 10px;
    background: linear-gradient(45deg, #f5c542, #ffd86b);
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* BOTTOM */
.footer-bottom {
    margin-top: 40px;
    text-align: center;
    padding: 20px;
    background: rgba(0,0,0,0.4);
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
/* FULL WIDTH */
.pro-footer {
    width: 100%;
    background: linear-gradient(180deg, #061321, #02070d);
    color: #dbe7f3;
    padding-top: 60px;
    position: relative;
    overflow: hidden;
}

/* GLOW */
.pro-footer::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 300px;
    background: radial-gradient(circle, rgba(244,196,48,0.15), transparent);
    top: -100px;
    left: -10%;
}

/* INNER */
.footer-inner {
    width: 95%;
    margin: auto;
}

/* TOP GRID */
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

/* LOGO */
.about img {
    width: 140px;
    margin-bottom: 15px;
}

/* TEXT */
.f-col h3 {
    color: #f5c542;
    margin-bottom: 15px;
}

.f-col a {
    display: block;
    color: #c7d6e6;
    text-decoration: none;
    margin: 8px 0;
    transition: 0.3s;
}

.f-col a:hover {
    color: #f5c542;
    transform: translateX(6px);
}

/* DIVIDER */
.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #f5c542, transparent);
    margin: 40px 0;
}

/* INDEXING */
.footer-index {
    text-align: center;
}

.footer-index span {
    color: #aaa;
    display: block;
    margin-bottom: 15px;
}

/* LOGOS */
.logos img {
    height: 40px;
    margin: 15px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.4s;
}

.logos img:hover {
    filter: none;
    opacity: 1;
    transform: scale(1.2);
}

/* NEWS */
.footer-news {
    text-align: center;
    margin-top: 40px;
}

.subscribe-box {
    margin-top: 10px;
}

.subscribe-box input {
    padding: 12px;
    width: 280px;
    border-radius: 6px;
    border: none;
}

.subscribe-box button {
    padding: 12px 20px;
    margin-left: 10px;
    background: linear-gradient(45deg, #f5c542, #ffd86b);
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* BOTTOM */
.footer-bottom {
    margin-top: 40px;
    text-align: center;
    padding: 20px;
    background: rgba(0,0,0,0.4);
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
/* MAIN */
.ultra-footer {
    width: 100%;
    background: radial-gradient(circle at top, #0a1f35, #02070d);
    color: #dce7f5;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

/* GRID BACKGROUND */
.ultra-footer::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
}

/* WRAPPER */
.footer-wrapper {
    width: 95%;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 50px;
    position: relative;
    z-index: 2;
}

/* LEFT */
.footer-left h2 {
    color: #f5c542;
    margin-bottom: 15px;
}

.footer-left p {
    max-width: 400px;
    line-height: 1.7;
}

/* WATERMARK */
.footer-watermark {
    font-size: 120px;
    opacity: 0.05;
    margin-top: 30px;
    font-weight: bold;
}

/* LICENSE */
.footer-license {
    margin-top: 20px;
    color: #aaa;
}

/* RIGHT */
.footer-cols {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
}

/* HEADINGS */
.col h3 {
    color: #f5c542;
    margin-bottom: 10px;
    position: relative;
}

/* GOLD LINE */
.col h3::after {
    content: "";
    width: 30px;
    height: 2px;
    background: #f5c542;
    display: block;
    margin-top: 5px;
}

/* LINKS */
.col a {
    display: block;
    color: #cbd7e5;
    margin: 6px 0;
    text-decoration: none;
    transition: 0.3s;
}

.col a:hover {
    color: #f5c542;
    transform: translateX(5px);
}

/* CONTACT CARD */
.card-contact {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

/* BOTTOM */
.footer-bottom {
    margin-top: 50px;
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
}

/* RESPONSIVE */
@media(max-width: 900px){
    .footer-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-cols {
        grid-template-columns: 1fr;
    }
}/* FULL WIDTH FIX 🔥 */
.ultra-footer {
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    background: radial-gradient(circle at top, #0a1f35, #02070d);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* GRID BACKGROUND */
.ultra-footer::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* WRAPPER */
.footer-wrapper {
    width: 95%;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* LEFT */
.footer-left h2 {
    color: #f5c542;
    font-size: 24px;
}

.footer-left p {
    max-width: 420px;
    line-height: 1.7;
    color: #cfd9e6;
}

/* WATERMARK */
.footer-watermark {
    font-size: 140px;
    opacity: 0.04;
    margin-top: 20px;
    font-weight: bold;
}

/* RIGHT */
.footer-cols {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

/* 🔥 GLASS EFFECT */
.col {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(14px);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s;
}

/* HOVER EFFECT */
.col:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* TITLES */
.col h3 {
    color: #f5c542;
    margin-bottom: 10px;
}

/* GOLD LINE */
.col h3::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #f5c542;
    display: block;
    margin-top: 5px;
}
/* =====================================================
   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 60s 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;}


.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;
}



/* 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
   ====================================================== */




/* ============ 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;
}





/* ============ 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;
}

/* =========================================
   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);
}
/* ===== FORCE HERO DESIGN ON ISSUE PAGE ===== */
.pkp_page_issue .page_header {

  background:
    linear-gradient(rgba(6,18,40,.9),rgba(6,18,40,.95)),
   background-image:url("YOUR-LOCAL-IMAGE.jpg");

  padding: 70px 40px;
  color: white;
  position: relative;
}

/* TITLE */
.pkp_page_issue .page_title {
  font-size: 42px;
  font-weight: 900;
  color: white;
  margin-bottom: 10px;
}

/* SUBTITLE */
.pkp_page_issue .page_header::after {
  content: "International Open Access Scientific Journal";
  display: block;
  color: #f4b400;
  font-weight: 700;
  margin-top: 5px;
}

/* DESCRIPTION */
.pkp_page_issue .page_description {
  color: #ddd;
  max-width: 700px;
  margin-top: 10px;
}

/* BUTTON STYLE */
.pkp_page_issue .page_header a {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 22px;
  border-radius: 6px;
  background: #f4b400;
  color: black;
  text-decoration: none;
  font-weight: 600;
}

/* REMOVE OLD STYLE */
.pkp_page_issue .page_header {
  border: none !important;
}

/* FIX SPACING */
.pkp_page_issue .page {
  margin-top: 0 !important;
}
/* ===== ISSUE SECTION UPGRADE ===== */
.obj_issue_toc {

  margin-top: -60px; /* رفع الكارد للأعلى */
  position: relative;
  z-index: 5;
}

/* الكارد الرئيسي */
.obj_issue_toc .issue_description {

  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 25px 60px rgba(0,0,0,.25);
  border: 1px solid rgba(0,0,0,.08);
  transition: 0.3s;
}

/* تأثير hover */
.obj_issue_toc .issue_description:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 80px rgba(0,0,0,.35);
}

/* صورة المجلة */
.obj_issue_toc img {
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,.3);
}/* ===== ARTICLES TITLE ===== */
.page_issue .page_title,
.page_issue h2 {

  font-size: 28px;
  font-weight: 800;
  position: relative;
  padding-left: 20px;
}

/* الخط الذهبي */
.page_issue h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 25px;
  background: linear-gradient(#d4af37, #ffd778);
  border-radius: 3px;
}/* ===== SIDEBAR PREMIUM ===== */
.pkp_structure_sidebar .pkp_block {

  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,.15);
  transition: 0.3s;
}

.pkp_structure_sidebar .pkp_block:hover {
  transform: translateY(-5px);
}

/* عنوان البلوكات */
.pkp_structure_sidebar .title {
  font-weight: 800;
  border-left: 4px solid #d4af37;
  padding-left: 10px;
}/* ===== SIDEBAR PREMIUM ===== */
.pkp_structure_sidebar .pkp_block {

  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,.15);
  transition: 0.3s;
}

.pkp_structure_sidebar .pkp_block:hover {
  transform: translateY(-5px);
}

/* عنوان البلوكات */
.pkp_structure_sidebar .title {
  font-weight: 800;
  border-left: 4px solid #d4af37;
  padding-left: 10px;
}
/* ===== SEPARATOR ===== */
.obj_issue_toc::before {
  content: "";
  display: block;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #f5f7fb);
}
/* REMOVE EMPTY SPACE */
.obj_issue_toc .issue_description {
  padding-top: 15px !important;
}
/* FLOATING CARD */
.obj_issue_toc {
  margin-top: -80px;
  position: relative;
  z-index: 10;
}

.obj_issue_toc .issue_description {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 30px 70px rgba(0,0,0,.25);
  border: 1px solid rgba(0,0,0,.08);
  transition: .3s;
}

.obj_issue_toc .issue_description:hover {
  transform: translateY(-6px);
}/* SMOOTH TRANSITION */
.obj_issue_toc::before {
  content: "";
  display: block;
  height: 100px;
  background: linear-gradient(to bottom, transparent, #f5f7fb);
}.page_issue .page_title {
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 20px;
  position: relative;
}

.page_issue .page_title::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 8px;
  width: 5px;
  height: 28px;
  background: linear-gradient(#d4af37, #ffd778);
  border-radius: 3px;
}.obj_issue_toc img {
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,.3);
}.ijas-stats{
  display:flex;
  justify-content:center;
  gap:40px;
  margin-top:-60px;
  position:relative;
  z-index:10;
}

.ijas-stat-box{
  background:#fff;
  padding:20px 30px;
  border-radius:14px;
  text-align:center;
  box-shadow:0 20px 50px rgba(0,0,0,.2);
  transition:.3s;
}

.ijas-stat-box:hover{
  transform:translateY(-6px);
}

.ijas-stat-box h3{
  color:#0b2a4a;
  font-size:26px;
  font-weight:900;
}

.ijas-stat-box p{
  color:#666;
}
.pkp_structure_sidebar .pkp_block:hover{
  transform:translateY(-5px);
}

.pkp_structure_sidebar .title{
  font-weight:900;
  border-left:4px solid #d4af37;
  padding-left:10px;
}/* FADE IN */
.fade-up{
  opacity:0;
  transform:translateY(40px);
  transition:.8s;
}

.fade-up.show{
  opacity:1;
  transform:translateY(0);
}.ijas-hero-pro{

  background:
    linear-gradient(135deg,#0b2a4a 0%,#071a36 100%);
}

/* النص */
.ijas-left h1{
  color:#ffffff;
}

.ijas-tag{
  color:#ffd778;
}.btn-main{
  background:linear-gradient(135deg,#d4af37,#ffd778);
  color:#000;
  font-weight:700;
  box-shadow:0 5px 20px rgba(212,175,55,.4);
}

.btn-main:hover{
  background:linear-gradient(135deg,#ffd778,#fff1b0);
}

/* زر outline */
.btn-outline{
  border:2px solid #ffd778;
  color:#ffd778;
}

.btn-outline:hover{
  background:#ffd778;
  color:#000;
}.ijas-hero-pro::after{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:3px;
  background:linear-gradient(90deg,#d4af37,#ffd778,#d4af37);
}
/* تقليل المسافة تحت الهيرو */
.cps-hero-global{
  padding-bottom: 20px !important;
  margin-bottom: 0 !important;
}

.pkp_navigation_primary{
  position: relative;
  top: -1px;
  z-index: 999;
}

/* تقليل الفراغ العام */
.pkp_structure_page{
  margin-top: 0 !important;
  padding-top: 0 !important;
}
/* ===============================
   HEADER PRO (GLOBAL)
=============================== */
.ijas-header-pro{
  font-family:'Segoe UI',sans-serif;
}

/* TOP BAR */
.ijas-topbar{
  background:#d4af37;
  color:#000;
  font-size:13px;
  padding:6px 20px;
  text-align:center;
  font-weight:600;
}

/* MAIN HEADER */
.ijas-header-main{
  background:linear-gradient(135deg,#0b2a4a,#071a36);
  padding:18px 40px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* BRAND */
.ijas-brand{
  display:flex;
  align-items:center;
  gap:15px;
}

.ijas-logo{
  height:55px;
}

.ijas-brand h1{
  color:#fff;
  font-size:22px;
  margin:0;
}

.ijas-brand span{
  color:#ffd778;
  font-size:13px;
}

/* ACTIONS */
.ijas-actions{
  display:flex;
  align-items:center;
  gap:15px;
}

/* LOGIN */
.ijas-login{
  color:#fff;
  text-decoration:none;
  font-weight:600;
}

.ijas-login:hover{
  color:#ffd778;
}

/* SUBMIT BUTTON */
.ijas-submit{
  background:linear-gradient(135deg,#d4af37,#ffd778);
  color:#000;
  padding:8px 18px;
  border-radius:8px;
  font-weight:700;
  text-decoration:none;
}

.ijas-submit:hover{
  background:#fff;
}

/* SEARCH ICON */
.ijas-search{
  color:#ffd778;
  font-size:18px;
  cursor:pointer;
}.pkp_navigation_primary{
  background:#071a36;
  margin-top:-10px;
 box-shadow:0 12px 30px rgba(0,0,0,.18);
}

.pkp_navigation_primary a{
  color:#fff;
}



.ijas-logo{
  width:55px;
  height:auto;
  filter:drop-shadow(0 4px 12px rgba(0,0,0,.4));
}.cps-hero-global{
  background:
    linear-gradient(to bottom,
      rgba(5,25,45,0.95) 0%,
      rgba(5,25,45,0.85) 40%,
      rgba(5,25,45,1) 100%
    ),
    url("https://images.unsplash.com/photo-1581092918056-0c4c3acd3789") center 80% / cover;
}
.pkp_structure_head{
  background: transparent !important;
}

.pkp_navigation_primary{
  background: linear-gradient(
    to right,
    #061b34,
    #0b2c4a
  ) !important;
}.pkp_structure_head{
  margin-top: -118px !important;
}
/* وصف الهيدر */
.ijas-left p{
  font-size: 14px !important;
  line-height: 1.8;
  opacity: 0.9;
}

/* العنوان الفرعي */
.ijas-tag{
  font-size: 15px !important;
}

/* العنوان الرئيسي */
.ijas-left h1{
  font-size: 36px !important;
}/* Container */
.ijas-actions{
  margin-top: 20px;
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* زر ذهبي */
.btn-gold{
  background: linear-gradient(135deg,#ffd36a,#f5b942);
  color: #071f3a;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-gold:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}


}

/* SECTION BACKGROUND */
.ijas-why {
  background: linear-gradient(135deg, #0b1e3c, #08152a);
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

/* TITLE */
.ijas-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ijas-subtitle {
  color: #cbd5e1;
  margin-bottom: 50px;
}

/* GRID */
.ijas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.ijas-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

/* GOLD LINE EFFECT */
.ijas-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, gold, transparent);
  transition: 0.5s;
}

.ijas-card:hover::before {
  left: 100%;
}

/* HOVER */
.ijas-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

/* ICON */
.ijas-card .icon {
  font-size: 30px;
  margin-bottom: 15px;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  background: gold;
  color: #000;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #ffd700;
}

/* HIGHLIGHT CARD */
.highlight {
  background: linear-gradient(135deg, gold, #d4af37);
  color: #000;
  font-weight: bold;
}
/* SECTION BACKGROUND */
.ijas-why {
  background: linear-gradient(135deg, #0b1e3c, #08152a);
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

/* TITLE */
.ijas-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ijas-subtitle {
  color: #cbd5e1;
  margin-bottom: 50px;
}

/* GRID */
.ijas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.ijas-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

/* GOLD LINE EFFECT */
.ijas-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, gold, transparent);
  transition: 0.5s;
}

.ijas-card:hover::before {
  left: 100%;
}

/* HOVER */
.ijas-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

/* ICON */
.ijas-card .icon {
  font-size: 30px;
  margin-bottom: 15px;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  background: gold;
  color: #000;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #ffd700;
}

/* ===============================
   IJAS FOOTER - GLASS STYLE PRO
=============================== */

/* الخلفية */
.pkp_structure_footer_wrapper{
  background: radial-gradient(circle at top,#0b1e3c,#02070d);
  padding:80px 0 40px;
  color:#eaf2ff;
  position:relative;
}

/* خط ذهبي */
.pkp_structure_footer_wrapper::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:3px;
  background:linear-gradient(90deg,#d4af37,#ffd778,#d4af37);
}

/* الكونتينر */
.pkp_structure_footer{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:30px;
  width:95%;
  max-width:1300px;
  margin:auto;
}

/* كل عمود يتحول Card */
.pkp_structure_footer .pkp_block{
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:18px;
  padding:25px;
  width:260px;
  transition:0.4s;
  box-shadow:0 10px 30px rgba(0,0,0,0.4);
}

/* Hover Effect */
.pkp_structure_footer .pkp_block:hover{
  transform:translateY(-10px) scale(1.03);
  box-shadow:0 20px 50px rgba(0,0,0,0.6);
}

/* العناوين */
.pkp_structure_footer h2,
.pkp_structure_footer h3{
  color:#ffd778;
  margin-bottom:15px;
  font-weight:700;
}

/* النص */
.pkp_structure_footer p{
  color:#cbd7e5;
  line-height:1.8;
  font-size:14px;
}

/* الروابط */
.pkp_structure_footer a{
  display:block;
  color:#cbd7e5;
  margin:6px 0;
  text-decoration:none;
  transition:0.3s;
}

.pkp_structure_footer a:hover{
  color:#ffd778;
  transform:translateX(6px);
}

/* INDEXING */
.pkp_structure_footer + div{
  text-align:center;
  margin-top:40px;
}

/* الحقوق */
.pkp_brand_footer{
  background:rgba(0,0,0,0.6);
  backdrop-filter:blur(10px);
  border-top:1px solid rgba(255,255,255,0.1);
  text-align:center;
  padding:18px;
  margin-top:40px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .pkp_structure_footer{
    flex-direction:column;
    align-items:center;
  }
}
/* ===============================
   IJAS SCOPUS FOOTER PRO
=============================== */

.pkp_structure_footer_wrapper{
  background: radial-gradient(circle at top,#0b1e3c,#02070d);
  padding:90px 0 50px;
  color:#eaf2ff;
  position:relative;
  overflow:hidden;
}

/* GOLD LINE ANIMATION */
.pkp_structure_footer_wrapper::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:3px;
  background:linear-gradient(90deg,#d4af37,#ffd778,#d4af37);
  background-size:200% auto;
  animation:goldMove 6s linear infinite;
}

@keyframes goldMove{
  0%{background-position:0%}
  100%{background-position:200%}
}

/* GRID CARDS */
.pkp_structure_footer{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:35px;
  width:95%;
  max-width:1300px;
  margin:auto;
}

/* CARD STYLE */
.pkp_structure_footer .pkp_block{
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:20px;
  padding:30px;
  width:260px;
  transition:0.4s;
  box-shadow:0 15px 40px rgba(0,0,0,0.5);
  position:relative;
}

/* GLOW EFFECT */
.pkp_structure_footer .pkp_block::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:20px;
  background:linear-gradient(120deg,transparent,rgba(255,215,120,0.2),transparent);
  opacity:0;
  transition:0.4s;
}

.pkp_structure_footer .pkp_block:hover::after{
  opacity:1;
}

/* HOVER */
.pkp_structure_footer .pkp_block:hover{
  transform:translateY(-12px) scale(1.04);
  box-shadow:0 25px 60px rgba(0,0,0,0.7);
}

/* TITLES */
.pkp_structure_footer h2,
.pkp_structure_footer h3{
  color:#ffd778;
  margin-bottom:15px;
  font-weight:700;
}

/* TEXT */
.pkp_structure_footer p{
  color:#cbd7e5;
  line-height:1.8;
  font-size:14px;
}

/* LINKS */
.pkp_structure_footer a{
  display:block;
  color:#cbd7e5;
  margin:6px 0;
  text-decoration:none;
  transition:0.3s;
}

.pkp_structure_footer a:hover{
  color:#ffd778;
  transform:translateX(6px);
}

/* SOCIAL ICONS */
.social-icons{
  margin-top:15px;
}

.social-icons a{
  display:inline-block;
  margin-right:10px;
  background:#d4af37;
  color:#000;
  padding:8px 10px;
  border-radius:50%;
  font-size:14px;
  transition:0.3s;
}

.social-icons a:hover{
  transform:scale(1.2);
}

/* INDEXING LOGOS */
.pkp_structure_footer + div{
  text-align:center;
  margin-top:50px;
}

.pkp_structure_footer + div img{
  height:40px;
  margin:10px;
  opacity:0.7;
  transition:0.3s;
}

.pkp_structure_footer + div img:hover{
  opacity:1;
  transform:scale(1.15);
}

/* FOOTER BOTTOM */
.pkp_brand_footer{
  background:rgba(0,0,0,0.6);
  backdrop-filter:blur(10px);
  border-top:1px solid rgba(255,255,255,0.1);
  text-align:center;
  padding:20px;
  margin-top:50px;
  font-size:14px;
}

/* PARTICLE EFFECT (خفيف جداً) */
.pkp_structure_footer_wrapper::after{
  content:"";
  position:absolute;
  width:200%;
  height:200%;
  top:-50%;
  left:-50%;
  background:radial-gradient(circle,rgba(255,255,255,0.05) 1px,transparent 1px);
  background-size:50px 50px;
  animation:moveBg 20s linear infinite;
}

@keyframes moveBg{
  from{transform:translate(0,0)}
  to{transform:translate(50px,50px)}
}

/* RESPONSIVE */
@media(max-width:900px){
  .pkp_structure_footer{
    flex-direction:column;
    align-items:center;
  }
}
.footer-wrapper::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245,197,66,0.12), transparent);
    top: -100px;
    right: -100px;
    z-index: 0;
}.footer-wrapper::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245,197,66,0.12), transparent);
    top: -100px;
    right: -100px;
    z-index: 0;
}
.footer-wrapper::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245,197,66,0.12), transparent);
    top: -100px;
    right: -100px;
    z-index: 0;
}.col:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 60px rgba(0,0,0,0.7);
}
.cc-logo {
    width: 90px;
    opacity: 0.85;
    filter: grayscale(20%);
    margin-top: 10px;
}
.cc-logo {
    width: 90px;
    opacity: 0.85;
    filter: grayscale(20%);
    margin-top: 10px;
}.footer-watermark {
    font-size: 160px;
    opacity: 0.025;
    letter-spacing: 8px;
}.footer-watermark {
    font-size: 160px;
    opacity: 0.025;
    letter-spacing: 8px;
}
.footer-wrapper::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245,197,66,0.12), transparent);
    top: -100px;
    right: -100px;
    z-index: 0;
}
/* GRID LAYER */
.cps-footer-elite::before{
  content:"";
  position:absolute;
  inset:0;

  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);

  background-size:36px 36px;
  opacity:.35;
  z-index:0;
}

/* GLOW LAYER (NEW 🔥) */
.cps-footer-elite::after{
  content:"";
  position:absolute;
  width:600px;
  height:600px;

  background: radial-gradient(circle, rgba(245,197,66,.12), transparent 70%);
  top:-120px;
  right:-120px;

  animation: glowMove 12s infinite linear;
  z-index:0;
}

@keyframes glowMove{
  0%{transform:translate(0,0);}
  50%{transform:translate(-120px,80px);}
  100%{transform:translate(0,0);}
}
.cps-footer-info-card{
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  padding: 22px 18px;
  margin-top: 10px;

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow:
    0 25px 60px rgba(0,0,0,.7),
    inset 0 0 0 1px rgba(255,255,255,.06);

  transition:.4s ease;
}

/* 🔥 Hover 3D */
.cps-footer-info-card:hover{
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 30px 80px rgba(0,0,0,.8),
    0 0 20px rgba(245,197,66,.2);
}
.cps-footer-info-card{
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  padding: 22px 18px;
  margin-top: 10px;

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow:
    0 25px 60px rgba(0,0,0,.7),
    inset 0 0 0 1px rgba(255,255,255,.06);

  transition:.4s ease;
}

/* 🔥 Hover 3D */
.cps-footer-info-card:hover{
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 30px 80px rgba(0,0,0,.8),
    0 0 20px rgba(245,197,66,.2);
}
.cps-footer-info-icons{
  display:flex;
  gap:16px;
  align-items:center;
  margin-top:14px;
}

.cps-footer-info-icons img{
  height:34px;
  opacity:.85;
  filter: grayscale(100%) brightness(.9);
  transition:.4s ease;
}

/* 🔥 Hover Effect */
.cps-footer-info-icons img:hover{
  filter:none;
  transform:translateY(-4px) scale(1.08);
}
.cps-footer-goldline{
  height:3px;
  background: linear-gradient(90deg, transparent, #f5c542, transparent);
  animation: goldMove 4s infinite linear;
}

@keyframes goldMove{
  0%{background-position:0%;}
  100%{background-position:200%;}
}/* SECTION BACKGROUND */
.why-ijas-section {
  position: relative;
  background: radial-gradient(circle at top, #0a1f35, #02070d);
  padding: 80px 0;
  overflow: hidden;
}

/* GLOW */
.why-ijas-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,197,66,.12), transparent);
  top: -100px;
  left: -100px;
  animation: moveGlow 10s infinite linear;
}

@keyframes moveGlow {
  0% {transform: translate(0,0);}
  50% {transform: translate(120px,80px);}
  100% {transform: translate(0,0);}
}/* CARD */
.why-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(18px);
  border-radius: 18px;
  padding: 25px;
  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 15px 40px rgba(0,0,0,0.5),
    inset 0 0 0 1px rgba(255,255,255,0.05);

  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* 🔥 TOP LIGHT EFFECT */
.why-card::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.1), transparent);
  top: 0;
  left: -120%;
  transition: 0.6s;
}

/* HOVER */
.why-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow:
    0 25px 70px rgba(0,0,0,0.7),
    0 0 20px rgba(245,197,66,.2);
}

/* LIGHT SWEEP */
.why-card:hover::before {
  left: 100%;
}/* CARD */
.why-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(18px);
  border-radius: 18px;
  padding: 25px;
  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 15px 40px rgba(0,0,0,0.5),
    inset 0 0 0 1px rgba(255,255,255,0.05);

  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* 🔥 TOP LIGHT EFFECT */
.why-card::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.1), transparent);
  top: 0;
  left: -120%;
  transition: 0.6s;
}

/* HOVER */
.why-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow:
    0 25px 70px rgba(0,0,0,0.7),
    0 0 20px rgba(245,197,66,.2);
}

/* LIGHT SWEEP */
.why-card:hover::before {
  left: 100%;
}
.why-card img {
  width: 38px;
  margin-bottom: 10px;
  transition: 0.3s;
}

.why-card:hover img {
  transform: scale(1.1) rotate(3deg);
}
.why-card h3 {
  color: #f5c542;
  text-shadow: 0 0 8px rgba(245,197,66,0.3);
}

.why-card h3::after {
  content: "";
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg,#f5c542,transparent);
  display: block;
  margin-top: 6px;
}
.why-card button {
  background: #f5c542;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  transition: 0.3s;
}

.why-card button:hover {
  background: #ffd86a;
  transform: translateY(-2px);
}
.why-ijas-section::after {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);

  background-size: 32px 32px;
  opacity: .3;
}
/* ===== GRID (3 أعمدة ثابتة) ===== */
.ijas-cards-grid {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:25px;
  max-width:1200px;
  margin:auto;
}

/* ===== CARD BASE ===== */
.ijas-card {
  border-radius: 18px;
  padding: 25px;
  color:#fff;
  position: relative;
  overflow:hidden;

  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);

  box-shadow: 0 15px 40px rgba(0,0,0,.5);
  transition: 0.4s;
}

/* ===== COLORS ===== */
.blue {
  background: linear-gradient(135deg,#0f2027,#203a43,#2c5364);
}

.green {
  background: linear-gradient(135deg,#134e5e,#71b280);
}

.purple {
  background: linear-gradient(135deg,#41295a,#2F0743);
}

.orange {
  background: linear-gradient(135deg,#ff8008,#ffc837);
  color:#000;
}

.red {
  background: linear-gradient(135deg,#cb2d3e,#ef473a);
}

.gold {
  background: linear-gradient(135deg,#c9a227,#f5c542,#ffd86a);
  color:#000;
}

/* ===== HOVER EFFECT ===== */
.ijas-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow:
    0 30px 80px rgba(0,0,0,.7),
    0 0 25px rgba(255,215,0,.3);
}

/* ===== ICON ===== */
.ijas-card .icon {
  font-size:28px;
  margin-bottom:10px;
}

/* ===== BUTTON ===== */
.ijas-card button {
  background:#fff;
  color:#000;
  border:none;
  padding:10px 18px;
  border-radius:6px;
  cursor:pointer;
  transition:.3s;
}

.ijas-card button:hover {
  transform:scale(1.1);
}

/* ===== SPECIAL CARD ===== */
.highlight {
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  font-size:22px;
  font-weight:bold;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
  .ijas-cards-grid{
    grid-template-columns: 1fr;
  }
}
/* GRID */
.ijas-cards-grid {
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:25px;
  max-width:1200px;
  margin:auto;
}

/* CARD */
.ijas-card {
  background: rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:14px;
  padding:25px;
  text-align:left;
  backdrop-filter: blur(10px);
  transition:0.3s;
}

/* HOVER */
.ijas-card:hover {
  transform: translateY(-6px);
  border-color:#c9a227;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* TEXT */
.ijas-card h3 {
  color:#ffffff;
  margin-bottom:10px;
}

.ijas-card p {
  color:#aab3bb;
  margin-bottom:15px;
}

/* BUTTON (احترافي جداً) */
.btn {
  display:inline-block;
  padding:10px 18px;
  border-radius:6px;
  text-decoration:none;
  font-size:14px;

  background: linear-gradient(135deg,#c9a227,#f5c542);
  color:#000;

  transition:0.3s;
}

/* BUTTON HOVER */
.btn:hover {
  background: linear-gradient(135deg,#f5c542,#ffd86a);
  transform: translateY(-2px);
}

/* SPECIAL CARD */
.highlight {
  display:flex;
  flex-direction:column;
  justify-content:center;
}

/* RESPONSIVE */
@media(max-width:900px){
  .ijas-cards-grid{
    grid-template-columns:1fr;
  }
}
/* ===== CONTAINER ===== */
.ijas-metrics {
  background: linear-gradient(180deg,#0a1a2a,#02060b);
  padding:40px 30px;
  border-radius:16px;
  max-width:900px;
  margin:40px auto;

  box-shadow:0 20px 60px rgba(0,0,0,0.5);
}

/* TITLE */
.metrics-title {
  color:#f5c542;
  margin-bottom:25px;
  text-align:center;
}

/* ===== METRIC ROW ===== */
.metric {
  margin-bottom:18px;
  position:relative;
}

/* TEXT */
.metric span {
  color:#cfd8dc;
  font-size:14px;
}

.metric .value {
  float:right;
  font-weight:bold;
}

/* BAR */
.bar {
  height:8px;
  background:rgba(255,255,255,0.08);
  border-radius:6px;
  margin-top:6px;
  overflow:hidden;
}

/* FILL */
.fill {
  height:100%;
  background: linear-gradient(90deg,#3fa9f5,#1c75bc);
  width:0;
  border-radius:6px;

  animation: fillAnim 2s ease forwards;
}

/* GOLD FILL */
.gold-fill {
  background: linear-gradient(90deg,#c9a227,#f5c542);
}

/* VALUE GOLD */
.gold {
  color:#f5c542;
}

/* ANIMATION */
@keyframes fillAnim {
  from { width:0 }
}
/* CONTAINER */
.ijas-metrics {
  background: linear-gradient(180deg,#081826,#02060b);
  padding:40px;
  border-radius:16px;
  max-width:900px;
  margin:40px auto;
  box-shadow:0 20px 60px rgba(0,0,0,0.6);
}

/* TITLE */
.metrics-title {
  color:#f5c542;
  text-align:center;
  margin-bottom:30px;
}

/* METRIC */
.metric {
  margin-bottom:20px;
}

/* TEXT */
.metric span {
  color:#cfd8dc;
}

.metric .value {
  float:right;
  font-weight:bold;
}

/* BAR */
.bar {
  height:10px;
  background:rgba(255,255,255,0.08);
  border-radius:8px;
  overflow:hidden;
  margin-top:6px;
}

/* FILL */
.fill {
  height:100%;
  width:0;
  border-radius:8px;

  background: linear-gradient(90deg,#3fa9f5,#1c75bc);

  box-shadow:0 0 12px rgba(63,169,245,0.6);

  transition: width 2s ease;
}

/* GOLD */
.gold-metric .fill {
  background: linear-gradient(90deg,#c9a227,#f5c542);
  box-shadow:0 0 15px rgba(245,197,66,0.7);
}

/* HOVER EFFECT */
.metric:hover .fill {
  filter: brightness(1.2);
}
/* CONTAINER */
.ijas-metrics {
  background: linear-gradient(180deg,#081826,#02060b);
  padding:40px;
  border-radius:16px;
  max-width:900px;
  margin:40px auto;
  box-shadow:0 20px 60px rgba(0,0,0,0.6);
}

/* TITLE */
.metrics-title {
  color:#f5c542;
  text-align:center;
  margin-bottom:30px;
}

/* ===== CONTAINER ===== */
.ijas-metrics-pro {
  background: linear-gradient(145deg,#071421,#01050a);
  padding:50px 40px;
  border-radius:18px;
  max-width:950px;
  margin:50px auto;

  box-shadow:
    0 30px 80px rgba(0,0,0,0.7),
    inset 0 0 0 1px rgba(255,255,255,0.05);
}

/* TITLE */
.metrics-title {
  color:#f5c542;
  text-align:center;
  margin-bottom:35px;
}

/* ===== ROW ===== */
.metric-row {
  margin-bottom:22px;
  position:relative;
}

/* LABEL */
.metric-row .label {
  color:#aab3bb;
  font-size:14px;
}

/* VALUE */
.metric-row .value {
  position:absolute;
  right:0;
  top:0;
  color:#fff;
  font-weight:bold;
}

/* BADGE */
.badge {
  background:#f5c542;
  color:#000;
  padding:4px 10px;
  border-radius:6px;
  font-size:12px;
}

/* BAR */
.bar {
  height:10px;
  background:rgba(255,255,255,0.06);
  border-radius:10px;
  overflow:hidden;
  margin-top:8px;
}

/* FILL */
.fill {
  height:100%;
  border-radius:10px;
  position:relative;

  background: linear-gradient(90deg,#3fa9f5,#1c75bc);
}

/* ===== SHIMMER EFFECT 🔥 */
.fill::after {
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );

  animation: shimmer 2s infinite;
}

/* GOLD VERSION */
.metric-row.gold .fill {
  background: linear-gradient(90deg,#c9a227,#f5c542);
}

/* ANIMATION */
@keyframes shimmer {
  0% { left:-100%; }
  100% { left:100%; }
}

/* HOVER */
.metric-row:hover .fill {
  filter: brightness(1.2);
}
.metrics-pro {
  background:#020b14;
  padding:40px;
  border-radius:15px;
  max-width:900px;
  margin:40px auto;
}

.metrics-pro h3 {
  color:#f5c542;
  text-align:center;
  margin-bottom:30px;
}

.metric {
  margin-bottom:20px;
  color:#fff;
  position:relative;
}

.metric span:first-child {
  color:#bbb;
}

.metric .num {
  position:absolute;
  right:0;
  top:0;
}

.bar {
  height:10px;
  background:#1a2733;
  border-radius:10px;
  margin-top:8px;
  overflow:hidden;
}

.fill {
  height:100%;
  width:0;
  border-radius:10px;
  background:linear-gradient(90deg,#00c6ff,#0072ff);
  transition: width 1.5s ease;
}

/* GOLD */
.metric.highlight .fill {
  background:linear-gradient(90deg,#c9a227,#f5c542);
}

/* BADGE */
.badge {
  background:#f5c511;
  color:#000;
  padding:4px 8px;
  border-radius:5px;
  font-size:12px;
}

/* HOVER */
.metric:hover .fill {
  filter:brightness(1.3);
}
.cps-footer-block{
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-radius: 18px;
  padding: 25px;

  border: 1px solid rgba(255,255,255,0.15);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.6),
    inset 0 0 0 1px rgba(255,255,255,0.05);

  transition: all 0.4s ease;
}.cps-footer-goldline{
  height:3px;
  background: linear-gradient(90deg, transparent, #f5c542, transparent);
  animation: goldMove 3s infinite linear;
}

@keyframes goldMove{
  0%{background-position:-200px}
  100%{background-position:200px}
}
.ijas-editing {
  max-width: 900px;
  margin: auto;
  background: #0b1f3a;
  padding: 30px;
  color: white;
  border-radius: 12px;
}

.ijas-editing h1 {
  color: gold;
  margin-bottom: 20px;
}

.services {
  display: flex;
  gap: 15px;
  margin: 20px 0;
}

.card {
  background: rgba(255,255,255,0.1);
  padding: 15px;
  border-radius: 10px;
  flex: 1;
}

button {
  background: gold;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}

input, select {
  width: 100%;
  margin: 10px 0;
  padding: 8px;
}