@charset "utf-8";

/*
=========================================================
IJQA CUSTOM CSS
International Journal for Quality Assurance
OJS 3.x
English + Arabic
=========================================================
*/


/* =====================================================
   Google Fonts
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Noto+Sans+Arabic:wght@400;500;600;700&family=Open+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Tajawal:wght@400;500;600;700;800&display=swap');


/* =====================================================
   IJQA logo color palette
   ===================================================== */

:root {
    --ijqa-primary: #00679D;
    --ijqa-primary-dark: #004B73;
    --ijqa-secondary: #1785B5;
    --ijqa-green: #35A853;
    --ijqa-accent: #D5A63A;

    --ijqa-light: #F1F7FA;
    --ijqa-lighter: #F8FBFD;
    --ijqa-border: #D5E3EA;

    --ijqa-text: #263238;
    --ijqa-muted: #657781;
    --ijqa-white: #FFFFFF;
}


/* =====================================================
   General page
   ===================================================== */

html {
    min-height: 100%;
}

body {
    margin: 0;
    background: var(--ijqa-lighter);
    color: var(--ijqa-text);

    font-family:
        "Noto Sans Arabic",
        "Open Sans",
        Arial,
        Helvetica,
        sans-serif;

    font-size: 15px;
    line-height: 1.7;
}

