/*====================================================
JOURNAL HERO
====================================================*/

.journal-hero{
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(rgba(7,35,71,.72), rgba(7,35,71,.72)),
        url("../images/journals/journal-banner.jpg") center center/cover no-repeat;
}

/* Decorative Shapes */

.journal-hero::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    top:-180px;
    right:-150px;
}

.journal-hero::after{
    content:"";
    position:absolute;
    width:380px;
    height:380px;
    border-radius:50%;
    background:rgba(255,255,255,.04);
    bottom:-180px;
    left:-150px;
}

/*=====================================
Overlay
======================================*/

.journal-hero .overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,33,71,.65),
        rgba(0,87,184,.45)
    );
}

/*=====================================
Content
======================================*/

.journal-hero .hero-inner{
    position:relative;
    z-index:2;
    max-width:760px;
    color:#fff;
}

/* Small Label */

.journal-hero span{
    display:inline-block;
    padding:8px 18px;
    margin-bottom:22px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.18);

    backdrop-filter:blur(12px);

    border-radius:50px;

    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

/* Heading */

.journal-hero h1{
    font-size:58px;
    line-height:1.15;
    font-weight:800;
    margin-bottom:25px;
    color:#ffffff;
}

/* Paragraph */

.journal-hero p{
    font-size:19px;
    line-height:1.9;
    color:rgba(255,255,255,.90);
    margin-bottom:40px;
    max-width:650px;
}

/* Button */

.journal-hero .btn-primary{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 34px;
    font-size:16px;
}

.journal-hero .btn-primary::after{
    content:"→";
    transition:.3s ease;
}

.journal-hero .btn-primary:hover::after{
    transform:translateX(6px);
}

/*=====================================
Animation
======================================*/

.journal-hero .hero-inner{
    animation:fadeHero .9s ease;
}

@keyframes fadeHero{

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/*=====================================
Responsive
======================================*/

@media(max-width:992px){

    .journal-hero{
        min-height:480px;
    }

    .journal-hero h1{
        font-size:46px;
    }

    .journal-hero p{
        font-size:17px;
    }

}

@media(max-width:768px){

    .journal-hero{
        min-height:420px;
        text-align:center;
    }

    .journal-hero .hero-inner{
        max-width:100%;
    }

    .journal-hero h1{
        font-size:34px;
    }

    .journal-hero p{
        font-size:16px;
    }

}

@media(max-width:576px){

    .journal-hero{
        min-height:380px;
    }

    .journal-hero h1{
        font-size:30px;
    }

    .journal-hero span{
        font-size:12px;
        padding:7px 14px;
    }

    .journal-hero .btn-primary{
        width:100%;
        justify-content:center;
    }

}
/*====================================================
BREADCRUMB
====================================================*/

.breadcrumb-area{
    background:#F8FAFC;
    border-bottom:1px solid #E5EAF2;
    padding:18px 0;
    position:relative;
    z-index:5;
}

.breadcrumb-area .container{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:12px;
}

/* Home Link */

.breadcrumb-area a{
    color:var(--primary);
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    transition:.3s ease;
}

.breadcrumb-area a:hover{
    color:var(--secondary);
}

/* Separator */

.breadcrumb-area i{
    font-size:12px;
    color:#98A2B3;
}

/* Current Page */

.breadcrumb-area span{
    color:#667085;
    font-size:15px;
    font-weight:500;
}

/*=====================================
Responsive
======================================*/

@media(max-width:768px){

    .breadcrumb-area{
        padding:15px 0;
    }

    .breadcrumb-area .container{
        gap:8px;
    }

    .breadcrumb-area a,
    .breadcrumb-area span{
        font-size:14px;
    }

}

/*====================================================
JOURNAL SEARCH
====================================================*/

.journal-search{
    padding:90px 0;
    background:linear-gradient(180deg,#ffffff 0%,#F8FAFC 100%);
    position:relative;
    overflow:hidden;
}

/* Decorative Background */

.journal-search::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(0,87,184,.04);
    top:-180px;
    right:-180px;
}

.journal-search::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(0,123,255,.03);
    bottom:-150px;
    left:-150px;
}

/*=====================================
Search Box
======================================*/

