/* ==========================================================
BJSTR - Biomedical Journal of Scientific & Technical Research
Production CSS
Version : 1.0
==========================================================*/
/* ===============================
Google Font
===============================*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
/* ===============================
CSS Variables
===============================*/
:root{
--primary:#0056b3;
--secondary:#0d6efd;
--success:#198754;
--danger:#dc3545;
--warning:#ffc107;
--dark:#222;
--text:#555;
--light:#f7f9fc;
--white:#fff;
--border:#e4e7eb;
--shadow:0 5px 20px rgba(0,0,0,.08);
--radius:10px;
--transition:.3s ease;
--container:1200px;
}
/* ===============================
Reset
===============================*/
*{
margin:0;
padding:0;
box-sizing:border-box;
}
html{
scroll-behavior:smooth;
}
body{
font-family:'Inter',sans-serif;
font-size:16px;
line-height:1.7;
color:var(--text);
background:var(--white);
overflow-x:hidden;
}
img{
max-width:100%;
display:block;
}
a{
text-decoration:none;
transition:var(--transition);
color:inherit;
}
ul{
list-style:none;
}
.container{
width:90%;
max-width:var(--container);
margin:auto;
}
/* ===============================
Headings
===============================*/
h1,h2,h3,h4,h5{
color:var(--dark);
font-weight:700;
margin-bottom:15px;
}
h1{
font-size:48px;
line-height:1.2;
}
h2{
font-size:36px;
}
h3{
font-size:24px;
}
p{
margin-bottom:15px;
}
/* ===============================
Section
===============================*/
section{
padding:40px 0;
}
.section-title{
text-align:center;
margin-bottom:20px;
}
.section-title h2{
position:relative;
display:inline-block;
padding-bottom:15px;
}
.section-title h2::after{
content:"";
position:absolute;
bottom:0;
left:50%;
transform:translateX(-50%);
width:80px;
height:4px;
background:var(--primary);
border-radius:50px;
}
/* ===============================
Buttons
===============================*/
.btn{
display:inline-block;
padding:14px 30px;
border-radius:40px;
font-weight:600;
transition:.3s;
}
.btn-primary{
background:var(--primary);
color:#fff;
}
.btn-primary:hover{
background:#004494;
transform:translateY(-3px);
}
.btn-outline{
border:2px solid var(--primary);
color:var(--primary);
}
.btn-outline:hover{
background:var(--primary);
color:#fff;
}
/* ===============================
Top Bar
===============================*/
.top-bar{
background:var(--dark);
color:#fff;
font-size:14px;
padding:10px 0;
}
.top-bar .container{
display:flex;
justify-content:space-between;
align-items:center;
}
.top-bar a{
color:#fff;
}
.top-bar i{
margin-right:6px;
color:#ffc107;
}
/* ===============================
Header
===============================*/
.site-header{
background:#fff;
box-shadow:var(--shadow);
position:sticky;
top:0;
z-index:999;
}
.site-header .container{
display:flex;
justify-content:space-between;
align-items:center;
padding:10px 0;
}
.logo{
display:flex;
align-items:center;
text-decoration:none;
gap:10px;
}
.logo img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    transition: .4s;
}