a {
    color: var(--ijqa-primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover,
a:focus {
    color: var(--ijqa-primary-dark);
    text-decoration: underline;
}

p,
li,
td,
th,
label,
small {
    font-family:
        "Noto Sans Arabic",
        "Open Sans",
        Arial,
        sans-serif;
}


/* =====================================================
   Headings and interface text
   ===================================================== */

h1,
h2,
h3,
h4,
h5,
h6,
.pkp_site_name,
.pkp_navigation_primary,
.pkp_navigation_user,
.pkp_block .title,
.current_issue_title,
.btn,
button,
input[type="submit"],
input[type="button"] {
    font-family:
        "Tajawal",
        "Montserrat",
        "Noto Sans Arabic",
        Arial,
        sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.45;
}


/* =====================================================
   Main page container
   ===================================================== */

.pkp_structure_page {
    max-width: 1240px;
    margin: 25px auto;
    background: var(--ijqa-white);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}


/* =====================================================
   Header
   ===================================================== */

.pkp_structure_head {
    background: var(--ijqa-white);
    border-top: 6px solid var(--ijqa-primary);
    border-bottom: 1px solid var(--ijqa-border);
}

.pkp_head_wrapper {
    padding: 0 35px;
}


/* =====================================================
   Logo and journal information
   ===================================================== */

.pkp_site_name {
    display: flex;
    align-items: center;
    min-height: 150px;
    padding: 20px 0;
}

.pkp_site_name .is_img {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 100%;
}

.pkp_site_name .is_img img {
    display: block;
    max-width: 175px;
    max-height: 150px;
    width: auto;
    height: auto;
}

.pkp_site_name .is_img::after {
    display: block;
    max-width: 720px;

    content:
	
	    "المجلة الدولية لضمان الجودة\A"
        "The International Journal for Quality Assurance\A"
		
        "ISSN 2415-4067  |  ISSN (ONLINE) 2789-2042";

    color: var(--ijqa-primary-dark);

    font-family:
        "Montserrat",
        "Noto Sans Arabic",
        Arial,
        sans-serif;

    font-size: 17px;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.1px;
    text-align: left;
    white-space: pre-line;
}

/* =====================================================
   Primary navigation
   ===================================================== */

.pkp_navigation_primary_row {
    background: var(--ijqa-primary);
}

.pkp_navigation_primary_wrapper {
    padding: 0 25px;
}

.pkp_navigation_primary > li > a {
    padding: 16px 18px;
    color: var(--ijqa-white);

    font-family:
        "Tajawal",
        "Montserrat",
        "Noto Sans Arabic",
        Arial,
        sans-serif;

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.1px;
    text-transform: uppercase;
}

.pkp_navigation_primary > li > a:hover,
.pkp_navigation_primary > li > a:focus,
.pkp_navigation_primary > li > a[aria-expanded="true"] {
    background: var(--ijqa-primary-dark);
    color: var(--ijqa-white);
    text-decoration: none;
}

.pkp_navigation_primary .dropdown-menu {
    min-width: 220px;
    padding: 8px 0;

    background: var(--ijqa-white);
    border: 1px solid var(--ijqa-border);
    border-top: 3px solid var(--ijqa-green);
	
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
	margin-top: 28px;
	
	
	
}

.pkp_navigation_primary .dropdown-menu a {
    display: block;
    padding: 9px 16px;

    color: var(--ijqa-text);

    font-family:
        "Tajawal",
        "Montserrat",
        "Noto Sans Arabic",
        Arial,
        sans-serif;
}

.pkp_navigation_primary .dropdown-menu a:hover {
    background: var(--ijqa-light);
    color: var(--ijqa-primary);
}


/* =====================================================
   User navigation
   ===================================================== */

.pkp_navigation_user {
    padding-top: 8px;
}

.pkp_navigation_user > li > a {
    color: var(--ijqa-primary);

    font-family:
        "Tajawal",
        "Montserrat",
        "Noto Sans Arabic",
        Arial,
        sans-serif;

    font-size: 14px;
}

.pkp_navigation_user > li > a:hover {
    color: var(--ijqa-primary-dark);
}


/* =====================================================
   Main content and columns
   ===================================================== */

.pkp_structure_content {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 40px;
}

.pkp_structure_main {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    padding-right: 0;

    float: none !important;
    clear: none !important;
}

.pkp_structure_sidebar {
    flex: 0 0 270px;
    width: 270px;
    min-width: 0;
    margin-top: 0;
    padding-left: 0;
    align-self: flex-start;

    float: none !important;
    clear: none !important;
}

.pkp_structure_main::after,
.pkp_structure_sidebar::after {
    display: none;
    clear: none;
}


/* =====================================================
   Headings
   ===================================================== */

.page h1,
.pkp_page_index h1,
.pkp_page_index h2,
.pkp_structure_main h1,
.pkp_structure_main h2 {
    color: var(--ijqa-primary-dark);
    font-weight: 700;
}

.page h1,
.pkp_structure_main h1 {
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--ijqa-green);
}

.pkp_structure_main h2,
.pkp_structure_main h3 {
    color: var(--ijqa-primary-dark);
}

.section h2,
.section h3 {
    padding-bottom: 8px;
    color: var(--ijqa-primary-dark);
    border-bottom: 2px solid var(--ijqa-green);
}


/* =====================================================
   Homepage introduction
   ===================================================== */

.homepage_about {
    padding: 25px 30px;
    margin-bottom: 30px;

    background: var(--ijqa-light);
    border-left: 5px solid var(--ijqa-primary);
    border-radius: 0 5px 5px 0;
}

.homepage_about h2 {
    margin-top: 0;
    color: var(--ijqa-primary-dark);
}


/* =====================================================
   Current issue
   ===================================================== */

.current_issue {
    margin-top: 25px;
}

.current_issue .current_issue_title {
    padding: 15px 20px;
    margin-bottom: 20px;

    background: var(--ijqa-primary-dark);
    color: var(--ijqa-white);
    border-radius: 4px;

    font-size: 21px;
    font-weight: 700;
}

.current_issue .obj_issue_toc {
    padding: 25px;
    background: var(--ijqa-white);
    border: 1px solid var(--ijqa-border);
    border-radius: 5px;
}


/* =====================================================
   Issues and articles
   ===================================================== */

.obj_issue_summary {
    padding: 22px;
    margin-bottom: 20px;

    background: var(--ijqa-white);
    border: 1px solid var(--ijqa-border);
    border-left: 4px solid var(--ijqa-primary);
    border-radius: 4px;

    transition: all 0.25s ease;
}

.obj_issue_summary:hover {
    border-left-color: var(--ijqa-green);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.obj_issue_summary h2,
.obj_issue_summary h3 {
    margin-top: 0;
    color: var(--ijqa-primary-dark);
}

.obj_article_summary {
    padding: 20px 0;
    border-bottom: 1px solid var(--ijqa-border);
}

.obj_article_summary:last-child {
    border-bottom: 0;
}

.obj_article_summary h3 {
    margin-top: 0;
    font-size: 18px;
    line-height: 1.55;
}

.obj_article_summary h3 a {
    color: var(--ijqa-primary-dark);
}

.obj_article_summary h3 a:hover {
    color: var(--ijqa-primary);
}


/* =====================================================
   Sidebar blocks
   ===================================================== */

.pkp_block {
    margin: 0 0 25px 0;
    padding: 0;

    background: var(--ijqa-white);
    border: 1px solid var(--ijqa-border);
    border-radius: 5px;
    overflow: hidden;
}

.pkp_structure_sidebar .pkp_block:first-child {
    margin-top: 0;
}

.pkp_block .title {
    margin: 0;
    padding: 14px 18px;

    background: var(--ijqa-primary);
    color: var(--ijqa-white);

    font-size: 17px;
    font-weight: 700;
}

.pkp_block .content {
    padding: 11px;
    color: var(--ijqa-text);
}

.pkp_block ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pkp_block li {
    padding: 8px 0;
    border-bottom: 1px solid var(--ijqa-border);
}

.pkp_block li:last-child {
    border-bottom: 0;
}


/* =====================================================
   Buttons
   ===================================================== */

.btn,
button,
input[type="submit"],
input[type="button"] {
    padding: 10px 18px;

    background: var(--ijqa-primary);
    color: var(--ijqa-white);

    border: 1px solid var(--ijqa-primary);
    border-radius: 4px;

    font-family:
        "Tajawal",
        "Montserrat",
        "Noto Sans Arabic",
        Arial,
        sans-serif;

    font-weight: 600;
    transition: all 0.2s ease;
}

.btn:hover,
.btn:focus,
button:hover,
button:focus,
input[type="submit"]:hover,
input[type="button"]:hover {
    background: var(--ijqa-primary-dark);
    border-color: var(--ijqa-primary-dark);
    color: var(--ijqa-white);
}

.btn-secondary {
    background: var(--ijqa-white);
    color: var(--ijqa-primary);
    border-color: var(--ijqa-primary);
}

.btn-secondary:hover {
    background: var(--ijqa-light);
    color: var(--ijqa-primary-dark);
}


/* =====================================================
   Form fields
   ===================================================== */

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
select,
textarea {
    width: 100%;
    max-width: 100%;
    padding: 10px 12px;
    box-sizing: border-box;

    color: var(--ijqa-text);
    background: var(--ijqa-white);
    border: 1px solid #bdcccf;
    border-radius: 4px;

    font-family:
        "Noto Sans Arabic",
        "Open Sans",
        Arial,
        sans-serif;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;

    border-color: var(--ijqa-primary);
    box-shadow: 0 0 0 3px rgba(0, 103, 157, 0.12);
}


/* =====================================================
   Tables
   ===================================================== */

table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
}

table th {
    padding: 12px 14px;
    background: var(--ijqa-primary-dark);
    color: var(--ijqa-white);
    text-align: left;
}

table td {
    padding: 12px 14px;
    border: 1px solid var(--ijqa-border);
}

table tr:nth-child(even) {
    background: var(--ijqa-light);
}


/* =====================================================
   Notifications
   ===================================================== */

.notification {
    padding: 15px 18px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.notification_info {
    background: #E6F3F8;
    border-left: 4px solid var(--ijqa-primary);
}

.notification_warning {
    background: #FFF6DF;
    border-left: 4px solid var(--ijqa-accent);
}


/* =====================================================
   Footer
   ===================================================== */

.pkp_structure_footer_wrapper {
    background: var(--ijqa-primary-dark);
    border-top: 5px solid var(--ijqa-green);
}

.pkp_structure_footer {
    padding: 30px 35px;
    color: #DCEBED;
}

.pkp_structure_footer a {
    color: var(--ijqa-white);
}

.pkp_structure_footer a:hover {
    color: var(--ijqa-green);
}

.pkp_footer_content {
    color: #DCEBED;
}


/* =====================================================
   Search and breadcrumbs
   ===================================================== */

.search_prompt {
    color: var(--ijqa-primary);
}

.search_prompt:hover {
    color: var(--ijqa-primary-dark);
}

.search_modal {
    border-top: 4px solid var(--ijqa-primary);
}

.pkp_breadcrumb {
    margin-bottom: 25px;
}

.pkp_breadcrumb li a {
    color: var(--ijqa-primary);
}

.pkp_breadcrumb li:last-child {
    color: var(--ijqa-muted);
}


/* =====================================================
   Labels and badges
   ===================================================== */

.label,
.badge {
    background: var(--ijqa-green);
    color: var(--ijqa-white);
}


/* =====================================================
   Arabic RTL support
   ===================================================== */

html[lang="ar"],
html[dir="rtl"] {
    direction: rtl;
}

html[lang="ar"] body,
html[dir="rtl"] body {
    font-family:
        "Noto Sans Arabic",
        "Tajawal",
        Arial,
        sans-serif;

    line-height: 2;
}

html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] h4,
html[lang="ar"] h5,
html[lang="ar"] h6,
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] h5,
html[dir="rtl"] h6 {
    font-family:
        "Tajawal",
        "Noto Sans Arabic",
        Arial,
        sans-serif;

    font-weight: 700;
    line-height: 1.6;
}

