/*=========================================
Google Fonts
=========================================*/

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/*=========================================
Root Colors
=========================================*/

:root{

    --primary:#5a0006;
    --secondary:#b8860b;
    --light:#f9f7f2;
    --white:#ffffff;
    --dark:#222;
    --text:#555;
    --border:#ececec;
    --shadow:0 15px 35px rgba(0,0,0,.08);
    --radius:10px;
    --transition:.35s;

}

/*=========================================
Reset
=========================================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    color:var(--text);
    background:#fafafa;
    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;
    padding:0;
    margin:0;

}

/*=========================================
Typography
=========================================*/

h1,h2,h3,h4,h5,h6{

    font-family:'Cinzel',serif;
    color:var(--primary);
    font-weight:700;

}

p{

    line-height:1.8;
    font-size:15px;

}

/*=========================================
Topbar
=========================================*/

.topbar{

    background:var(--primary);
    color:#fff;
    font-size:14px;
    padding:12px 0;

}

.topbar i{

    color:gold;
    margin-right:6px;

}

/*=========================================
Navbar
=========================================*/

.navbar{

    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
    position:sticky;
    top:0;
    z-index:999;

}

.navbar-brand h3{

    margin:0;
    color:var(--primary);

}

.navbar-brand small{

    display:block;
    color:#777;
    font-size:12px;

}

.navbar-nav .nav-link{

    color:#333;
    font-weight:500;
    margin-left:18px;
    transition:.3s;

}

.navbar-nav .nav-link:hover{

    color:var(--secondary);

}

.navbar-nav .active{

    color:var(--secondary)!important;

}

/*=========================================
Hero
=========================================*/

.hero{

    background:
    linear-gradient(rgba(90,0,6,.88),rgba(90,0,6,.88)),
    url('../images/banner.jpg');

    background-size:cover;
    background-position:center;

    color:#fff;

    padding:90px 0;

}

.hero h1{

    color:#fff;
    font-size:50px;
    line-height:1.3;

}

.hero h5{

    color:gold;
    margin:25px 0;

}

.hero p{

    color:#ddd;
    margin-bottom:35px;

}

.hero img{

    border-radius:12px;
    box-shadow:0 30px 70px rgba(0,0,0,.35);

}

/*=========================================
Buttons
=========================================*/

.btn{

    padding:12px 30px;
    border-radius:40px;
    font-weight:600;
    transition:.35s;

}

.btn-primary{

    background:var(--secondary);
    border:none;
    color:#fff;

}

.btn-primary:hover{

    background:var(--primary);
    transform:translateY(-3px);

}

.btn-outline-light{

    border:2px solid #fff;

}

.btn-outline-light:hover{

    background:#fff;
    color:var(--primary);

}

/*=========================================
Common Section
=========================================*/

.section{

    padding:90px 0;

}

.section-title{

    text-align:center;
    margin-bottom:60px;

}

.section-title h2{

    font-size:38px;
    position:relative;
    display:inline-block;

}

.section-title h2::after{

    content:"";
    width:80px;
    height:4px;
    background:var(--secondary);
    display:block;
    margin:15px auto 0;

}

/*=========================================
Info Boxes
=========================================*/

.journal-info{

    margin-top:-45px;
    position:relative;
    z-index:5;

}

.info-box{

    background:#fff;
    border-radius:12px;
    box-shadow:var(--shadow);
    padding:35px 25px;
    text-align:center;
    transition:.35s;

}

.info-box:hover{

    transform:translateY(-10px);

}

.info-box h5{

    color:#888;
    font-size:16px;

}

.info-box h3{

    color:var(--secondary);
    margin-top:10px;

}

/*=========================================
About
=========================================*/

.about img{

    border-radius:12px;
    box-shadow:var(--shadow);

}

.about h2{

    margin-bottom:25px;

}

.about p{

    margin-bottom:25px;

}

/*=========================================
Issue Card
=========================================*/

.issue-card{

    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:var(--shadow);
    transition:.35s;

}

.issue-card:hover{

    transform:translateY(-10px);

}

.issue-card img{

    border-radius:10px;
    margin-bottom:20px;

}

.issue-card h4{

    margin-bottom:10px;

}

/*=========================================
Editorial Team
=========================================*/

.member{

    background:#fff;
    border-radius:12px;
    padding:35px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:.35s;

}

.member:hover{

    transform:translateY(-8px);

}

.member h4{

    color:var(--primary);

}

.member p{

    color:var(--secondary);
    font-weight:600;

}


/*=========================================
Call For Papers
=========================================*/

.cta{

    background:linear-gradient(rgba(90,0,6,.94),rgba(90,0,6,.94)),
    url('../images/cta-bg.jpg');

    background-size:cover;
    background-position:center;

    padding:90px 0;
    text-align:center;
    color:#fff;

}

