/* ==================================================
   DUTSE BUSINESS REVIEW (DBR)
   Federal University Dutse
   Main Theme Color: #1E6292
================================================== */

:root{
    --primary:#1E6292;
    --primary-dark:#164B70;
    --secondary:#F4B400;
    --light:#F8FAFC;
    --white:#ffffff;
    --text:#333333;
    --border:#E5E7EB;
    --shadow:0 5px 20px rgba(0,0,0,.08);
}

/* ======================
   GLOBAL SETTINGS
====================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:"Segoe UI", Arial, sans-serif;
    background:#f7f9fc;
    color:var(--text);
    line-height:1.8;
}

a{
    text-decoration:none;
    color:var(--primary);
    transition:.3s;
}

a:hover{
    color:var(--secondary);
}

img{
    max-width:100%;
}

/* ======================
   HEADER
====================== */
.pkp_site_name::after{
    content:"Dutse Business Review";
    display:block;
    color:#fff;
    font-size:42px;
    font-weight:800;
    line-height:1.1;
}

.pkp_site_name_wrapper::after{
    content:"A Peer-Reviewed Journal of the Department of Business Administration, Federal University Dutse";
    display:block;
    color:#dbeafe;
    font-size:14px;
    margin-left:110px;
    margin-top:-10px;
}
.site-header{
    background:linear-gradient(
        135deg,
        #1E6292,
        #164B70
    );
    color:white;
    padding:25px 0;
    box-shadow:var(--shadow);
}