html[lang="ar"] .pkp_structure_content,
html[dir="rtl"] .pkp_structure_content {
    direction: rtl;
    text-align: right;
}

html[lang="ar"] .pkp_structure_main,
html[dir="rtl"] .pkp_structure_main {
    text-align: right;
}

html[lang="ar"] .pkp_structure_sidebar,
html[dir="rtl"] .pkp_structure_sidebar {
    text-align: right;
}

html[lang="ar"] .pkp_navigation_primary,
html[lang="ar"] .pkp_navigation_user,
html[dir="rtl"] .pkp_navigation_primary,
html[dir="rtl"] .pkp_navigation_user {
    direction: rtl;
}

html[lang="ar"] .pkp_navigation_primary .dropdown-menu,
html[dir="rtl"] .pkp_navigation_primary .dropdown-menu {
    text-align: right;
}

html[lang="ar"] .homepage_about,
html[dir="rtl"] .homepage_about {
    border-right: 5px solid var(--ijqa-primary);
    border-left: 0;
    border-radius: 5px 0 0 5px;
}

html[lang="ar"] .obj_issue_summary,
html[dir="rtl"] .obj_issue_summary {
    border-right: 4px solid var(--ijqa-primary);
    border-left: 1px solid var(--ijqa-border);
}

html[lang="ar"] .notification_info,
html[dir="rtl"] .notification_info {
    border-right: 4px solid var(--ijqa-primary);
    border-left: 0;
}