.journal-search-box{

    position:relative;

    z-index:2;

    max-width:850px;

    margin:50px auto 0;

    display:flex;

    align-items:center;

    background:#ffffff;

    border-radius:70px;

    overflow:hidden;

    border:1px solid #E5EAF2;

    box-shadow:
    0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.journal-search-box:hover{

    box-shadow:
    0 18px 45px rgba(0,87,184,.12);

}

.journal-search-box:focus-within{

    border-color:var(--primary);

    box-shadow:
    0 0 0 4px rgba(0,87,184,.12),
    0 18px 45px rgba(0,0,0,.08);

}

/*=====================================
Input
======================================*/

.journal-search-box input{

    flex:1;

    border:none;

    outline:none;

    padding:22px 28px;

    font-size:17px;

    background:transparent;

    color:#102A43;

}

.journal-search-box input::placeholder{

    color:#98A2B3;

}

/*=====================================
Button
======================================*/

.journal-search-box button{

    display:flex;

    align-items:center;

    gap:10px;

    border:none;

    cursor:pointer;

    padding:22px 35px;

    background:linear-gradient(
        135deg,
        var(--primary),
        #0A84FF
    );

    color:#ffffff;

    font-size:16px;

    font-weight:600;

    transition:.35s;

}

.journal-search-box button:hover{

    background:linear-gradient(
        135deg,
        #004A99,
        #006FDE
    );

}

.journal-search-box button i{

    font-size:18px;

}

/*=====================================
Responsive
======================================*/

@media(max-width:768px){

    .journal-search{

        padding:70px 0;

    }

    .journal-search-box{

        flex-direction:column;

        border-radius:18px;

        overflow:visible;

        background:transparent;

        border:none;

        box-shadow:none;

        gap:15px;

    }

    .journal-search-box input{

        width:100%;

        background:#ffffff;

        border:1px solid #E5EAF2;

        border-radius:12px;

        padding:18px;

        box-shadow:0 8px 20px rgba(0,0,0,.05);

    }

    .journal-search-box button{

        width:100%;

        justify-content:center;

        border-radius:12px;

        padding:18px;

    }

}

/*====================================================
BROWSE BY SUBJECT
====================================================*/

.journal-subjects{
    padding:100px 0;
    background:#F8FAFC;
    position:relative;
    overflow:hidden;
}

/* Decorative Background */

.journal-subjects::before{
    content:"";
    position:absolute;
    top:-180px;
    left:-180px;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(0,87,184,.04);
}

.journal-subjects::after{
    content:"";
    position:absolute;
    bottom:-180px;
    right:-180px;
    width:360px;
    height:360px;
    border-radius:50%;
    background:rgba(0,123,255,.03);
}

/*=====================================
Grid
======================================*/

.subject-grid{

    position:relative;
    z-index:2;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:60px;

}

/*=====================================
Card
======================================*/

.subject-card{

    background:#ffffff;

    border:1px solid #E8EEF5;

    border-radius:18px;

    padding:35px 25px;

    text-align:center;

    text-decoration:none;

    transition:.35s ease;

    position:relative;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

/* Top Border Animation */

.subject-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:linear-gradient(
        90deg,
        var(--primary),
        #0A84FF
    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}

.subject-card:hover::before{

    transform:scaleX(1);

}

/* Decorative Circle */

.subject-card::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    border-radius:50%;

    background:rgba(0,87,184,.04);

    top:-90px;

    right:-90px;

    transition:.4s;

}

.subject-card:hover::after{

    transform:scale(1.5);

}

/*=====================================
Icon
======================================*/

.subject-card i{

    width:80px;

    height:80px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 25px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--primary),
        #0A84FF
    );

    color:#ffffff;

    font-size:34px;

    transition:.35s;

}

.subject-card:hover i{

    transform:rotateY(180deg) scale(1.08);

    box-shadow:0 12px 30px rgba(0,87,184,.25);

}

/*=====================================
Heading
======================================*/

.subject-card h4{

    color:#102A43;

    font-size:20px;

    font-weight:700;

    line-height:1.5;

    transition:.3s;

}

.subject-card:hover h4{

    color:var(--primary);

}

/*=====================================
Hover
======================================*/

.subject-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 40px rgba(0,0,0,.10);

}

/*=====================================
Responsive
======================================*/

@media(max-width:1200px){

    .subject-grid{

        grid-template-columns:repeat(3,1fr);

    }

}

@media(max-width:992px){

    .subject-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .journal-subjects{

        padding:70px 0;

    }

    .subject-grid{

        grid-template-columns:1fr;

        gap:22px;

    }

    .subject-card{

        padding:30px 20px;

    }

    .subject-card i{

        width:70px;

        height:70px;

        font-size:30px;

    }

    .subject-card h4{

        font-size:18px;

    }

}
/*====================================================
FEATURED JOURNALS
====================================================*/