.cta h2{

    color:#fff;
    font-size:42px;
    margin-bottom:20px;

}

.cta p{

    color:#ddd;
    max-width:700px;
    margin:auto;
    margin-bottom:35px;

}

.cta .btn{

    background:gold;
    color:var(--primary);
    border:none;

}

.cta .btn:hover{

    background:#fff;
    transform:translateY(-4px);

}

/*=========================================
Statistics
=========================================*/

.stats{

    padding:80px 0;
    background:#ffffff;

}

.stat-box{

    text-align:center;
    padding:35px 20px;
    border-radius:12px;
    background:#fff;
    box-shadow:var(--shadow);
    transition:.35s;

}

.stat-box:hover{

    transform:translateY(-8px);

}

.stat-box i{

    font-size:45px;
    color:var(--secondary);
    margin-bottom:18px;

}

.stat-box h2{

    color:var(--primary);
    margin-bottom:10px;

}

.stat-box p{

    margin:0;
    color:#777;

}

/*=========================================
Latest Articles
=========================================*/

.article-card{

    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:.35s;
    height:100%;

}

.article-card:hover{

    transform:translateY(-8px);

}

.article-card img{

    width:100%;
    height:220px;
    object-fit:cover;

}

.article-content{

    padding:25px;

}

.article-content span{

    color:var(--secondary);
    font-size:13px;
    font-weight:600;

}

.article-content h4{

    margin:15px 0;
    font-size:22px;

}

.article-content p{

    margin-bottom:20px;

}

.article-content a{

    color:var(--primary);
    font-weight:600;

}

/*=========================================
Editorial Message
=========================================*/

.editorial{

    padding:90px 0;
    background:var(--light);

}

.editorial-box{

    background:#fff;
    border-left:6px solid var(--secondary);
    padding:40px;
    border-radius:10px;
    box-shadow:var(--shadow);

}

.editorial-box h3{

    margin-bottom:20px;

}

.editorial-box p{

    text-align:justify;

}

/*=========================================
Submission Process
=========================================*/

.process{

    padding:90px 0;

}

.process-box{

    position:relative;
    background:#fff;
    border-radius:12px;
    padding:35px;
    box-shadow:var(--shadow);
    text-align:center;
    transition:.35s;

}

.process-box:hover{

    transform:translateY(-8px);

}

.process-number{

    width:65px;
    height:65px;
    line-height:65px;
    border-radius:50%;
    margin:auto;
    margin-bottom:20px;

    background:var(--secondary);
    color:#fff;
    font-size:24px;
    font-weight:bold;

}

.process-box h4{

    margin-bottom:15px;

}

/*=========================================
Download Box
=========================================*/

.download-box{

    background:var(--primary);
    color:#fff;
    border-radius:12px;
    padding:35px;
    text-align:center;

}

.download-box h3{

    color:#fff;
    margin-bottom:20px;

}

.download-box .btn{

    background:gold;
    color:var(--primary);

}

/*=========================================
Notice Box
=========================================*/

.notice-box{

    background:#fff;
    border-left:5px solid var(--secondary);
    padding:30px;
    border-radius:10px;
    box-shadow:var(--shadow);

}

.notice-box ul{

    margin-top:15px;

}

.notice-box li{

    padding:12px 0;
    border-bottom:1px solid #eee;

}

.notice-box li:last-child{

    border-bottom:none;

}

/*=========================================
Gallery
=========================================*/

.gallery-item{

    overflow:hidden;
    border-radius:10px;
    margin-bottom:25px;

}