.logo:hover img{

transform:rotate(-6deg) scale(1.05);

}
.logo-text h2 {
    margin: 0;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(90deg,#0056b3,#0099ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.logo-text span {
    font-size: 12px;
    color: #666;
    display: block;
    max-width: 250px;
}
/* ===================================
Navigation
=================================== */
#mainMenu{
display:flex;
}
#mainMenu ul{
display:flex;
align-items:center;
gap:30px;
}
#mainMenu ul li{
position:relative;
}
#mainMenu ul li a{
color:var(--dark);
font-size:15px;
font-weight:600;
padding:4px 0;
display:block;
transition:var(--transition);
}
#mainMenu ul li a:hover{
color:var(--primary);
}
#mainMenu ul li a::after{
content:"";
position:absolute;
left:0;
bottom:0;
width:0;
height:2px;
background:var(--primary);
transition:var(--transition);
}
#mainMenu ul li:hover a::after{
width:100%;
}
.header-actions{
display:flex;
align-items:center;
gap:15px;
}
.submit-btn{
background:var(--primary);
color:#fff;
padding:12px 22px;
border-radius:50px;
font-size:14px;
font-weight:600;
}
.submit-btn:hover{
background:#003f85;
}
.menu-toggle{
display:none;
border:none;
background:none;
font-size:28px;
cursor:pointer;
color:var(--primary);
}
/* ===================================
Hero Section
=================================== */
.hero {
background: linear-gradient(rgb(0 86 179 / 0%), rgb(0 86 179 / 6%)), url(../images/banner.png) center bottom / cover;
color: #fff;
padding: 24px 0;
}
.hero-content{
max-width:720px;
}
.hero h1 {
color: #fff;
font-size: 40px;
margin-bottom: 25px;
line-height: 1.2;
visibility: hidden;
}
.hero p{
font-size:20px;
margin-bottom:35px;
opacity:.95;
visibility: hidden;
}
.hero-buttons{
display:flex;
gap:20px;
flex-wrap:wrap;
visibility: hidden;
}
.hero .btn-outline{
border:2px solid #fff;
color:#fff;
}
.hero .btn-outline:hover{
background:#fff;
color:var(--primary);
}
/* ===================================
Statistics
=================================== */
.stats{
background:#f1f1f1;
}
.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}
.stat-box{
background:#fff;
text-align:center;
padding:35px;
border-radius:var(--radius);
box-shadow:var(--shadow);
transition:.3s;
}
.stat-box:hover{
transform:translateY(-8px);
}
.stat-box h3{
color:var(--primary);
font-size:40px;
margin-bottom:10px;
}
.stat-box p{
margin:0;
font-size:17px;
}
/* ===================================
About Section
=================================== */
.about-home{
background:#fff;
}
.about-home p {
    font-size: 15px;
}
/* ===================================
Why Publish
=================================== */
.features{
background:#f1f1f1;
}
.feature-grid {
display: grid;
grid-template-columns: repeat(5,1fr);
gap: 20px;
}
.feature-box {
background: #fff;
padding: 20px;
border-radius: 12px;
text-align: center;
box-shadow: var(--shadow);
transition: .3s;
}
.feature-box:hover{
transform:translateY(-10px);
}
.feature-box h3 {
color: var(--primary);
margin-bottom: 8px;
font-size: 18px;
}
.feature-box p {
font-size: 14px;
margin-bottom: 0;
}
/* ===================================
Current Issue
=================================== */
.current-issue{
background:#fff;
}
.issue-card {
display: grid;
gap: 50px;
align-items: center;
background: #fff;
border-radius: 15px;
padding: 40px;
box-shadow: var(--shadow);
margin-top: 24px;
}
.issue-card img{
border-radius:10px;
}
.issue-card h3{
color:var(--primary);
margin-bottom:20px;
}
.issue-card p{
margin-bottom:30px;
}
/* ===================================
Research Areas
=================================== */
.scope{
background:#f7f9fc;
}
.scope-grid{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:15px;
}
.scope-grid span{
background:#fff;
color:var(--primary);
border:1px solid var(--border);
padding:14px 22px;
border-radius:40px;
font-weight:600;
transition:.3s;
}
.scope-grid span:hover{
background:var(--primary);
color:#fff;
}
/* ===================================
CTA
=================================== */
.cta {
background: linear-gradient(135deg,#0056b3,#0d6efd);
text-align: center;
color: #fff;
}
.cta h2 {
color: #fff;
font-size: 38px;
margin-bottom: 0;
}
.cta p {
max-width: 750px;
margin: 0 auto 20px;
font-size: 18px;
}
.cta .btn{
background:#fff;
color:var(--primary);
}
.cta .btn:hover{
background:#f1f1f1;
}
/* ======================================================
FOOTER
====================================================== */
.footer{
background:#0f172a;
color:#cbd5e1;
padding:70px 0 0;
}
.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr 1.5fr;
gap:40px;
}
.footer-logo{
width:90px;
margin-bottom:20px;
}
.footer h3{
color:#fff;
margin-bottom:20px;
font-size:20px;
}
.footer p{
color:#cbd5e1;
line-height:1.8;
}
.footer ul li{
margin-bottom:12px;
}
.footer ul li a{
color:#cbd5e1;
transition:.3s;
}
.footer ul li a:hover{
color:#fff;
padding-left:6px;
}
.social-icons{
display:flex;
gap:12px;
margin-top:20px;
}
.social-icons a{
width:42px;
height:42px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
background:rgba(255,255,255,.08);
color:#fff;
transition:.3s;
}
.social-icons a:hover{
background:var(--primary);
transform:translateY(-4px);
}
.copyright{
border-top:1px solid rgba(255,255,255,.1);
margin-top:60px;
padding:20px 0;
text-align:center;
font-size:15px;
}
/* ======================================================
FORMS
====================================================== */
form{
width:100%;
}
.form-group{
margin-bottom:25px;
}
label{
display:block;
margin-bottom:8px;
font-weight:600;
color:var(--dark);
}
input,
textarea,
select{
width:100%;
padding:14px 16px;
border:1px solid var(--border);
border-radius:8px;
font-size:15px;
font-family:inherit;
outline:none;
transition:.3s;
}
textarea{
min-height:180px;
resize:vertical;
}
input:focus,
textarea:focus,
select:focus{
border-color:var(--primary);
box-shadow:0 0 0 3px rgba(0,86,179,.12);
}
/* ======================================================
TABLES
====================================================== */
table{
width:100%;
border-collapse:collapse;
margin-bottom:30px;
}
table th{
background:var(--primary);
color:#fff;
padding:15px;
text-align:left;
}
table td{
border:1px solid var(--border);
padding:15px;
}
table tr:nth-child(even){
background:#f8f9fa;
}
/* ======================================================
PAGE BANNER
====================================================== */
.page-banner {
background: linear-gradient(rgba(0,86,179,.88),rgba(0,86,179,.88)),
url("../images/banner.jpg") center/cover;
padding: 40px 0;
color: #fff;
text-align: center;
}
.page-banner h1{
color:#fff;
font-size:42px;
}
.breadcrumb{
margin-top:15px;
}
.breadcrumb a{
color:#fff;
opacity:.9;
}
/* ======================================================
UTILITIES
====================================================== */
.text-center{
text-align:center;
}
.mt-20{
margin-top:20px;
}
.mt-40{
margin-top:40px;
}
.mb-20{
margin-bottom:20px;
}
.mb-40{
margin-bottom:40px;
}
.shadow{
box-shadow:var(--shadow);
}
.rounded{
border-radius:var(--radius);
}
.bg-light{
background:#f8f9fa;
}
/* ======================================================
BACK TO TOP
====================================================== */
#backToTop{
position:fixed;
right:25px;
bottom:25px;
width:50px;
height:50px;
border:none;
border-radius:50%;
background:var(--primary);
color:#fff;
cursor:pointer;
display:none;
font-size:18px;
box-shadow:var(--shadow);
transition:.3s;
z-index:999;
}
#backToTop:hover{
background:#004494;
}
#backToTop .fa-solid {
padding: 16px 18px;
}
/* ======================================================
ANIMATIONS
====================================================== */
.fade-up{
animation:fadeUp .7s ease forwards;
}
@keyframes fadeUp{
from{
opacity:0;
transform:translateY(40px);
}
to{
opacity:1;
transform:translateY(0);
}
}
.zoom{
transition:.3s;
}
.zoom:hover{
transform:scale(1.05);
}
/* ======================================================
SELECTION
====================================================== */
::selection{
background:var(--primary);
color:#fff;
}
/* ======================================================
SCROLLBAR
====================================================== */
::-webkit-scrollbar{
width:10px;
}
::-webkit-scrollbar-track{
background:#f1f1f1;
}
::-webkit-scrollbar-thumb{
background:var(--primary);
border-radius:20px;
}
::-webkit-scrollbar-thumb:hover{
background:#003f85;
}
/* ===========================
Active Navigation
=========================== */
#mainMenu a.active{
color:var(--primary);
}
#mainMenu a.active::after{
width:100%;
}
/* ===========================
Sticky Header Effect
=========================== */
.site-header.scrolled{
box-shadow:0 10px 30px rgba(0,0,0,.12);
}
/* ===========================
Scroll Animation
=========================== */
.fade-up{
opacity:0;
transform:translateY(40px);
}
.fade-up.show{
opacity:1;
transform:translateY(0);
transition:all .7s ease;
}
/* ==========================================
Editorial Board
========================================== */
.editor-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
margin-top:50px;
}
.editor-card{
background:#fff;
padding:35px;
border-radius:12px;
box-shadow:var(--shadow);
text-align:center;
transition:.3s;
border:1px solid var(--border);
}
.editor-card:hover{
transform:translateY(-8px);
}
.editor-avatar{
width:90px;
height:90px;
margin:auto;
margin-bottom:20px;
border-radius:50%;
background:var(--primary);
display:flex;
align-items:center;
justify-content:center;
font-size:38px;
color:#fff;
}
.editor-card h3{
margin-bottom:10px;
color:var(--dark);
}
.editor-card h4{
color:var(--primary);
margin-bottom:20px;
font-size:16px;
font-weight:600;
}
.editor-card p{
margin-bottom:12px;
font-size:15px;
}
/* ======================================
Current Issue
====================================== */
.article-list{
display:grid;
grid-template-columns:1fr;
gap:25px;
}
.article-item{
background:#fff;
padding:30px;
border-radius:12px;
box-shadow:var(--shadow);
border-left:5px solid var(--primary);
transition:.3s;
}
.article-item:hover{
transform:translateY(-5px);
}
.article-item h3{
margin-bottom:15px;
color:var(--primary);
}
.article-item p{
margin-bottom:10px;
}
.article-item .btn{
margin-top:15px;
}
/* ==========================================
Archive
========================================== */
.archive-search{
max-width:500px;
margin:0 auto 50px;
}
.archive-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}
.archive-card{
background:#fff;
border-radius:12px;
overflow:hidden;
box-shadow:var(--shadow);
text-align:center;
transition:.3s;
border:1px solid var(--border);
}
.archive-card:hover{
transform:translateY(-8px);
}
.archive-card img{
width:100%;
height:320px;
object-fit:cover;
}
.archive-card h3{
margin-top:20px;
color:var(--primary);
}
.archive-card p{
margin-bottom:10px;
}
.archive-card .btn{
margin:20px;
}
/* ==========================================
Contact Page
========================================== */
.contact-wrapper{
display:grid;
grid-template-columns:1fr 1.5fr;
gap:40px;
align-items:start;
}
.contact-info{
display:flex;
flex-direction:column;
gap:20px;
}
.contact-box{
background:#fff;
padding:25px;
border-radius:12px;
box-shadow:var(--shadow);
border-left:5px solid var(--primary);
}
.contact-box h3{
margin-bottom:10px;
color:var(--primary);
}
.contact-form{
background:#fff;
padding:35px;
border-radius:12px;
box-shadow:var(--shadow);
}
.about-home h3 {
    color: var(--primary);
    margin-bottom: 0;
}
/*====================================
TOP HEADER
====================================*/
.top-header{
background:#0b3d91;
color:#fff;
font-size:14px;
}
.top-header .container{
display:flex;
justify-content:space-between;
align-items:center;
height:42px;
}
.top-left{
display:flex;
align-items:center;
gap:18px;
}
.top-left a{
color:#fff;
text-decoration:none;
transition:.3s;
}
.top-left a:hover{
color:#ffd54f;
}
.top-right{
display:flex;
align-items:center;
gap:8px;
}
.top-right a{
width:34px;
height:34px;
display:flex;
justify-content:center;
align-items:center;
border-radius:50%;
background:rgba(255,255,255,.12);
color:#fff;
transition:.3s;
text-decoration:none;
}
.top-right a:hover{
background:#fff;
color:#0b3d91;
transform:translateY(-2px);
}
/*===============================
Journals by Subject
================================*/
.subjects-section {
    padding: 20px 0;
    background: #ffffff;
}
.subjects-section h2 {
    font-size: 30px;
    font-weight: 700;
    color: #12365c;
    margin-bottom: 26px;
}

.subjects-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(130px,1fr));

gap:30px;

}

.subject-card{

text-align:center;

text-decoration:none;

transition:.35s;

}

.subject-card img{

object-fit:cover;

border:1px solid #d8d8d8;

border-radius:4px;

padding:3px;

background:#fff;

box-shadow:0 2px 6px rgba(0,0,0,.08);

transition:.35s;

}

.subject-card span{

display:block;

margin-top:12px;

font-size:15px;

line-height:1.5;

font-weight:500;

color:#21409a;

}

.subject-card:hover{

transform:translateY(-6px);

}

.subject-card:hover img{

box-shadow:0 10px 25px rgba(0,86,179,.20);

border-color:#0b6fd3;

}

.subject-card:hover span{

color:#0056b3;

}