.featured-journals-page{
    padding:100px 0;
    background:#ffffff;
    position:relative;
    overflow:hidden;
}

.featured-journals-page::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    top:-220px;
    right:-220px;
    background:rgba(0,87,184,.04);
    border-radius:50%;
}

.featured-journals-page::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    bottom:-180px;
    left:-180px;
    background:rgba(0,123,255,.03);
    border-radius:50%;
}

/*====================================
Grid
====================================*/

.featured-journal-grid{
    margin-top:60px;
    display:flex;
    flex-direction:column;
    gap:40px;
    position:relative;
    z-index:2;
}

/*====================================
Card
====================================*/

.featured-journal-card{
    display:grid;
    grid-template-columns:300px 1fr;
    background:#fff;
    border:1px solid #E8EDF5;
    border-radius:20px;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
}

.featured-journal-card:hover{
    transform:translateY(-8px);
    box-shadow:0 22px 50px rgba(0,0,0,.12);
}

/*====================================
Cover
====================================*/

.journal-cover{
    background:#F4F7FB;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:35px;
}

.journal-cover img{
    width:100%;
    max-width:220px;
    border-radius:8px;
    box-shadow:0 18px 35px rgba(0,0,0,.15);
    transition:.35s;
}

.featured-journal-card:hover .journal-cover img{
    transform:scale(1.05);
}

/*====================================
Content
====================================*/

.journal-info{
    padding:40px;
    display:flex;
    flex-direction:column;
}

/*====================================
Badges
====================================*/

.journal-badges{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:20px;
}