.gallery-item img{

    transition:.4s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

/*=========================================
Partners
=========================================*/

.partner{

    padding:30px;
    text-align:center;
    border:1px solid #eee;
    border-radius:10px;
    transition:.35s;

}

.partner:hover{

    box-shadow:var(--shadow);

}

.partner img{

    max-height:70px;
    margin:auto;

}

/*=========================================
Newsletter
=========================================*/

.newsletter{

    background:var(--secondary);
    padding:70px 0;

}

.newsletter h2{

    color:#fff;

}

.newsletter input{

    height:55px;
    border:none;
    border-radius:40px;
    padding:0 25px;

}

.newsletter button{

    height:55px;
    border:none;
    border-radius:40px;
    background:var(--primary);
    color:#fff;
    padding:0 35px;
    transition:.35s;

}

.newsletter button:hover{

    background:#222;

}

/*=========================================
Back To Top
=========================================*/

.back-top{

    position:fixed;
    right:25px;
    bottom:25px;

    width:50px;
    height:50px;

    border-radius:50%;

    background:var(--secondary);

    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    text-decoration:none;

    box-shadow:0 10px 30px rgba(0,0,0,.2);

    transition:.35s;

    z-index:999;

}

.back-top:hover{

    background:var(--primary);
    color:#fff;
    transform:translateY(-5px);

}

/*=========================================
FOOTER
=========================================*/

footer{

    background:#1d1d1d;
    color:#cfcfcf;
    padding:70px 0 20px;

}

footer h4{

    color:#ffffff;
    margin-bottom:25px;
    font-size:22px;

}

footer p{

    color:#bfbfbf;
    line-height:1.9;

}

footer ul{

    padding:0;

}

footer ul li{

    margin-bottom:12px;

}

footer ul li a{

    color:#cfcfcf;
    transition:.3s;

}

footer ul li a:hover{

    color:var(--secondary);
    padding-left:8px;

}

footer hr{

    border-color:rgba(255,255,255,.08);
    margin:35px 0 20px;

}

footer .copyright{

    text-align:center;
    color:#9b9b9b;
    font-size:14px;

}

/*=========================================
SOCIAL ICONS
=========================================*/

.social-icons{

    display:flex;
    gap:12px;
    margin-top:20px;

}

.social-icons a{

    width:45px;
    height:45px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;
    background:rgba(255,255,255,.08);

    color:#fff;

    transition:.35s;

}

.social-icons a:hover{

    background:var(--secondary);

    color:#fff;

    transform:translateY(-5px);

}

/*=========================================
CONTACT BOX
=========================================*/

.contact-box{

    background:#fff;

    border-radius:12px;

    padding:35px;

    box-shadow:var(--shadow);

    transition:.35s;

    height:100%;

}

.contact-box:hover{

    transform:translateY(-8px);

}

.contact-box i{

    width:65px;
    height:65px;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    background:var(--secondary);

    color:#fff;

    font-size:24px;

    margin-bottom:20px;

}

/*=========================================
TABLE STYLE
=========================================*/

table{

    width:100%;

    border-collapse:collapse;

}

table th{

    background:var(--primary);

    color:#fff;

    padding:14px;

}

table td{

    padding:14px;

    border:1px solid #eee;

}

table tr:nth-child(even){

    background:#fafafa;

}

/*=========================================
FORM
=========================================*/

.form-control{

    height:55px;

    border-radius:8px;

    border:1px solid #ddd;

    box-shadow:none;

}

textarea.form-control{

    height:160px;

}

.form-control:focus{

    border-color:var(--secondary);

    box-shadow:0 0 0 .2rem rgba(184,134,11,.18);

}

/*=========================================
BADGE
=========================================*/

.badge-journal{

    display:inline-block;

    background:var(--secondary);

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    letter-spacing:.5px;

}

/*=========================================
BREADCRUMB
=========================================*/

.page-banner{

    background:linear-gradient(rgba(90,0,6,.88),rgba(90,0,6,.88)),
    url('../images/banner.jpg');

    background-size:cover;

    padding:90px 0;

    text-align:center;

    color:#fff;

}

.page-banner h1{

    color:#fff;

}

.breadcrumb{

    justify-content:center;

    background:none;

    margin-top:15px;

}

.breadcrumb a{

    color:gold;

}

/*=========================================
ANIMATION
=========================================*/

.fade-up{

    animation:fadeUp .8s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.zoom{

    animation:zoom .8s;

}

@keyframes zoom{

    from{

        transform:scale(.8);

        opacity:0;

    }

    to{

        transform:scale(1);

        opacity:1;

    }

}

/*=========================================
HOVER EFFECT
=========================================*/

.hover-shadow{

    transition:.35s;

}

.hover-shadow:hover{

    box-shadow:0 25px 45px rgba(0,0,0,.15);

}

/*=========================================
CUSTOM SCROLLBAR
=========================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#efefef;

}

::-webkit-scrollbar-thumb{

    background:var(--secondary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary);

}

/*=========================================
TEXT SELECTION
=========================================*/

::selection{

    background:var(--secondary);

    color:#fff;

}

/*=========================================
UTILITY CLASSES
=========================================*/

.bg-primary-custom{

    background:var(--primary)!important;

}

.bg-light-custom{

    background:var(--light)!important;

}

.text-primary-custom{

    color:var(--primary)!important;

}

.text-secondary-custom{

    color:var(--secondary)!important;

}

.rounded-15{

    border-radius:15px;

}

.shadow-custom{

    box-shadow:var(--shadow);

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px){

.hero{

    text-align:center;

    padding:70px 0;

}

.hero h1{

    font-size:36px;

}

.hero img{

    margin-top:40px;

}

.navbar-brand small{

    display:none;

}

.section{

    padding:70px 0;

}

.section-title h2{

    font-size:30px;

}

.info-box{

    margin-bottom:25px;

}

.member{

    margin-bottom:25px;

}

.issue-card{

    margin-bottom:30px;

}

}

@media(max-width:768px){

.hero h1{

    font-size:30px;

}

.hero h5{

    font-size:18px;

}

.section-title h2{

    font-size:28px;

}

.cta h2{

    font-size:30px;

}

.newsletter input{

    margin-bottom:15px;

}

footer{

    text-align:center;

}

.social-icons{

    justify-content:center;

}

}

@media(max-width:576px){

.hero{

    padding:60px 0;

}

.hero h1{

    font-size:26px;

}

.btn{

    width:100%;

    margin-bottom:15px;

}

.topbar{

    text-align:center;

}

.topbar .text-lg-end{

    margin-top:10px;

}

.contact-box{

    margin-bottom:25px;

}

}


.editor-chief-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.editor-chief-card img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border: 6px solid var(--secondary);
}

.board-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: .35s;
    height: 100%;
    border-top: 4px solid var(--secondary);
}