html[lang="ar"] .notification_warning,
html[dir="rtl"] .notification_warning {
    border-right: 4px solid var(--ijqa-accent);
    border-left: 0;
}


/* =====================================================
   Responsive layout
   ===================================================== */

@media (max-width: 991px) {
    .pkp_structure_page {
        margin: 0;
    }

    .pkp_head_wrapper,
    .pkp_structure_footer {
        padding-right: 20px;
        padding-left: 20px;
    }

    .pkp_structure_content {
        display: block;
        padding: 30px 20px;
    }

    .pkp_structure_main {
        width: 100%;
        padding-right: 0;
    }

    .pkp_structure_sidebar {
        width: 100%;
        margin-top: 30px;
        padding-left: 0;
    }

    .pkp_site_name .is_text {
        font-size: 24px;
    }
}

@media (max-width: 800px) {
    .pkp_site_name {
        display: block;
        min-height: 0;
        padding: 20px 0;
    }

    .pkp_site_name .is_img {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .pkp_site_name .is_img img {
        max-width: 120px;
        max-height: 115px;
    }

    .pkp_site_name .is_img::after {
        max-width: 100%;
        font-size: 12px;
        line-height: 1.6;
    }
}

@media (max-width: 520px) {
    .pkp_site_name .is_img {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .pkp_site_name .is_img::after {
        text-align: center;
        font-size: 12px;
    }

    body {
        font-size: 14px;
    }

    .pkp_structure_content {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .pkp_site_name {
        padding: 18px 0;
    }

    .pkp_navigation_primary > li > a {
        padding: 12px 14px;
        font-size: 13px;
    }

    .current_issue .current_issue_title {
        font-size: 18px;
    }

    .homepage_about,
    .obj_issue_summary {
        padding: 18px;
    }
}


/* =====================================================
   Wide-screen logo adjustment
   ===================================================== */

@media (min-width: 1200px) {
    .has_site_logo .pkp_head_wrapper {
        width: 100%;
    }
}




/***here ***/
/* =========================================================
   IJQA Custom Sidebar Blocks
   ========================================================= */

.ijqa-sidebar-block {
  --ijqa-primary: #174a73;
  --ijqa-primary-dark: #103653;
  --ijqa-accent: #c49a45;
  --ijqa-text: #263746;
  --ijqa-muted: #667786;
  --ijqa-border: #dce5eb;
  --ijqa-background: #f5f8fa;
  --ijqa-white: #ffffff;
  --ijqa-radius: 12px;

  width: 100%;
  margin: 0 0 28px;
  color: var(--ijqa-text);
  font-family: inherit;
  box-sizing: border-box;
}

.ijqa-sidebar-block *,
.ijqa-sidebar-block *::before,
.ijqa-sidebar-block *::after {
  box-sizing: border-box;
}


/* Card */

.ijqa-card {
  width: 100%;
  margin: 0 0 24px;
  overflow: hidden;
  background: var(--ijqa-white);
  border: 1px solid var(--ijqa-border);
  border-radius: var(--ijqa-radius);
  box-shadow: 0 5px 18px rgba(23, 74, 115, 0.08);
}

.ijqa-card:last-child {
  margin-bottom: 0;
}


/* Card heading */

.ijqa-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 15px 18px;
  color: var(--ijqa-white);
  background: linear-gradient(135deg, #00679d, var(--ijqa-primary-dark));
  border-bottom: 3px solid var(--ijqa-accent);
}

.ijqa-card-header h2 {
  margin: 0;
  color: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.ijqa-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  color: var(--ijqa-primary);
  background: var(--ijqa-white);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 700;
}


/* Indexing logos */
/* =========================================================
   IJQA narrow-sidebar correction
   ========================================================= */

.ijqa-sidebar-block .ijqa-card-header {
  min-height: 62px;
  padding: 14px 16px;
}

.ijqa-sidebar-block .ijqa-card-header h2 {
  font-size: 15px;
  line-height: 1.3;
}

.ijqa-sidebar-block .ijqa-index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 16px;
}

/* Normal logo cards */

.ijqa-sidebar-block .ijqa-index-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 78px;
  padding: 9px;
  overflow: hidden;
}

/* Images inside normal cards */

.ijqa-sidebar-block .ijqa-index-item img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 48px;
  margin: 0;
  object-fit: contain;
}