.journal-badges span{
    padding:8px 16px;
    background:#EEF5FF;
    color:var(--primary);
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

/*====================================
Heading
====================================*/

.journal-info h3{
    font-size:30px;
    color:#102A43;
    line-height:1.4;
    margin-bottom:18px;
    transition:.3s;
}

.featured-journal-card:hover h3{
    color:var(--primary);
}

/*====================================
Description
====================================*/

.journal-info p{
    color:#667085;
    line-height:1.9;
    margin-bottom:28px;
}

/*====================================
Meta
====================================*/

.journal-meta{
    display:flex;
    gap:60px;
    padding:22px 0;
    border-top:1px solid #EDF2F7;
    border-bottom:1px solid #EDF2F7;
    margin-bottom:30px;
}

.journal-meta strong{
    display:block;
    font-size:14px;
    color:#102A43;
    margin-bottom:6px;
}

.journal-meta span{
    color:#667085;
    font-size:15px;
}

/*====================================
Buttons
====================================*/

.journal-actions{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.journal-actions a{
    text-decoration:none;
}

.btn-outline{
    padding:14px 28px;
    border:2px solid var(--primary);
    border-radius:8px;
    color:var(--primary);
    font-weight:600;
    transition:.35s;
}

.btn-outline:hover{
    background:var(--primary);
    color:#fff;
}

.journal-actions .btn-primary{
    padding:14px 30px;
}

/*====================================
Responsive
====================================*/

@media(max-width:1100px){

    .featured-journal-card{
        grid-template-columns:240px 1fr;
    }

}

@media(max-width:900px){

    .featured-journal-card{
        grid-template-columns:1fr;
    }

    .journal-cover{
        padding:40px;
    }

    .journal-cover img{
        max-width:220px;
    }

}

@media(max-width:768px){

    .featured-journals-page{
        padding:70px 0;
    }

    .journal-info{
        padding:30px;
    }

    .journal-info h3{
        font-size:24px;
    }

    .journal-meta{
        flex-direction:column;
        gap:18px;
    }

    .journal-actions{
        flex-direction:column;
    }

    .journal-actions a{
        width:100%;
        text-align:center;
    }

}

@media(max-width:576px){

    .journal-cover{
        padding:25px;
    }

    .journal-cover img{
        max-width:180px;
    }

    .journal-info{
        padding:25px;
    }

    .journal-info h3{
        font-size:22px;
    }

    .journal-badges{
        gap:8px;
    }

    .journal-badges span{
        font-size:12px;
        padding:7px 12px;
    }

}
/*====================================================
ALL JOURNALS
====================================================*/

.all-journals{
    padding:100px 0;
    background:#F8FAFC;
    position:relative;
    overflow:hidden;
}

/* Decorative Background */

.all-journals::before{
    content:"";
    position:absolute;
    top:-180px;
    right:-180px;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(0,87,184,.04);
}

.all-journals::after{
    content:"";
    position:absolute;
    bottom:-180px;
    left:-180px;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(0,123,255,.03);
}

/*=====================================
Grid
======================================*/

.journal-list-grid{

    position:relative;
    z-index:2;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:60px;

}

/*=====================================
Card
======================================*/

.journal-list-card{

    background:#ffffff;

    border:1px solid #E6ECF3;

    border-radius:18px;

    overflow:hidden;

    text-align:center;

    padding:35px 25px;

    transition:.35s ease;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    position:relative;

}

.journal-list-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:4px;

    background:linear-gradient(
        90deg,
        var(--primary),
        #0A84FF
    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}

.journal-list-card:hover::before{

    transform:scaleX(1);

}

.journal-list-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

/*=====================================
Journal Cover
======================================*/

.journal-list-card img{

    width:170px;

    height:auto;

    border-radius:8px;

    margin:0 auto 25px;

    display:block;

    box-shadow:0 15px 35px rgba(0,0,0,.15);

    transition:.35s;

}

.journal-list-card:hover img{

    transform:scale(1.05);

}

/*=====================================
Title
======================================*/

.journal-list-card h4{

    font-size:22px;

    color:#102A43;

    line-height:1.5;

    margin-bottom:15px;

    transition:.3s;

}

.journal-list-card:hover h4{

    color:var(--primary);

}

/*=====================================
Category
======================================*/

.journal-list-card p{

    display:inline-block;

    padding:8px 18px;

    margin-bottom:28px;

    background:#EEF5FF;

    color:var(--primary);

    border-radius:30px;

    font-size:14px;

    font-weight:600;

}

/*=====================================
Buttons
======================================*/

.journal-list-buttons{

    display:flex;

    justify-content:center;

    gap:12px;

    flex-wrap:wrap;

}

.journal-list-buttons a{

    text-decoration:none;

    padding:12px 22px;

    border-radius:8px;

    font-size:15px;

    font-weight:600;

    transition:.3s;

}

/* View Journal */

.journal-list-buttons a:first-child{

    background:#ffffff;

    border:2px solid var(--primary);

    color:var(--primary);

}

.journal-list-buttons a:first-child:hover{

    background:var(--primary);

    color:#ffffff;

}

/* Submit */

.journal-list-buttons a:last-child{

    background:linear-gradient(
        135deg,
        var(--primary),
        #0A84FF
    );

    color:#ffffff;

}

.journal-list-buttons a:last-child:hover{

    opacity:.92;

}

/*=====================================
Responsive
======================================*/

@media(max-width:1200px){

    .journal-list-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .all-journals{

        padding:70px 0;

    }

    .journal-list-grid{

        grid-template-columns:1fr;

        gap:25px;

    }

    .journal-list-card{

        padding:30px 20px;

    }

    .journal-list-card img{

        width:150px;

    }

    .journal-list-card h4{

        font-size:20px;

    }

    .journal-list-buttons{

        flex-direction:column;

    }

    .journal-list-buttons a{

        width:100%;

    }

}

@media(max-width:576px){

    .journal-list-card img{

        width:130px;

    }

    .journal-list-card h4{

        font-size:18px;

    }

}

/*====================================================
PUBLICATION PROCESS
====================================================*/

.publication-process{
    padding:100px 0;
    background:#ffffff;
    position:relative;
    overflow:hidden;
}

/* Decorative Background */

.publication-process::before{
    content:"";
    position:absolute;
    top:-180px;
    right:-180px;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(0,87,184,.04);
}

.publication-process::after{
    content:"";
    position:absolute;
    bottom:-180px;
    left:-180px;
    width:360px;
    height:360px;
    border-radius:50%;
    background:rgba(0,123,255,.03);
}

/*====================================
Timeline
====================================*/

.process-timeline{
    position:relative;
    z-index:2;

    margin-top:70px;

    display:grid;
    grid-template-columns:
        1fr auto
        1fr auto
        1fr auto
        1fr auto
        1fr auto
        1fr;

    align-items:center;
    gap:20px;
}

/*====================================
Step Card
====================================*/

.process-step{

    background:#fff;

    border:1px solid #E7EDF5;

    border-radius:18px;

    padding:35px 22px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

    transition:.35s;

    position:relative;

}

.process-step:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.10);

}

/*====================================
Icon
====================================*/