.board-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

.board-card h4 {
    color: var(--primary);
    margin-bottom: 15px;
}

.board-card p {
    color: #666;
    margin-bottom: 0;
}

.archive-card {

    background: #fff;

    border-radius: 15px;

    overflow: hidden;

    box-shadow: var(--shadow);

    transition: .35s;

    height: 100%;

}

.archive-card:hover {

    transform: translateY(-10px);

}

.archive-cover img {

    height: 350px;

    width: 100%;

    object-fit: cover;

}

.archive-content {

    padding: 25px;

}

.archive-content ul {

    margin: 20px 0;

    padding: 0;

}

.archive-content ul li {

    list-style: none;

    padding: 8px 0;

    color: #666;

}

.archive-content ul li i {

    color: var(--secondary);

    margin-right: 10px;

}

.timeline {

    position: relative;

    margin-top: 50px;

}

.timeline::before {

    content: "";

    position: absolute;

    left: 50%;

    top: 0;

    bottom: 0;

    width: 4px;

    background: var(--secondary);

}

.timeline-item {

    display: flex;

    margin-bottom: 60px;

    align-items: center;

}

.timeline-year {

    width: 120px;

    height: 120px;

    background: var(--primary);

    border-radius: 50%;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 26px;

    font-weight: bold;

    z-index: 5;

}

.timeline-content {

    margin-left: 40px;

    background: #fff;

    padding: 25px;

    border-radius: 12px;

    box-shadow: var(--shadow);

    flex: 1;

}

/*=============================
Archive Top
=============================*/

.archive-top {

    padding: 40px 0;
    background: #fafafa;

}

.archive-search {

    display: flex;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);

}

.archive-search input {

    flex: 1;
    height: 55px;
    border: none;
    padding: 0 20px;
    outline: none;

}

.archive-search button {

    width: 70px;
    border: none;
    background: var(--secondary);
    color: #fff;

}

.archive-select {

    height: 55px;
    padding: 0 20px;
    border-radius: 50px;
    border: 1px solid #ddd;

}

/*=============================
Year
=============================*/

.archive-year {

    margin-bottom: 35px;

}

.archive-year h3 {

    display: inline-block;

    padding: 10px 25px;

    background: var(--primary);

    color: #fff;

    border-radius: 30px;

    font-size: 22px;

}

/*=============================
Archive Item
=============================*/

.archive-item {

    background: #fff;

    padding: 25px;

    border-radius: 15px;

    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);

    transition: .3s;

    height: 100%;

    border-left: 5px solid var(--secondary);

}

.archive-item:hover {

    transform: translateY(-6px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);

}

.issue-no {

    display: inline-block;

    padding: 6px 15px;

    background: #f5f5f5;

    border-radius: 30px;

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 15px;

}

.archive-item h4 {

    margin-bottom: 20px;

    color: var(--primary);

}

.archive-meta {

    display: flex;

    justify-content: space-between;

    margin-bottom: 20px;

    font-size: 14px;

    color: #666;

}

.archive-meta span {

    display: flex;

    align-items: center;

    gap: 6px;

}

.archive-btn {

    display: flex;

    gap: 10px;

}

.archive-btn .btn {

    flex: 1;

    border-radius: 8px;

}

/*=========================================
END OF FILE
=========================================*/


/*=========================================
AUTHOR PAGE
=========================================*/

.author-badge{

    display:inline-block;

    padding:7px 18px;

    background:rgba(255,255,255,.15);

    border:1px solid rgba(255,255,255,.3);

    border-radius:30px;

    color:#fff;

    font-size:13px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:15px;

}