/* Arabic Citation Index card */

.ijqa-sidebar-block .ijqa-featured-index {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  min-height: 82px;
  gap: 14px;
  padding: 12px 14px;
  text-align: left;
}

.ijqa-sidebar-block .ijqa-featured-index img {
  flex: 0 0 auto;
  width: 92px;
  max-width: 40%;
  max-height: 58px;
}

.ijqa-sidebar-block .ijqa-featured-index span {
  color: #174a73;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
}

/* Google Scholar */

.ijqa-sidebar-block .ijqa-google-scholar {
  grid-column: 1 / -1;
  min-height: 72px;
}

.ijqa-sidebar-block .ijqa-google-scholar img {
  width: auto;
  max-width: 100%;
  max-height: 58px;
}

/* Better appearance for very small sidebar widths */

@media (max-width: 360px) {
  .ijqa-sidebar-block .ijqa-index-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 11px;
  }

  .ijqa-sidebar-block .ijqa-index-item {
    min-height: 70px;
  }

  .ijqa-sidebar-block .ijqa-featured-index {
    grid-column: 1 / -1;
  }

  .ijqa-sidebar-block .ijqa-featured-index img {
    width: 82px;
  }

  .ijqa-sidebar-block .ijqa-google-scholar {
    grid-column: 1 / -1;
  }
}




.ijqa-sidebar-block .ijqa-featured-index {
  justify-content: center;
}

.ijqa-sidebar-block .ijqa-featured-index img {
  width: auto;
  max-width: 100%;
}



.ijqa-sidebar-block .ijqa-featured-index {
  justify-content: center;
}

.ijqa-sidebar-block .ijqa-featured-index img {
  width: auto;
  max-width: 100%;
}

.ijqa-sidebar-block .ijqa-index-item img {
  transform: scale(1.50);
}