/*==========================
Top Header
===========================*/

.top-header{
    background:#0B3C91;
    color:#fff;
    font-size:14px;
    padding:10px 0;
}

.top-contact{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.top-contact a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.top-contact a:hover{
    color:#FDB813;
}

.top-contact i{
    color:#FDB813;
    margin-right:6px;
}

.issn-badge{
    background:#FDB813;
    color:#0B3C91;
    padding:7px 18px;
    border-radius:30px;
    font-weight:700;
}

.top-buttons{
    display:flex;
    justify-content:flex-end;
    gap:10px;
}

.submit-btn{
    background:#FDB813;
    color:#0B3C91;
    padding:8px 18px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.submit-btn:hover{
    background:#fff;
    color:#0B3C91;
}

.login-btn{
    border:1px solid #fff;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    text-decoration:none;
    transition:.3s;
}

.login-btn:hover{
    background:#fff;
    color:#0B3C91;
}

/*==========================
Responsive
===========================*/

@media(max-width:991px){

.top-header{
    padding:12px 0;
}

.top-contact{
    justify-content:center;
    margin-bottom:10px;
}

.top-buttons{
    justify-content:center;
}

}

@media(max-width:576px){

.top-contact{
    flex-direction:column;
    gap:8px;
    align-items:center;
}

.top-buttons{
    flex-direction:column;
}

.submit-btn,
.login-btn{
    width:100%;
    text-align:center;
}

}


/*==========================
Navbar
===========================*/

/* =================================
   MAIN HEADER
================================= */

/* ==============================
   DESKTOP NAVBAR
============================== */

.main-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 9999;
    border-bottom: 1px solid #eee;
}

.logo {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.logo-title {
    font-size: 18px;
    color: #0B3C91;
    font-weight: 700;
    white-space: nowrap;
}

.logo-subtitle {
    display: block;
    color: #F7941D;
    font-size: 9.5px;
    font-weight: 600;
    line-height: 1.4;
}

.navbar-nav {
    gap: 0;
}

.navbar-nav .nav-link {
    color: #222;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 7px !important;
    margin: 0;
    white-space: nowrap;
    transition: .3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #F7941D;
}


/* Dropdown */

.dropdown-menu {
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.dropdown-item {
    font-size: 14px;
    padding: 9px 14px;
}

.dropdown-item:hover {
    background: #fff4e8;
    color: #F7941D;
}


/* ==============================
   TABLET + MOBILE
============================== */

@media (max-width: 991px) {

    .navbar-nav {
        margin-top: 15px;
    }

    .navbar-nav .nav-link {
        padding: 10px 5px !important;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

}


/* ==============================
   MOBILE
============================== */

@media (max-width: 575px) {

    .logo {
        width: 50px;
        height: 50px;
    }

    .logo-title {
        font-size: 14px;
        white-space: normal;
    }

    .logo-subtitle {
        font-size: 8px;
    }

}


/*=========================
Hero Section
=========================*/

/*========================
Hero Slider
========================*/

.hero-slider img{

    height:650px;
    object-fit:cover;

}

.carousel-item{

    position:relative;

}

.carousel-item::before{

    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(6,34,78,.65);

}

.carousel-caption{

    bottom:50%;
    transform:translateY(50%);
    text-align:left;
    max-width:650px;

}

.carousel-caption span{

    background:#F7941D;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    display:inline-block;
    margin-bottom:20px;
    font-weight:600;

}

.carousel-caption h1{

    font-size:60px;
    font-weight:700;
    color:#fff;
    margin-bottom:20px;

}

.carousel-caption p{

    font-size:20px;
    color:#fff;
    margin-bottom:35px;

}

.theme-btn{

    background:#F7941D;
    color:#fff;
    padding:14px 35px;
    border-radius:8px;
    text-decoration:none;
    margin-right:12px;
    transition:.3s;

}

.theme-btn:hover{

    background:#fff;
    color:#0B3C91;

}

.theme-btn-outline{

    border:2px solid #fff;
    color:#fff;
    padding:14px 35px;
    border-radius:8px;
    text-decoration:none;
    transition:.3s;

}

.theme-btn-outline:hover{

    background:#fff;
    color:#0B3C91;

}

@media(max-width:991px){

.hero-slider img{

    height:500px;

}

.carousel-caption{

    text-align:center;
    left:10%;
    right:10%;

}

.carousel-caption h1{

    font-size:38px;

}

.carousel-caption p{

    font-size:16px;

}

}

@media(max-width:576px){

.hero-slider img{

    height:400px;

}

.carousel-caption h1{

    font-size:28px;

}

.carousel-caption span{

    font-size:13px;

}

.theme-btn,
.theme-btn-outline{

    display:block;
    margin:10px 0;

}

}



/*====================================
 Journal Statistics
=====================================*/

.journal-stats{
    background:#f8fbff;
}

.stat-card{

    background:#fff;
    padding:35px 20px;
    border-radius:15px;
    transition:.4s;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    border-top:4px solid #F7941D;

}

.stat-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.stat-icon{

    width:75px;
    height:75px;
    background:#0B3C91;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:auto;

    border-radius:50%;

    font-size:30px;

    margin-bottom:20px;

}

.stat-card h2{

    color:#0B3C91;
    font-size:42px;
    font-weight:700;
    margin-bottom:8px;

}

.stat-card p{

    color:#666;
    font-size:17px;
    margin:0;
    font-weight:500;

}

.stat-card:hover .stat-icon{

    background:#F7941D;

}

.stat-card:hover h2{

    color:#F7941D;

}

/*==========================
Footer
===========================*/

.footer{

    background:#082B63;
    color:#fff;
    padding:70px 0 0;

}

.footer-logo{

    width:70px;

}

.footer h4{

    color:#fff;
    font-weight:700;
    margin-bottom:15px;

}

.footer h5{

    color:#F7941D;
    margin-bottom:25px;
    font-weight:600;

}

.footer p{

    color:#d9d9d9;
    line-height:1.8;

}

.footer ul{

    padding:0;
    margin:0;
    list-style:none;

}

.footer ul li{

    margin-bottom:12px;

}

.footer ul li a{

    color:#d9d9d9;
    text-decoration:none;
    transition:.3s;

}

.footer ul li a:hover{

    color:#F7941D;
    padding-left:8px;

}

.footer i{

    color:#F7941D;
    margin-right:8px;

}

/* Newsletter */

.newsletter{

    display:flex;
    margin-top:20px;

}

.newsletter input{

    flex:1;
    height:48px;
    border:none;
    outline:none;
    padding:0 15px;
    border-radius:8px 0 0 8px;

}

.newsletter button{

    width:55px;
    border:none;
    background:#F7941D;
    color:#fff;
    border-radius:0 8px 8px 0;
    transition:.3s;

}

.newsletter button:hover{

    background:#fff;
    color:#082B63;

}

/* Social */

.social-icons{

    display:flex;
    gap:12px;
    margin-top:25px;

}

.social-icons a{

    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    background:#103D84;

    color:#fff;

    text-decoration:none;

    transition:.3s;

}

.social-icons a:hover{

    background:#F7941D;
    transform:translateY(-5px);

}

/* Bottom */

.footer-bottom{

    margin-top:60px;
    padding:18px 0;
    text-align:center;

    background:#061E45;

}

.footer-bottom p{

    color:#cfcfcf;
    font-size:15px;

}

.footer-bottom span{

    color:#F7941D;
    font-weight:600;

}

/* Responsive */

@media(max-width:768px){

.footer{

    text-align:center;

}

.social-icons{

    justify-content:center;

}

.newsletter{

    margin-top:20px;

}

}

/*==========================
Current Issue
===========================*/

/*=========================
Current Issue
=========================*/

.current-issue{

    background:#f8fbff;

}

.journal-cover-box{

    background:#fff;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.3s;

}

.journal-cover-box:hover{

    transform:translateY(-8px);

}

.current-cover{

    width:100%;

}

.journal-info{

    padding:25px;

    text-align:center;

}

.journal-info h3{

    color:#0B3C91;

    font-weight:700;

}

.journal-info p{

    color:#F7941D;

    margin:15px 0;

}

.journal-btn{

    display:block;

    background:#0B3C91;

    color:#fff;

    padding:14px;

    border-radius:8px;

    text-decoration:none;

}

.journal-btn:hover{

    background:#F7941D;

    color:#fff;

}

.paper-title{

    color:#0B3C91;

    font-weight:700;

}

.paper-card{

    background:#fff;

    border-radius:15px;

    padding:30px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.3s;

    height:100%;

}

.paper-card:hover{

    transform:translateY(-8px);

}

.paper-icon{

    width:70px;

    height:70px;

    background:#0B3C91;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;

    font-size:28px;

    margin-bottom:20px;

}

.paper-card h4{

    color:#0B3C91;

    font-size:22px;

    line-height:1.6;

    min-height:90px;

}

.paper-card span{

    color:#F7941D;

    font-weight:600;

}

.paper-card p{

    color:#666;

    margin:15px 0;

}

.paper-btn{

    display:block;

    width:100%;

    background:#F7941D;

    color:#fff;

    padding:13px;

    border-radius:8px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.paper-btn:hover{

    background:#0B3C91;

    color:#fff;

}

/*==========================
Latest Papers
===========================*/

.latest-papers{

    background:#ffffff;

}

.paper-card{

    background:#fff;
    border-radius:16px;
    padding:30px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
    border-top:5px solid #F7941D;
    height:100%;

}

.paper-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 35px rgba(0,0,0,.12);

}

.paper-top{

    display:flex;
    justify-content:space-between;
    margin-bottom:20px;

}

.paper-category{

    background:#FFF1DA;
    color:#F7941D;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;

}

.paper-doi{

    color:#0B3C91;
    font-weight:600;

}

.paper-card h4{

    color:#0B3C91;
    font-size:22px;
    margin-bottom:18px;
    line-height:1.5;

}

.author{

    color:#666;
    margin-bottom:18px;

}

.author i{

    color:#F7941D;

}

.paper-card p{

    color:#666;
    line-height:1.8;

}

.paper-footer{

    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:25px;

}

.read-btn{

    background:#0B3C91;
    color:#fff;
    padding:10px 22px;
    border-radius:8px;
    text-decoration:none;
    transition:.3s;

}

.read-btn:hover{

    background:#F7941D;
    color:#fff;

}

.pdf-btn{

    width:48px;
    height:48px;
    background:#F7941D;
    color:#fff;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    font-size:22px;

    transition:.3s;

}

.pdf-btn:hover{

    background:#0B3C91;
    color:#fff;

}


.section-heading {
    font-size: 42px;
    font-weight: 700;
    color: #0B3C91;
}

.section-tag {
    display: inline-block;
    background: #FFF4E7;
    color: #F7941D;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.theme-btn {
    background: #F7941D;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: .3s;
}

.theme-btn:hover {
    background: #0B3C91;
    color: #fff;
}

.scope-card,
.publish-card,
.editor-card {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .35s;
    height: 100%;
}

.scope-card:hover,
.publish-card:hover,
.editor-card:hover {
    transform: translateY(-8px);
}

.scope-card i,
.publish-card i {
    font-size: 42px;
    color: #F7941D;
    margin-bottom: 15px;
}

.editor-card img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #F7941D;
}

.editor-card h4 {
    color: #0B3C91;
    margin-bottom: 5px;
}

.editor-card h6 {
    color: #F7941D;
}


/*==========================
Journal Archives
===========================*/

.journal-archives{
    background:#ffffff;
}

.archive-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.archive-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.12);
}

.archive-cover{
    width:100%;
    height:320px;
    object-fit:contain;
}

.archive-content{
    padding:20px;
    text-align:center;
}

.archive-content h5{
    color:#0B3C91;
    font-weight:700;
    margin-bottom:5px;
}

.archive-content span{
    display:block;
    color:#F7941D;
    font-weight:600;
}

.archive-content small{
    display:block;
    color:#777;
    margin:10px 0 20px;
}

.archive-btn{
    display:block;
    background:#0B3C91;
    color:#fff;
    padding:12px;
    border-radius:8px;
    text-decoration:none;
    transition:.3s;
}

.archive-btn:hover{
    background:#F7941D;
    color:#fff;
}

.view-all-btn{
    display:inline-block;
    background:#F7941D;
    color:#fff;
    padding:14px 35px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.view-all-btn:hover{
    background:#0B3C91;
    color:#fff;
}

/*==========================
Journal Highlights
===========================*/

.journal-highlights{

    background:#f8fbff;

}

.highlight-box{

    background:#fff;
    border-radius:15px;
    padding:25px;
    display:flex;
    align-items:center;
    gap:20px;
    height:100%;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.35s;

}

.highlight-box:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.highlight-icon{

    min-width:70px;
    width:70px;
    height:70px;

    background:#0B3C91;

    color:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;

    transition:.35s;

}

.highlight-box:hover .highlight-icon{

    background:#F7941D;

}

.highlight-box h5{

    color:#0B3C91;

    font-weight:700;

    margin-bottom:8px;

}

.highlight-box p{

    margin:0;

    color:#666;

    line-height:1.7;

}

@media(max-width:768px){

.highlight-box{

    text-align:center;

    flex-direction:column;

}

}


/*==========================
Page Banner
===========================*/

.page-banner{
    position: relative;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay{
    position: absolute;
    inset: 0;
    background: rgba(8,40,90,.55);
}

.banner-content{
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.banner-content h1{
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
}

.breadcrumb-nav{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.breadcrumb-nav a{
    color: #F7941D;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb-nav span{
    color: #fff;
}

@media(max-width:768px){

    .page-banner{
        height:220px;
    }

    .banner-content h1{
        font-size:32px;
    }

}

.paper-author{
    color:#666;
    font-size:16px;
    margin:15px 0 20px;
}

.paper-author i{
    color:#F7941D;
    margin-right:5px;
}

/*==========================
Editorial Board
===========================*/

.editorial-board{
    background:#f8fbff;
}


/* Card */

.editorial-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    height:100%;

    border:1px solid #e8edf5;

    box-shadow:0 8px 25px rgba(11,60,145,.08);

    transition:all .35s ease;

}

.editorial-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(11,60,145,.15);

}


/* Photo */

.editorial-photo{

    position:relative;

    height:230px;

    background:linear-gradient(
        135deg,
        #eef4ff,
        #fff4e8
    );

    display:flex;

    justify-content:center;

    align-items:flex-end;

    overflow:hidden;

}

.editorial-photo img{

    width:180px;

    height:180px;

    object-fit:cover;

    border-radius:50%;

    border:5px solid #fff;

    box-shadow:0 8px 20px rgba(0,0,0,.12);

    margin-bottom:-5px;

    transition:.35s;

}

.editorial-card:hover .editorial-photo img{

    transform:scale(1.04);

}


/* Small Icon */

.profile-icon{

    position:absolute;

    right:20px;

    bottom:18px;

    width:42px;

    height:42px;

    border-radius:50%;

    background:#F7941D;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

    border:3px solid #fff;

}


/* Content */

.editorial-content{

    text-align:center;

    padding:25px 18px 28px;

}

.editorial-content h3{

    color:#0B3C91;

    font-size:20px;

    font-weight:700;

    margin-bottom:7px;

}

.designation{

    display:inline-block;

    color:#F7941D;

    font-size:14px;

    font-weight:600;

    margin-bottom:12px;

}

.editorial-content p{

    color:#666;

    font-size:14px;

    line-height:1.6;

    margin:0;

}


/* Button */

.editorial-btn{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:13px 25px;

    background:#0B3C91;

    color:#fff;

    border-radius:8px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.editorial-btn:hover{

    background:#F7941D;

    color:#fff;

}


/* Responsive */

@media(max-width:768px){

    .editorial-photo{

        height:220px;

    }

}






/* ==========================
   Publication Guidelines
========================== */

.publication-guidelines{
    background:#f8fbff;
}

.guidelines-wrapper{
    max-width:1000px;
    margin:auto;
}

.guideline-box{
    background:#fff;
    display:flex;
    gap:25px;
    padding:30px;
    margin-bottom:20px;
    border-radius:15px;
    border:1px solid #e8edf5;
    box-shadow:0 8px 25px rgba(11,60,145,.06);
    transition:.3s;
}

.guideline-box:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(11,60,145,.10);
}

.guideline-icon{
    min-width:55px;
    width:55px;
    height:55px;
    background:#0B3C91;
    color:#fff;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.guideline-box h3{
    color:#0B3C91;
    font-size:22px;
    font-weight:700;
    margin-bottom:12px;
}

.guideline-box p{
    color:#666;
    font-size:16px;
    line-height:1.8;
    margin-bottom:10px;
}

.guideline-box strong{
    color:#333;
}

.guideline-box ul{
    padding-left:20px;
    margin:10px 0 15px;
}

.guideline-box li{
    color:#666;
    margin-bottom:7px;
    line-height:1.6;
}

@media(max-width:576px){

    .guideline-box{
        flex-direction:column;
        padding:22px;
        gap:15px;
    }

    .guideline-icon{
        width:48px;
        min-width:48px;
        height:48px;
        font-size:20px;
    }

    .guideline-box h3{
        font-size:19px;
    }

    .guideline-box p,
    .guideline-box li{
        font-size:14px;
    }

}



/* ==========================
   Publication Process
========================== */

.publication-process{
    background:#fff;
}

.process-row{
    position:relative;
}


/* Card */

.process-card{

    position:relative;

    height:100%;

    background:#fff;

    padding:35px 25px 30px;

    text-align:center;

    border:1px solid #e6ebf2;

    border-radius:16px;

    box-shadow:0 8px 25px rgba(11,60,145,.07);

    transition:.35s;

}

.process-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(11,60,145,.13);

}


/* Number */

.process-number{

    position:absolute;

    top:15px;

    right:18px;

    color:#F7941D;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

}


/* Icon */

.process-icon{

    width:70px;

    height:70px;

    margin:5px auto 20px;

    border-radius:50%;

    background:#0B3C91;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    transition:.35s;

}

.process-card:hover .process-icon{

    background:#F7941D;

    transform:scale(1.08);

}


/* Heading */

.process-card h3{

    color:#0B3C91;

    font-size:20px;

    font-weight:700;

    margin-bottom:12px;

}


/* Text */

.process-card p{

    color:#666;

    font-size:14px;

    line-height:1.7;

    margin:0;

}


/* Mobile */

@media(max-width:767px){

    .process-card{

        padding:30px 22px;

    }

}



/* ==========================
   Journal Membership
========================== */

.journal-membership{
    background:#f8fbff;
}


/* Intro */

.membership-intro{

    max-width:1000px;

    margin:auto;

    display:flex;

    gap:25px;

    align-items:flex-start;

    background:#fff;

    padding:30px;

    border-radius:16px;

    border-left:5px solid #F7941D;

    box-shadow:0 8px 25px rgba(11,60,145,.07);

}

.membership-intro-icon{

    min-width:60px;

    height:60px;

    background:#0B3C91;

    color:#fff;

    border-radius:12px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:25px;

}

.membership-intro h3{

    color:#0B3C91;

    font-size:22px;

    margin-bottom:10px;

}

.membership-intro p{

    color:#666;

    line-height:1.8;

    margin-bottom:8px;

}


/* Membership Cards */

.membership-card{

    height:100%;

    background:#fff;

    padding:30px;

    border-radius:16px;

    border:1px solid #e5eaf2;

    box-shadow:0 8px 25px rgba(11,60,145,.07);

    transition:.35s;

}

.membership-card:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 35px rgba(11,60,145,.12);

}


/* Card Header */

.membership-card-header{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:20px;

}

.membership-icon{

    width:55px;

    height:55px;

    min-width:55px;

    border-radius:12px;

    background:#0B3C91;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:23px;

}

.membership-card-header h3{

    color:#0B3C91;

    font-size:21px;

    margin:0 0 4px;

}

.membership-card-header span{

    color:#F7941D;

    font-size:13px;

    font-weight:600;

}

.membership-card > p{

    color:#666;

    line-height:1.7;

}


/* Benefits */

.membership-card ul{

    list-style:none;

    padding:0;

    margin:20px 0 0;

}

.membership-card li{

    color:#555;

    margin-bottom:10px;

    font-size:14px;

}

.membership-card li i{

    color:#F7941D;

    margin-right:8px;

}


/* Pricing */

.membership-pricing{

    max-width:900px;

    margin-left:auto;

    margin-right:auto;

}

.membership-pricing h3{

    color:#0B3C91;

    font-weight:700;

}

.membership-table{

    background:#fff;

    overflow:hidden;

    border-radius:12px;

    box-shadow:0 8px 25px rgba(11,60,145,.07);

    text-align:center;

}

.membership-table th{

    background:#0B3C91;

    color:#fff;

    padding:15px;

}

.membership-table td{

    padding:15px;

    vertical-align:middle;

    color:#555;

}

.membership-table tbody tr:hover{

    background:#fff8ef;

}


/* Contact */

.membership-contact{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;

    background:#0B3C91;

    padding:28px 32px;

    border-radius:16px;

    color:#fff;

}

.membership-contact span{

    color:#F7941D;

    font-weight:600;

    font-size:14px;

}

.membership-contact h3{

    margin:5px 0 0;

    font-size:20px;

}

.membership-btn{

    background:#F7941D;

    color:#fff;

    padding:12px 22px;

    border-radius:8px;

    text-decoration:none;

    font-weight:600;

    white-space:nowrap;

    transition:.3s;

}

.membership-btn:hover{

    background:#fff;

    color:#0B3C91;

}


/* Responsive */

@media(max-width:767px){

    .membership-intro{

        flex-direction:column;

        padding:22px;

    }

    .membership-card{

        padding:22px;

    }

    .membership-contact{

        flex-direction:column;

        align-items:flex-start;

    }

    .membership-btn{

        width:100%;

        text-align:center;

    }

}




/* ==========================
   Submission Section
========================== */

.submission-section {
    background: #f8fbff;
}


/* Main Wrapper */

.submission-wrapper {

    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 30px;

}


/* ==========================
   Left Information
========================== */

.submission-info {

    background: #0B3C91;

    color: #fff;

    padding: 40px 35px;

    border-radius: 18px;

    position: relative;

    overflow: hidden;

}


/* Decorative Circle */

.submission-info::after {

    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    border-radius: 50%;

    background: rgba(247,148,29,.12);

    right: -70px;

    bottom: -70px;

}


.submission-icon {

    width: 65px;

    height: 65px;

    background: #F7941D;

    color: #fff;

    border-radius: 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 27px;

    margin-bottom: 25px;

}


.submission-info h3 {

    font-size: 27px;

    font-weight: 700;

    margin-bottom: 15px;

}


.submission-info > p {

    color: rgba(255,255,255,.85);

    line-height: 1.8;

    font-size: 15px;

}


/* Points */

.submission-points {

    margin-top: 25px;

}


.submission-points div {

    margin-bottom: 14px;

    font-size: 14px;

    color: #fff;

}


.submission-points i {

    color: #F7941D;

    margin-right: 8px;

}


/* Note */

.submission-note {

    margin-top: 30px;

    padding: 15px;

    background: rgba(255,255,255,.08);

    border-left: 3px solid #F7941D;

    font-size: 13px;

    line-height: 1.6;

    color: rgba(255,255,255,.85);

}


.submission-note i {

    color: #F7941D;

    margin-right: 6px;

}


/* ==========================
   Form
========================== */

.submission-form {

    background: #fff;

    padding: 35px;

    border-radius: 18px;

    border: 1px solid #e5eaf2;

    box-shadow: 0 10px 30px rgba(11,60,145,.08);

}


.submission-form h3 {

    color: #0B3C91;

    font-size: 25px;

    font-weight: 700;

    margin-bottom: 5px;

}


.form-subtitle {

    color: #777;

    font-size: 14px;

    margin-bottom: 25px;

}


/* Labels */

.submission-form label {

    display: block;

    color: #333;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 7px;

}


.submission-form label span {

    color: #F7941D;

}


/* Inputs */

.submission-form .form-control {

    height: 48px;

    border: 1px solid #dfe5ed;

    border-radius: 7px;

    font-size: 14px;

    padding: 10px 14px;

    box-shadow: none;

}


.submission-form textarea.form-control {

    height: 120px;

}


.submission-form .form-control:focus {

    border-color: #0B3C91;

    box-shadow: 0 0 0 3px rgba(11,60,145,.08);

}


.submission-form small {

    display: block;

    margin-top: 6px;

    color: #888;

    font-size: 12px;

}


/* Submit Button */

.submission-btn {

    border: none;

    background: #F7941D;

    color: #fff;

    padding: 13px 30px;

    border-radius: 8px;

    font-size: 15px;

    font-weight: 600;

    transition: .3s;

}


.submission-btn:hover {

    background: #0B3C91;

    color: #fff;

    transform: translateY(-2px);

}


/* ==========================
   Responsive
========================== */

@media (max-width: 991px) {

    .submission-wrapper {

        grid-template-columns: 1fr;

    }

}


@media (max-width: 576px) {

    .submission-info,
    .submission-form {

        padding: 25px 20px;

        border-radius: 14px;

    }

    .submission-info h3 {

        font-size: 23px;

    }

    .submission-form h3 {

        font-size: 22px;

    }

    .submission-btn {

        width: 100%;

    }

}


/* ==========================
   Contact Section
========================== */

.contact-section{
    background:#f8fbff;
}


/* Contact Information */

.contact-info{

    height:100%;

    background:#0B3C91;

    color:#fff;

    padding:35px;

    border-radius:18px;

    box-shadow:0 12px 35px rgba(11,60,145,.15);

}


/* Header */

.contact-info-header{

    display:flex;

    align-items:center;

    gap:15px;

    padding-bottom:25px;

    border-bottom:1px solid rgba(255,255,255,.15);

}

.contact-main-icon{

    width:58px;

    height:58px;

    min-width:58px;

    background:#F7941D;

    border-radius:12px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

}

.contact-info-header h3{

    margin:0 0 5px;

    font-size:25px;

}

.contact-info-header p{

    margin:0;

    color:rgba(255,255,255,.75);

    font-size:14px;

}


/* Contact Items */

.contact-item{

    display:flex;

    gap:15px;

    padding:20px 0;

    border-bottom:1px solid rgba(255,255,255,.12);

}

.contact-icon{

    width:42px;

    height:42px;

    min-width:42px;

    background:rgba(247,148,29,.15);

    color:#F7941D;

    border-radius:9px;

    display:flex;

    align-items:center;

    justify-content:center;

}

.contact-item span{

    display:block;

    color:#F7941D;

    font-size:13px;

    font-weight:600;

    margin-bottom:4px;

}

.contact-item a{

    color:#fff;

    text-decoration:none;

    font-size:15px;

}

.contact-item a:hover{

    color:#F7941D;

}

.contact-item p{

    margin:0;

    color:rgba(255,255,255,.85);

    font-size:14px;

    line-height:1.6;

}


/* Social */

.contact-social{

    padding-top:25px;

}

.contact-social h4{

    font-size:17px;

    margin-bottom:15px;

}

.contact-social a{

    display:inline-flex;

    width:38px;

    height:38px;

    margin-right:8px;

    border:1px solid rgba(255,255,255,.4);

    border-radius:50%;

    align-items:center;

    justify-content:center;

    color:#fff;

    text-decoration:none;

    transition:.3s;

}

.contact-social a:hover{

    background:#F7941D;

    border-color:#F7941D;

}


/* ==========================
   Contact Form
========================== */

.contact-form{

    height:100%;

    background:#fff;

    padding:35px;

    border-radius:18px;

    border:1px solid #e5eaf2;

    box-shadow:0 10px 30px rgba(11,60,145,.08);

}

.form-heading{

    margin-bottom:25px;

}

.form-heading h3{

    color:#0B3C91;

    font-size:25px;

    font-weight:700;

    margin-bottom:5px;

}

.form-heading p{

    color:#777;

    font-size:14px;

    margin:0;

}


/* Labels */

.contact-form label{

    display:block;

    font-size:14px;

    font-weight:600;

    color:#333;

    margin-bottom:7px;

}

.contact-form label span{

    color:#F7941D;

}


/* Inputs */

.contact-form .form-control{

    height:48px;

    border:1px solid #dfe5ed;

    border-radius:7px;

    padding:10px 14px;

    font-size:14px;

    box-shadow:none;

}

.contact-form textarea.form-control{

    height:auto;

    resize:vertical;

}

.contact-form .form-control:focus{

    border-color:#0B3C91;

    box-shadow:0 0 0 3px rgba(11,60,145,.08);

}


/* Button */

.contact-btn{

    border:none;

    background:#F7941D;

    color:#fff;

    padding:13px 28px;

    border-radius:8px;

    font-weight:600;

    transition:.3s;

}

.contact-btn:hover{

    background:#0B3C91;

    transform:translateY(-2px);

}


/* Responsive */

@media(max-width:767px){

    .contact-info,
    .contact-form{

        padding:25px 20px;

        border-radius:14px;

    }

    .contact-btn{

        width:100%;

    }

}