/*=========================================
AUTHOR ACTIONS
=========================================*/

.author-actions{

    padding:25px 0;

    background:#fff;

    border-bottom:1px solid #eee;

}

.author-action-card{

    display:flex;

    align-items:center;

    gap:15px;

    padding:18px 20px;

    background:#fff;

    border:1px solid #eee;

    border-radius:10px;

    color:var(--primary);

    font-weight:600;

    transition:.3s;

}

.author-action-card i{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#f7f1e3;

    color:var(--secondary);

    border-radius:50%;

}

.author-action-card:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-4px);

    box-shadow:var(--shadow);

}


/*=========================================
AUTHOR HIGHLIGHT
=========================================*/

.author-highlight{

    padding:40px;

    background:var(--primary);

    color:#fff;

    border-radius:15px;

    position:relative;

    overflow:hidden;

}

.author-highlight::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    right:-60px;

    top:-60px;

}

.highlight-icon{

    width:65px;

    height:65px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--secondary);

    border-radius:50%;

    font-size:25px;

    margin-bottom:20px;

}

.author-highlight h4{

    color:#fff;

}

.author-highlight p{

    color:#ddd;

    margin-bottom:0;

}


/*=========================================
MANUSCRIPT TYPES
=========================================*/

.author-type-card{

    background:#fff;

    padding:30px;

    border-radius:12px;

    height:100%;

    box-shadow:0 8px 25px rgba(0,0,0,.06);

    border-top:4px solid var(--secondary);

    transition:.3s;

}

.author-type-card:hover{

    transform:translateY(-7px);

    box-shadow:var(--shadow);

}

.author-type-card > i{

    font-size:35px;

    color:var(--secondary);

    margin-bottom:20px;

}

.author-type-card h4{

    font-size:21px;

}


/*=========================================
GUIDELINES
=========================================*/

.guideline-list{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.guideline-item{

    display:flex;

    gap:20px;

    background:#fff;

    padding:22px;

    border-radius:10px;

    border:1px solid #eee;

    transition:.3s;

}

.guideline-item:hover{

    border-color:var(--secondary);

    box-shadow:0 10px 25px rgba(0,0,0,.06);

}

.guideline-number{

    min-width:55px;

    height:55px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--primary);

    color:#fff;

    border-radius:50%;

    font-weight:700;

}

.guideline-item h4{

    margin-bottom:8px;

    font-size:19px;

}

.guideline-item p{

    margin:0;

}


/*=========================================
SIDEBAR
=========================================*/

.author-sidebar{

    background:var(--primary);

    color:#fff;

    padding:30px;

    border-radius:12px;

    position:sticky;

    top:100px;

}

.author-sidebar h4{

    color:#fff;

    margin-bottom:25px;

}

.author-sidebar ul{

    padding:0;

    margin:0;

}

.author-sidebar li{

    display:flex;

    gap:10px;

    padding:12px 0;

    border-bottom:1px solid rgba(255,255,255,.15);

    color:#ddd;

}

.author-sidebar li:last-child{

    border-bottom:none;

}

.author-sidebar li i{

    color:var(--secondary);

    margin-top:5px;

}


/*=========================================
SUBMISSION STEPS
=========================================*/

.submission-step{

    background:#fff;

    padding:30px 25px;

    text-align:center;

    border-radius:12px;

    height:100%;

    box-shadow:0 8px 25px rgba(0,0,0,.06);

    transition:.3s;

}

.submission-step:hover{

    transform:translateY(-7px);

    box-shadow:var(--shadow);

}

.step-icon{

    width:65px;

    height:65px;

    margin:0 auto 20px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--primary);

    color:#fff;

    border-radius:50%;

    font-weight:700;

    font-size:18px;

}


/*=========================================
SUBMIT CTA
=========================================*/

.author-submit{

    padding:60px 0;

    background:var(--secondary);

}

.author-submit h2{

    color:#fff;

    margin-bottom:10px;

}

.author-submit p{

    color:#fff;

    margin:0;

}


/*=========================================
DOWNLOAD CARD
=========================================*/

.download-card{

    display:flex;

    align-items:center;

    gap:18px;

    padding:22px;

    background:#fff;

    border:1px solid #eee;

    border-radius:12px;

    color:#333;

    transition:.3s;

}

.download-card > i:first-child{

    font-size:35px;

    color:var(--primary);

}

.download-card h5{

    margin:0 0 5px;

    font-family:'Poppins',sans-serif;

    color:var(--primary);

}

.download-card span{

    color:#777;

    font-size:13px;

}

.download-card .download-icon{

    margin-left:auto;

    font-size:18px;

    color:var(--secondary);

}

.download-card:hover{

    transform:translateY(-5px);

    box-shadow:var(--shadow);

    border-color:var(--secondary);

}