.header-container{
    width:90%;
    max-width:1300px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.site-logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.site-logo img{
    width:80px;
}

.site-title h1{
    font-size:38px;
    margin-bottom:5px;
}

.site-title p{
    opacity:.9;
}

/* ======================
   NAVIGATION
====================== */

.navbar{
    background:white;
    box-shadow:var(--shadow);
}

.nav-container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

.nav-menu{
    list-style:none;
    display:flex;
    justify-content:center;
    gap:30px;
}

.nav-menu li a{
    display:block;
    padding:18px 0;
    font-weight:600;
}

.nav-menu li a:hover{
    color:var(--secondary);
}

/* ======================
   HERO BANNER
====================== */

.hero{
    background:white;
    padding:70px 0;
}

.hero-container{
    width:90%;
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.hero-content h1{
    color:var(--primary);
    font-size:55px;
    margin-bottom:20px;
}

.hero-content h3{
    color:var(--secondary);
    margin-bottom:15px;
}

.hero-content p{
    font-size:18px;
    margin-bottom:25px;
}

.hero-image img{
    border-radius:15px;
    box-shadow:var(--shadow);
}

/* ======================
   BUTTONS
====================== */

.btn{
    display:inline-block;
    padding:14px 28px;
    border-radius:5px;
    font-weight:600;
}

.btn-primary{
    background:var(--primary);
    color:white;
}

.btn-primary:hover{
    background:var(--primary-dark);
    color:white;
}

.btn-secondary{
    background:var(--secondary);
    color:white;
}

/* ======================
   JOURNAL STATISTICS
====================== */

.stats{
    padding:60px 0;
    background:white;
}

.stats-container{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stat-card{
    background:white;
    padding:30px;
    text-align:center;
    border-radius:10px;
    box-shadow:var(--shadow);
}

.stat-card h2{
    color:var(--primary);
    font-size:42px;
}

.stat-card p{
    font-weight:600;
}

/* ======================
   CURRENT ISSUE
====================== */

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    color:var(--primary);
    font-size:40px;
}

.current-issue{
    padding:80px 0;
}

.article-grid{
    width:90%;
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.article-card{
    background:white;
    border-radius:10px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:.3s;
}

.article-card:hover{
    transform:translateY(-5px);
}

.article-content{
    padding:25px;
}

.article-content h3{
    color:var(--primary);
    margin-bottom:10px;
}

.article-meta{
    color:#666;
    font-size:14px;
    margin-bottom:15px;
}

/* ======================
   SIDEBAR
====================== */

.sidebar-widget{
    background:white;
    padding:25px;
    border-radius:10px;
    margin-bottom:25px;
    box-shadow:var(--shadow);
}

.sidebar-widget h4{
    color:var(--primary);
    margin-bottom:15px;
    border-left:4px solid var(--secondary);
    padding-left:10px;
}

/* ======================
   ANNOUNCEMENTS
====================== */

.announcement{
    background:white;
    border-left:5px solid var(--secondary);
    padding:25px;
    margin-bottom:20px;
    box-shadow:var(--shadow);
}

/* ======================
   TABLES
====================== */

table{
    width:100%;
    border-collapse:collapse;
    background:white;
}

table th{
    background:var(--primary);
    color:white;
}

table th,
table td{
    padding:15px;
    border:1px solid #ddd;
}

/* ======================
   FORMS
====================== */

input,
textarea,
select{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:5px;
}

input:focus,
textarea:focus{
    outline:none;
    border-color:var(--primary);
}

/* ======================
   FOOTER
====================== */
```css
/* ======================
   FOOTER BOTTOM
====================== */

.footer-bottom{
    text-align:center;
    padding:25px;
    background:#123A56;
    border-top:2px solid #F4B400;
}

.footer-bottom p{
    color:#ffffff !important;
    font-size:15px;
    line-height:1.8;
    margin:8px 0;
    opacity:1 !important;
}

.footer-bottom a{
    color:#F4B400;
    font-weight:600;
}

.footer-bottom a:hover{
    color:#ffffff;
}

.footer-motto{
    color:#F4B400 !important;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}


.footer{
    background:linear-gradient(
    135deg,
    #164B70,
    #1E6292
    );
    color:white;
    padding-top:60px;
}

.footer-container{
    width:90%;
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:40px;
    padding-bottom:40px;
}

.footer h3,
.footer h4{
    color:#F4B400;
    margin-bottom:20px;
}

.footer ul{
    list-style:none;
}

.footer ul li{
    margin-bottom:10px;
}

.footer a{
    color:white;
}

.footer a:hover{
    color:#F4B400;
}

.footer-bottom{
    text-align:center;
    padding:25px;
    border-top:1px solid rgba(255,255,255,.15);
    background:#123A56;
}

.footer-bottom p{
    margin:5px 0;
}

.footer-motto{
    color:#F4B400;
    font-weight:bold;
    letter-spacing:2px;
}

/* ======================
   OJS ARTICLE VIEW
====================== */

.article-page{
    background:white;
    padding:50px;
    box-shadow:var(--shadow);
}

.article-page h1{
    color:var(--primary);
    margin-bottom:20px;
}

.article-authors{
    color:#666;
    margin-bottom:20px;
}

.article-abstract{
    background:#f4f8fb;
    border-left:5px solid var(--primary);
    padding:25px;
    margin:30px 0;
}

/* ======================
   RESPONSIVE
====================== */

@media(max-width:992px){

.hero-container,
.footer-container,
.stats-container,
.article-grid{
    grid-template-columns:1fr;
}

.nav-menu{
    flex-direction:column;
    text-align:center;
}

.site-title h1{
    font-size:28px;
}

.hero-content h1{
    font-size:40px;
}
}
/* ==================================================
   DUTSE BUSINESS REVIEW
   EDITORIAL BOARD STYLES
================================================== */
/* ==========================================
   DUTSE BUSINESS REVIEW
   IMAGE-BASED EDITORIAL BOARD
========================================== */

.editorial-section{
    padding:80px 20px;
    background:#f7f9fc;
}

.editorial-title{
    text-align:center;
    margin-bottom:60px;
}

.editorial-title h2{
    color:#1E6292;
    font-size:42px;
    font-weight:700;
}

.editorial-title p{
    color:#666;
    font-size:18px;
}

.editorial-grid{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.editor-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:all .35s ease;
}

.editor-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(30,98,146,.18);
}

.editor-header{
    background:linear-gradient(
        135deg,
        #1E6292,
        #164B70
    );
    padding:35px 20px 20px;
    text-align:center;
    position:relative;
}

.editor-avatar{
    width:140px;
    height:140px;
    margin:auto;
    margin-bottom:15px;
}

.editor-avatar img{
    width:140px;
    height:140px;
    object-fit:cover;
    border-radius:50%;
    border:5px solid #ffffff;
    box-shadow:0 5px 20px rgba(0,0,0,.2);
    transition:.3s;
}

.editor-card:hover .editor-avatar img{
    transform:scale(1.05);
}

.editor-header h3{
    color:#fff;
    font-size:22px;
    margin:10px 0 5px;
    line-height:1.4;
}

.editor-role{
    color:#F4B400;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.editor-body{
    padding:25px;
}

.editor-body p{
    margin-bottom:10px;
    color:#555;
    font-size:15px;
    line-height:1.6;
}

.editor-body strong{
    color:#1E6292;
}

.badge-country{
    display:inline-block;
    background:#eef5fb;
    color:#1E6292;
    padding:8px 15px;
    border-radius:25px;
    font-size:13px;
    font-weight:600;
    margin-top:10px;
}

/* Featured Editor-in-Chief */

.featured-editor{
    max-width:900px;
    margin:0 auto 60px;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.1);
}

.featured-editor-header{
    background:linear-gradient(
        135deg,
        #1E6292,
        #164B70
    );
    text-align:center;
    padding:40px;
}

.featured-editor-header img{
    width:180px;
    height:180px;
    border-radius:50%;
    object-fit:cover;
    border:6px solid #fff;
}

.featured-editor-header h2{
    color:#fff;
    margin-top:20px;
}

.featured-editor-role{
    color:#F4B400;
    font-weight:700;
    text-transform:uppercase;
}

.featured-editor-body{
    padding:35px;
    text-align:center;
}

/* Mobile */

@media(max-width:768px){

.editorial-grid{
    grid-template-columns:1fr;
}

.editorial-title h2{
    font-size:32px;
}

.editor-avatar{
    width:120px;
    height:120px;
}

.editor-avatar img{
    width:120px;
    height:120px;
}
}



.editorial-section{
    padding:80px 20px;
    background:#f7f9fc;
}

.editorial-title{
    text-align:center;
    margin-bottom:60px;
}

.editorial-title h2{
    color:#1E6292;
    font-size:42px;
    font-weight:700;
    margin-bottom:10px;
}

.editorial-title p{
    color:#6b7280;
    font-size:18px;
}

.editorial-grid{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.editor-card{
    background:#ffffff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:all .3s ease;
    border-top:5px solid #1E6292;
}

.editor-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(30,98,146,.15);
}

.editor-header{
    background:linear-gradient(
        135deg,
        #1E6292,
        #164B70
    );
    text-align:center;
    padding:30px 20px;
    color:#fff;
}

.editor-avatar{
    width:100px;
    height:100px;
    margin:auto;
    border-radius:50%;
    background:#fff;
    color:#1E6292;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:38px;
    font-weight:700;
    border:4px solid rgba(255,255,255,.3);
    margin-bottom:15px;
}

.editor-header h3{
    font-size:22px;
    margin-bottom:8px;
    line-height:1.4;
}

.editor-role{
    color:#F4B400;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.editor-body{
    padding:25px;
}

.editor-body p{
    margin-bottom:10px;
    color:#4b5563;
    font-size:15px;
}

.editor-body strong{
    color:#1E6292;
}

.editor-divider{
    height:1px;
    background:#e5e7eb;
    margin:15px 0;
}

.badge-country{
    display:inline-block;
    padding:8px 15px;
    background:#eef5fb;
    color:#1E6292;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-top:10px;
}

.badge-chief{
    background:#F4B400;
    color:#fff;
}

.badge-managing{
    background:#10b981;
    color:#fff;
}

.badge-associate{
    background:#6366f1;
    color:#fff;
}

.badge-international{
    background:#ec4899;
    color:#fff;
}

.editor-email{
    color:#1E6292;
    font-weight:500;
    word-break:break-word;
}

.editor-social{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:15px;
}

.editor-social a{
    width:38px;
    height:38px;
    border-radius:50%;
    background:#1E6292;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.editor-social a:hover{
    background:#F4B400;
    color:#fff;
}

/* Editorial Statistics */

.editorial-stats{
    max-width:1400px;
    margin:0 auto 60px auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.editor-stat{
    background:#fff;
    padding:25px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.editor-stat h3{
    color:#1E6292;
    font-size:36px;
    margin-bottom:10px;
}

.editor-stat p{
    color:#6b7280;
    font-weight:600;
}

/* Featured Editor */

.featured-editor{
    max-width:900px;
    margin:0 auto 60px auto;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.featured-editor-header{
    background:linear-gradient(
        135deg,
        #1E6292,
        #164B70
    );
    color:#fff;
    padding:40px;
    text-align:center;
}

.featured-editor-avatar{
    width:130px;
    height:130px;
    background:#fff;
    color:#1E6292;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:50px;
    font-weight:bold;
    margin:0 auto 20px auto;
}

.featured-editor-body{
    padding:35px;
    text-align:center;
}

/* Responsive */

@media(max-width:992px){

.editorial-grid{
    grid-template-columns:repeat(2,1fr);
}

.editorial-stats{
    grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:768px){

.editorial-grid{
    grid-template-columns:1fr;
}

.editorial-stats{
    grid-template-columns:1fr;
}

.editorial-title h2{
    font-size:32px;
}

.editor-header h3{
    font-size:20px;
}
}
/* ==========================================
   ABOUT JOURNAL SECTION
========================================== */

.about-journal{
    max-width:1200px;
    margin:50px auto;
    padding:0 20px;
}

.about-hero{
    background:linear-gradient(
        135deg,
        #1E6292,
        #164B70
    );
    color:#fff;
    padding:60px;
    border-radius:20px;
    text-align:center;
    margin-bottom:40px;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
}

.about-hero h1{
    font-size:48px;
    font-weight:700;
    margin-bottom:15px;
}

.about-hero p{
    font-size:18px;
    max-width:900px;
    margin:auto;
    opacity:.95;
}

.about-content{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:30px;
}

.about-main{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
}

.about-main h2{
    color:#1E6292;
    margin-bottom:15px;
    margin-top:30px;
    border-left:5px solid #F4B400;
    padding-left:15px;
}

.about-main p{
    line-height:1.9;
    color:#555;
    margin-bottom:15px;
}

.about-main ul{
    padding-left:25px;
}

.about-main li{
    margin-bottom:10px;
    line-height:1.8;
}

.about-sidebar{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.info-card{
    background:#fff;
    padding:25px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.info-card h3{
    color:#1E6292;
    margin-bottom:15px;
    font-size:20px;
}

.info-card p{
    margin-bottom:10px;
    color:#555;
}

.info-card strong{
    color:#1E6292;
}

.journal-stat{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 0;
    border-bottom:1px solid #eee;
}

.journal-stat:last-child{
    border-bottom:none;
}

.stat-label{
    color:#555;
}

.stat-value{
    color:#1E6292;
    font-weight:700;
}

.highlight-box{
    background:#eef5fb;
    border-left:5px solid #1E6292;
    padding:20px;
    border-radius:10px;
    margin:25px 0;
}

.highlight-box h4{
    color:#1E6292;
    margin-bottom:10px;
}

.scope-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:20px;
}

.scope-item{
    background:#f8fafc;
    padding:15px;
    border-radius:10px;
    border-left:4px solid #F4B400;
}

.scope-item:hover{
    background:#eef5fb;
}

.publisher-card{
    background:linear-gradient(
        135deg,
        #1E6292,
        #164B70
    );
    color:#fff;
    padding:25px;
    border-radius:15px;
}

.publisher-card h3{
    color:#F4B400;
    margin-bottom:15px;
}

.publisher-card p{
    color:#fff;
}

@media(max-width:768px){

.about-content{
    grid-template-columns:1fr;
}

.about-hero{
    padding:40px 25px;
}

.about-hero h1{
    font-size:32px;
}

.scope-grid{
    grid-template-columns:1fr;
}
}
/* =====================================
   DBR CALL FOR PAPERS SLIDER
===================================== */

/* ==========================================
   DBR CSS ONLY AUTO SLIDER
========================================== */

.dbr-slider-section{
    max-width:1700px;
    margin:60px auto;
    padding:0 20px;
}

.dbr-slider{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    height:800px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

/* Slides */

.dbr-slide{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;

    display:flex;
    align-items:center;

    opacity:0;
    visibility:hidden;

    animation:sliderAnimation 12s infinite;
}

/* First Slide */

.dbr-slide:nth-child(1){
    background:linear-gradient(
        135deg,
        #1E6292,
        #164B70
    );

    animation-delay:0s;
}

/* Second Slide */

.dbr-slide:nth-child(2){
    background:linear-gradient(
        135deg,
        #164B70,
        #0F2F47
    );

    animation-delay:6s;
}

/* Animation */

@keyframes sliderAnimation{

    0%{
        opacity:0;
        visibility:hidden;
    }

    5%{
        opacity:1;
        visibility:visible;
    }

    45%{
        opacity:1;
        visibility:visible;
    }

    50%{
        opacity:0;
        visibility:hidden;
    }

    100%{
        opacity:0;
        visibility:hidden;
    }
}

/* Content */

.slide-content{
    width:100%;
    padding:70px;
    color:#fff;
}

.slide-badge{
    display:inline-block;
    background:#F4B400;
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    margin-bottom:20px;
    text-transform:uppercase;
}

.slide-content h2{
    font-size:52px;
    margin-bottom:20px;
    color:#fff;
    font-weight:700;
    max-width:900px;
}

.slide-content p{
    font-size:18px;
    line-height:1.8;
    max-width:850px;
}

.deadline-box{
    margin-top:25px;
    margin-bottom:25px;
    display:inline-block;
    padding:15px 25px;
    border-radius:10px;
    background:rgba(255,255,255,.15);
    border:1px solid rgba(255,255,255,.2);
}

.slide-btn{
    display:inline-block;
    padding:15px 30px;
    border-radius:8px;
    background:#F4B400;
    color:#fff;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.slide-btn:hover{
    background:#fff;
    color:#1E6292;
}

/* Why Publish Grid */

.benefits-grid{
    margin-top:30px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.benefit-item{
    background:rgba(255,255,255,.15);
    padding:18px;
    border-radius:10px;
    font-weight:600;
    backdrop-filter:blur(5px);
}

/* Decorative Dots */

.slider-nav{
    display:flex;
    justify-content:center;
    gap:8px;
    margin-top:20px;
}

.slider-nav span{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#1E6292;
    opacity:.4;
}

.slider-nav span:first-child{
    animation:dotOne 12s infinite;
}

.slider-nav span:last-child{
    animation:dotTwo 12s infinite;
}

@keyframes dotOne{

    0%,45%{
        opacity:1;
    }

    50%,100%{
        opacity:.3;
    }
}

@keyframes dotTwo{

    0%,45%{
        opacity:.3;
    }

    50%,95%{
        opacity:1;
    }

    100%{
        opacity:.3;
    }
}

/* Responsive */

@media(max-width:992px){

    .benefits-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .slide-content h2{
        font-size:40px;
    }
}

@media(max-width:768px){

    .dbr-slider{
        height:auto;
        min-height:600px;
    }

    .slide-content{
        padding:40px 25px;
    }

    .slide-content h2{
        font-size:30px;
    }

    .slide-content p{
        font-size:16px;
    }

    .benefits-grid{
        grid-template-columns:1fr;
    }
}