.step-icon{

    width:80px;
    height:80px;

    margin:0 auto 25px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--primary),
        #0A84FF
    );

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.35s;

}

.step-icon i{

    color:#fff;
    font-size:34px;

}

.process-step:hover .step-icon{

    transform:rotateY(180deg);

    box-shadow:0 15px 35px rgba(0,87,184,.30);

}

/*====================================
Heading
====================================*/

.process-step h4{

    font-size:22px;

    color:#102A43;

    margin-bottom:15px;

}

.process-step p{

    color:#667085;

    font-size:15px;

    line-height:1.8;

}

/*====================================
Arrow
====================================*/

.process-arrow{

    display:flex;

    justify-content:center;

    align-items:center;

    color:var(--primary);

    font-size:34px;

}

/*====================================
Responsive
====================================*/

@media(max-width:1200px){

    .process-timeline{

        grid-template-columns:repeat(2,1fr);

        gap:25px;

    }

    .process-arrow{

        display:none;

    }

}

@media(max-width:768px){

    .publication-process{

        padding:70px 0;

    }

    .process-timeline{

        grid-template-columns:1fr;

    }

    .process-step{

        padding:30px 20px;

    }

    .step-icon{

        width:70px;
        height:70px;

    }

    .step-icon i{

        font-size:30px;

    }

    .process-step h4{

        font-size:20px;

    }

}
/*====================================================
WHY PUBLISH WITH US
====================================================*/

.why-publish{
    padding:100px 0;
    background:#F8FAFC;
    position:relative;
    overflow:hidden;
}

/* Decorative Background */

.why-publish::before{
    content:"";
    position:absolute;
    top:-180px;
    left:-180px;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(0,87,184,.04);
}

.why-publish::after{
    content:"";
    position:absolute;
    bottom:-180px;
    right:-180px;
    width:360px;
    height:360px;
    border-radius:50%;
    background:rgba(0,123,255,.03);
}

/*=====================================
Grid
======================================*/

.why-publish-grid{

    position:relative;
    z-index:2;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

/*=====================================
Card
======================================*/

.why-publish-card{

    background:#ffffff;

    border:1px solid #E7EDF5;

    border-radius:18px;

    padding:40px 30px;

    text-align:center;

    transition:.35s ease;

    position:relative;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

/* Top Border */

.why-publish-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:4px;

    background:linear-gradient(
        90deg,
        var(--primary),
        #0A84FF
    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}

.why-publish-card:hover::before{

    transform:scaleX(1);

}

/* Decorative Circle */

.why-publish-card::after{

    content:"";

    position:absolute;

    width:180px;
    height:180px;

    border-radius:50%;

    background:rgba(0,87,184,.04);

    top:-90px;
    right:-90px;

    transition:.35s;

}

.why-publish-card:hover::after{

    transform:scale(1.4);

}

.why-publish-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

/*=====================================
Icon
======================================*/

.why-publish-card i{

    width:80px;
    height:80px;

    display:flex;

    align-items:center;
    justify-content:center;

    margin:0 auto 25px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--primary),
        #0A84FF
    );

    color:#ffffff;

    font-size:34px;

    transition:.35s;

}

.why-publish-card:hover i{

    transform:rotateY(180deg) scale(1.08);

    box-shadow:0 15px 35px rgba(0,87,184,.30);

}

/*=====================================
Heading
======================================*/

.why-publish-card h3{

    font-size:24px;

    color:#102A43;

    margin-bottom:18px;

    transition:.3s;

}

.why-publish-card:hover h3{

    color:var(--primary);

}

/*=====================================
Paragraph
======================================*/

.why-publish-card p{

    color:#667085;

    font-size:16px;

    line-height:1.8;

}

/*=====================================
Responsive
======================================*/

@media(max-width:1200px){

    .why-publish-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .why-publish{

        padding:70px 0;

    }

    .why-publish-grid{

        grid-template-columns:1fr;

        gap:25px;

    }

    .why-publish-card{

        padding:35px 25px;

    }

    .why-publish-card i{

        width:70px;
        height:70px;

        font-size:30px;

    }

    .why-publish-card h3{

        font-size:22px;

    }

}
/*====================================================
JOURNAL STATISTICS
====================================================*/

.journal-statistics{
    padding:100px 0;
    background:linear-gradient(135deg,#0057B8,#0A84FF);
    position:relative;
    overflow:hidden;
}

/* Decorative Background */

.journal-statistics::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    top:-250px;
    right:-200px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
}

.journal-statistics::after{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    bottom:-180px;
    left:-180px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
}