/*=========================================
ACCORDION
=========================================*/

.accordion-item{

    border:1px solid #eee;

    margin-bottom:10px;

    border-radius:8px!important;

    overflow:hidden;

}

.accordion-button{

    font-weight:600;

    color:var(--primary);

    padding:20px;

}

.accordion-button:not(.collapsed){

    background:#f7f1e3;

    color:var(--primary);

    box-shadow:none;

}

.accordion-button:focus{

    box-shadow:none;

    border-color:transparent;

}


/*=========================================
MOBILE
=========================================*/

@media(max-width:991px){

    .author-sidebar{

        position:static;

        margin-top:30px;

    }

    .author-submit{

        text-align:center;

    }

    .author-submit .btn{

        margin-top:20px;

    }

}


@media(max-width:576px){

    .guideline-item{

        flex-direction:column;

    }

    .guideline-number{

        min-width:50px;

        width:50px;

    }

    .author-highlight{

        padding:30px;

    }

    .download-card{

        padding:18px;

    }

}


/* =========================================
SUBMISSION PROGRESS
========================================= */

.submission-progress{

    background:#fff;

    padding:25px 0;

    border-bottom:1px solid #eee;

}

.submission-step-bar{

    display:flex;

    align-items:center;

    justify-content:center;

}

.submission-progress-item{

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:8px;

    min-width:110px;

    color:#999;

}

.submission-progress-item span{

    width:45px;

    height:45px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#f1f1f1;

    font-weight:700;

}

.submission-progress-item small{

    font-weight:600;

}

.submission-progress-item.active{

    color:var(--primary);

}

.submission-progress-item.active span{

    background:var(--primary);

    color:#fff;

}

.submission-progress-line{

    height:2px;

    width:100px;

    background:#ddd;

    margin:0 10px;

}


/* =========================================
SUBMISSION CARD
========================================= */

.submission-card{

    background:#fff;

    padding:30px;

    border-radius:12px;

    border:1px solid #eee;

    margin-bottom:25px;

    box-shadow:0 6px 20px rgba(0,0,0,.04);

}

.submission-card-header{

    display:flex;

    align-items:center;

    gap:15px;

    padding-bottom:20px;

    margin-bottom:25px;

    border-bottom:1px solid #eee;

}

.submission-card-header h3{

    margin:0 0 5px;

    font-size:21px;

    color:var(--primary);

}

.submission-card-header p{

    margin:0;

    color:#777;

    font-size:14px;

}

.form-section-icon{

    width:50px;

    height:50px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#f7f1e3;

    color:var(--secondary);

    border-radius:10px;

    font-size:20px;

}


/* =========================================
FORM
========================================= */

.submission-card label{

    display:block;

    font-weight:600;

    color:#333;

    margin-bottom:8px;

    font-size:14px;

}

.submission-card label span{

    color:#b00000;

}

.submission-card .form-control,
.submission-card .form-select{

    min-height:48px;

    border:1px solid #ddd;

    border-radius:7px;

    padding:10px 15px;

}

.submission-card textarea.form-control{

    min-height:120px;

    resize:vertical;

}

.submission-card .form-control:focus,
.submission-card .form-select:focus{

    border-color:var(--secondary);

    box-shadow:0 0 0 3px rgba(184,134,11,.1);

}

.form-help,
.character-count{

    color:#888;

    font-size:12px;

    margin-top:6px;

}


/* =========================================
CO AUTHOR
========================================= */

.co-author-row{

    padding:20px;

    background:#fafafa;

    border:1px solid #eee;

    border-radius:8px;

    margin-bottom:15px;

}

.add-author{

    margin-top:5px;

}

.remove-author{

    width:45px;

    height:45px;

    border:none;

    background:#fceaea;

    color:#b00000;

    border-radius:7px;

}

.remove-author:hover{

    background:#b00000;

    color:#fff;

}


/* =========================================
UPLOAD
========================================= */

.upload-box{

    text-align:center;

    padding:40px 25px;

    border:2px dashed #ddd;

    border-radius:12px;

    background:#fafafa;

}

.upload-box > i{

    font-size:45px;

    color:var(--secondary);

    margin-bottom:15px;

}

.upload-box h4{

    color:var(--primary);

}

.upload-box p{

    color:#777;

}

.upload-box small{

    display:block;

    color:#999;

    margin-top:15px;

}

.upload-button{

    display:inline-flex!important;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    background:var(--primary);

    color:#fff!important;

    border-radius:7px;

    cursor:pointer;

    margin:10px 0!important;

}

.upload-button input{

    display:none;

}

.selected-file{

    color:var(--primary);

    font-weight:600;

    margin-top:10px;

}


/* =========================================
DECLARATION
========================================= */

.declaration-list{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.declaration-item{

    display:flex!important;

    align-items:flex-start;

    gap:12px;

    padding:15px;

    background:#fafafa;

    border:1px solid #eee;

    border-radius:7px;

    cursor:pointer;

}

.declaration-item input{

    width:18px;

    height:18px;

    margin-top:2px;

    accent-color:var(--primary);

}

.declaration-item span{

    color:#555;

    font-weight:400!important;

}


/* =========================================
SUBMIT BUTTON
========================================= */

.submit-area{

    text-align:right;

}

.submit-manuscript{

    padding:14px 30px;

    border-radius:7px;

    font-weight:600;

}


/* =========================================
SIDEBAR
========================================= */

.submission-sidebar{

    position:sticky;

    top:100px;

}

.sidebar-box{

    background:#fff;

    border:1px solid #eee;

    padding:25px;

    border-radius:12px;

    margin-bottom:20px;

    box-shadow:0 6px 20px rgba(0,0,0,.04);

}

.sidebar-box h4{

    color:var(--primary);

    margin-bottom:12px;

    font-size:19px;

}

.sidebar-box p{

    color:#777;

    font-size:14px;

    line-height:1.7;

}

.sidebar-icon{

    width:50px;

    height:50px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#f7f1e3;

    color:var(--secondary);

    border-radius:50%;

    font-size:20px;

    margin-bottom:15px;

}


/* =========================================
MINI PROCESS
========================================= */

.mini-process > div{

    display:flex;

    align-items:center;

    gap:15px;

    padding:12px 0;

    border-bottom:1px solid #eee;

}

.mini-process > div:last-child{

    border-bottom:none;

}

.mini-process span{

    width:35px;

    height:35px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--primary);

    color:#fff;

    border-radius:50%;

    font-size:12px;

    font-weight:700;

}

.mini-process p{

    margin:0;

    color:#555;

    font-weight:600;

}


/* =========================================
CONTACT
========================================= */

.contact-box{

    background:var(--primary);

    color:#fff;

}

.contact-box h4{

    color:#fff;

}

.contact-box p{

    color:#ddd;

}

.contact-box a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#fff;

    font-weight:600;

}


/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px){

    .submission-sidebar{

        position:static;

    }

}

@media(max-width:767px){

    .submission-step-line{

        width:30px;

    }

    .submission-progress-item{

        min-width:60px;

    }

    .submission-progress-item small{

        font-size:10px;

    }

    .submission-progress-line{

        width:30px;

        margin:0 5px;

    }

    .submission-card{

        padding:20px;

    }

    .submit-area{

        text-align:center;

    }

}

@media(max-width:576px){

    .submission-progress-item span{

        width:38px;

        height:38px;

        font-size:12px;

    }

    .submission-progress-item small{

        display:none;

    }

    .submission-progress-line{

        width:25px;

    }

}



/* =========================================
CONTACT PAGE
========================================= */

.contact-badge{

    display:inline-block;

    padding:7px 18px;

    background:rgba(255,255,255,.15);

    border:1px solid rgba(255,255,255,.3);

    border-radius:30px;

    color:#fff;

    font-size:13px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:15px;

}


/* =========================================
CONTACT INFO
========================================= */

.contact-info-section{

    padding:35px 0;

    background:#fff;

    border-bottom:1px solid #eee;

}

.contact-info-card{

    display:flex;

    align-items:flex-start;

    gap:18px;

    padding:25px;

    height:100%;

    background:#fff;

    border:1px solid #eee;

    border-radius:12px;

    transition:.3s;

}

.contact-info-card:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    border-color:var(--secondary);

}

.contact-info-icon{

    min-width:52px;

    width:52px;

    height:52px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#f7f1e3;

    color:var(--secondary);

    border-radius:10px;

    font-size:20px;

}

.contact-info-card h4{

    margin:0 0 8px;

    color:var(--primary);

    font-size:18px;

}

.contact-info-card p{

    margin:0 0 10px;

    color:#777;

    font-size:14px;

}

.contact-info-card a{

    color:var(--primary);

    font-size:13px;

    font-weight:600;

    text-decoration:none;

}

.contact-info-card a i{

    margin-left:5px;

    transition:.3s;

}

.contact-info-card a:hover i{

    margin-left:10px;

}


/* =========================================
CONTACT FORM
========================================= */

.contact-form-card{

    background:#fff;

    padding:35px;

    border:1px solid #eee;

    border-radius:15px;

    box-shadow:0 8px 30px rgba(0,0,0,.05);

}

.contact-heading{

    margin-bottom:30px;

}