/*=====================================
Grid
======================================*/

.stats-grid{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:30px;
}

/*=====================================
Card
======================================*/

.stat-box{

    background:rgba(255,255,255,.10);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.18);

    border-radius:18px;

    padding:40px 20px;

    text-align:center;

    transition:.35s ease;

}

.stat-box:hover{

    transform:translateY(-10px);

    background:rgba(255,255,255,.18);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

/*=====================================
Number
======================================*/

.stat-box h2{

    font-size:54px;

    font-weight:800;

    color:#ffffff;

    margin-bottom:12px;

    line-height:1;

}

/*=====================================
Text
======================================*/

.stat-box p{

    color:rgba(255,255,255,.92);

    font-size:18px;

    font-weight:500;

    line-height:1.6;

}

/*=====================================
Responsive
======================================*/

@media(max-width:1200px){

    .stats-grid{

        grid-template-columns:repeat(3,1fr);

    }

}

@media(max-width:768px){

    .journal-statistics{

        padding:70px 0;

    }

    .stats-grid{

        grid-template-columns:repeat(2,1fr);

        gap:20px;

    }

    .stat-box{

        padding:30px 15px;

    }

    .stat-box h2{

        font-size:42px;

    }

    .stat-box p{

        font-size:16px;

    }

}

@media(max-width:576px){

    .stats-grid{

        grid-template-columns:1fr;

    }

    .stat-box h2{

        font-size:38px;

    }

    .stat-box p{

        font-size:15px;

    }

}
/*====================================================
JOURNAL CTA
====================================================*/

.journal-cta{
    padding:100px 0;
    background:#F8FAFC;
    position:relative;
    overflow:hidden;
}

/* Decorative Shapes */

.journal-cta::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    top:-180px;
    right:-180px;
    border-radius:50%;
    background:rgba(0,87,184,.05);
}

.journal-cta::after{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    bottom:-150px;
    left:-150px;
    border-radius:50%;
    background:rgba(0,123,255,.04);
}

/*=====================================
CTA Box
======================================*/

.cta-box{

    position:relative;
    z-index:2;

    max-width:950px;

    margin:auto;

    text-align:center;

    padding:70px 60px;

    border-radius:24px;

    background:linear-gradient(
        135deg,
        #0057B8,
        #0A84FF
    );

    color:#ffffff;

    overflow:hidden;

    box-shadow:0 25px 60px rgba(0,87,184,.25);

}

/* Decorative Circle */

.cta-box::before{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:-120px;

    right:-120px;

}

.cta-box::after{

    content:"";

    position:absolute;

    width:200px;

    height:200px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    bottom:-90px;

    left:-90px;

}

/*=====================================
Heading
======================================*/

.cta-box h2{

    position:relative;

    z-index:2;

    font-size:42px;

    font-weight:700;

    margin-bottom:20px;

    color:#ffffff;

}

/*=====================================
Paragraph
======================================*/

.cta-box p{

    position:relative;

    z-index:2;

    max-width:720px;

    margin:0 auto 40px;

    font-size:18px;

    line-height:1.9;

    color:rgba(255,255,255,.92);

}

/*=====================================
Buttons
======================================*/

.cta-buttons{

    position:relative;

    z-index:2;

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

}

/* Primary Button */

.cta-buttons .btn-primary{

    background:#ffffff;

    color:var(--primary);

    padding:15px 34px;

    border-radius:8px;

    font-weight:600;

    text-decoration:none;

    transition:.35s;

}

.cta-buttons .btn-primary:hover{

    transform:translateY(-3px);

    background:#F2F6FA;

}

/* Outline Button */

.cta-buttons .btn-outline{

    padding:15px 34px;

    border:2px solid rgba(255,255,255,.8);

    border-radius:8px;

    color:#ffffff;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.cta-buttons .btn-outline:hover{

    background:#ffffff;

    color:var(--primary);

}

/*=====================================
Responsive
======================================*/

@media(max-width:992px){

    .cta-box{

        padding:60px 40px;

    }

    .cta-box h2{

        font-size:34px;

    }

}

@media(max-width:768px){

    .journal-cta{

        padding:70px 0;

    }

    .cta-box{

        padding:45px 25px;

    }

    .cta-box h2{

        font-size:28px;

    }

    .cta-box p{

        font-size:16px;

    }

    .cta-buttons{

        flex-direction:column;

    }

    .cta-buttons a{

        width:100%;

        text-align:center;

    }

}