.contact-heading > span{

    color:var(--secondary);

    font-size:13px;

    font-weight:700;

    letter-spacing:1.5px;

}

.contact-heading h2{

    margin:10px 0;

    color:var(--primary);

}

.contact-heading p{

    color:#777;

    margin:0;

}

.contact-form-card label{

    display:block;

    margin-bottom:8px;

    font-size:14px;

    font-weight:600;

    color:#333;

}

.contact-form-card label > span{

    color:#b00000;

}

.contact-form-card label small{

    color:#999;

    font-weight:400;

}

.contact-form-card .form-control,
.contact-form-card .form-select{

    min-height:48px;

    padding:10px 15px;

    border:1px solid #ddd;

    border-radius:7px;

}

.contact-form-card textarea.form-control{

    min-height:150px;

    resize:vertical;

}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus{

    border-color:var(--secondary);

    box-shadow:0 0 0 3px rgba(184,134,11,.1);

}

.contact-checkbox{

    display:flex!important;

    align-items:flex-start;

    gap:10px;

    cursor:pointer;

    font-weight:400!important;

}

.contact-checkbox input{

    width:18px;

    height:18px;

    margin-top:2px;

    accent-color:var(--primary);

}

.contact-checkbox span{

    color:#666!important;

    font-weight:400!important;

}

.contact-submit{

    padding:13px 28px;

    font-weight:600;

    border-radius:7px;

}


/* =========================================
SIDE CARD
========================================= */

.contact-side-card{

    padding:30px;

    background:var(--primary);

    color:#fff;

    border-radius:15px;

    margin-bottom:25px;

}

.side-card-icon{

    width:55px;

    height:55px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--secondary);

    color:#fff;

    border-radius:10px;

    font-size:22px;

    margin-bottom:20px;

}

.contact-side-card h3{

    color:#fff;

    margin-bottom:12px;

}

.contact-side-card p{

    color:#ddd;

    line-height:1.7;

    font-size:14px;

}

.contact-side-card ul{

    list-style:none;

    padding:0;

    margin:25px 0 0;

}

.contact-side-card li{

    display:flex;

    gap:15px;

    padding:15px 0;

    border-top:1px solid rgba(255,255,255,.15);

}

.contact-side-card li > i{

    color:var(--secondary);

    margin-top:4px;

}

.contact-side-card li div{

    display:flex;

    flex-direction:column;

    gap:4px;

}

.contact-side-card li strong{

    color:#fff;

    font-size:13px;

}

.contact-side-card li span{

    color:#ddd;

    font-size:13px;

}


/* =========================================
QUICK LINKS
========================================= */

.contact-quick-links{

    background:#fff;

    border:1px solid #eee;

    border-radius:15px;

    padding:25px;

}

.contact-quick-links h4{

    color:var(--primary);

    margin-bottom:15px;

}

.contact-quick-links a{

    display:flex;

    align-items:center;

    gap:12px;

    padding:14px 0;

    color:#555;

    text-decoration:none;

    border-bottom:1px solid #eee;

    font-size:14px;

    font-weight:600;

}

.contact-quick-links a:last-child{

    border-bottom:none;

}

.contact-quick-links a > i:first-child{

    color:var(--secondary);

    width:20px;

}

.contact-quick-links a > i:last-child{

    margin-left:auto;

    font-size:12px;

    transition:.3s;

}

.contact-quick-links a:hover{

    color:var(--primary);

}

.contact-quick-links a:hover > i:last-child{

    transform:translateX(5px);

}


/* =========================================
LOCATION
========================================= */

.contact-location{

    background:#fafafa;

}

.map-container{

    min-height:350px;

    background:#eee;

    border-radius:15px;

    overflow:hidden;

}

.map-container iframe{

    width:100%;

    height:350px;

    border:0;

}

.map-placeholder{

    min-height:350px;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

    color:#777;

}

.map-placeholder i{

    font-size:45px;

    color:var(--secondary);

    margin-bottom:15px;

}

.map-placeholder h4{

    color:var(--primary);

}


/* =========================================
CTA
========================================= */

.contact-cta{

    padding:55px 0;

    background:var(--secondary);

}

.contact-cta h2{

    color:#fff;

    margin-bottom:10px;

}

.contact-cta p{

    color:#fff;

    margin:0;

}


/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px){

    .contact-form-card{

        padding:25px;

    }

}

@media(max-width:767px){

    .contact-info-section{

        padding:25px 0;

    }

    .contact-form-card{

        padding:20px;

    }

    .contact-cta{

        text-align:center;

    }

    .contact-cta .btn{

        margin-top:20px;

    }

}

@media(max-width:576px){

    .contact-info-card{

        padding:20px;

    }

    .contact-side-card{

        padding:25px;

    }

}