     * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #e9e9e9;
            font-family: Georgia, serif;
            color: #333;
        }

        .site-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            background-color: #fff;
            box-shadow: 1px -20px 20px 20px rgba(0, 0, 0, 0.1);
        }

        .inner-content {
            max-width: 1050px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header & Top Bar */
        .top-auth {
            background-color: #F68048;
            padding: 8px 0;
            text-align: right;
        }

        .top-auth a {
            color: #fff;
            text-decoration: none;
            font-size: 13px;
            margin-left: 20px;
        }

        .journal-header {
            background-color: #0D1A63;
            color: white;
            padding: 30px 0;
        }

        .header-flex {
            display: flex;
            align-items: center;
        }

        .logo-box img {
            height: 100px;
            margin-right: 10px;
        }

        .title-box h1 {
            font-size: 22px;
            margin-bottom: 8px;
            border-bottom: 3px solid #F68048;
            padding-bottom: 5px;
        }

        /* Navigation */
        .nav-bar {
            background-color: white;
            border-bottom: 1px solid #ddd;
        }

        .nav-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-links {
            list-style: none;
            display: flex;
        }

        .nav-links li a {
            display: block;
            padding: 15px 12px;
            text-decoration: none;
            color: #666;
            font-size: 13px;
            font-weight: bold;
        }

        .nav-links li a.active, .nav-links li a:hover {
            color: #0D1A63;
        }

        .search-link {
            font-size: 13px;
            font-weight: bold;
            color: #0D1A63;
            cursor: pointer;
        }

        /* Main Content Grid */
        .main-container {
            padding: 10px 0;
        }

        .layout-grid {
            display: grid;
            grid-template-columns: 1fr 200px;
            gap: 40px;
        }

        .section-title {
            font-size: 20px;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .section-title h2 {
            border-bottom: 8px solid #F68048;
            display: inline-block;
            padding-bottom: 5px;
        }

        .divider {
            border: 0;
            border-top: 1.9px solid #b9b9b9;
            margin-bottom: 25px;
        }

        .journal-text h3, .journal-text h4 {
            font-size: 16px;
            margin: 20px 0 10px 0;
        }

        .journal-text p {
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 20px;
            text-align: justify;
        }

        /* Sidebar Styles */
        .sidebar-group {
            margin-bottom: 35px;
            margin-top: 32px;
        }

        .sidebar-group h3, .widget-title {
            font-size: 14px;
            color: #F68048;
            border-bottom: 2px solid #F68048;
            padding-bottom: 5px;
            margin-bottom: 15px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .sidebar-group ul {
            list-style: none;
        }

        .sidebar-group ul li a {
            text-decoration: none;
            color: #0D1A63;
            font-size: 14px;
            line-height: 2.2;
        }

        .deadline {
            font-size: 13px;
            color: #0D1A63;
            margin-bottom: 15px;
             
        }

        .btn-submit {
            display: block;
            background-color: #0D1A63;
            color: white;
            text-align: center;
            padding: 10px;
            text-decoration: none;
            font-weight: bold;
            font-size: 14px;
            border-radius: 3px;
        }

        /* Policy Section */
        .policy-section {
            margin-top: 40px;
        }

        .policy-list {
            list-style: none;
            padding: 0;
        }

        .policy-list li {
            font-size: 13px;
            margin-bottom: 10px;
            position: relative;
            padding-left: 20px;
            line-height: 1.5;
        }

        .policy-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #0D1A63;
            font-weight: bold;
        }

        /* Current Issue */
        .current-issue-section {
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }

        .issue-vol {
            font-size: 16px;
            margin-bottom: 20px;
            font-weight: bold;
            color: #444;
        }

        .issue-flex {
            display: flex;
            gap: 20px;
        }

        .issue-cover img {
            width: 180px;
            box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
        }

        .issue-details p {
            font-size: 13.5px;
            line-height: 1.6;
            text-align: justify;
        }

        /* Share Buttons */
        .share-buttons {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .share-item {
            display: flex;
            align-items: center;
            text-decoration: none;
            font-size: 12px;
            padding: 8px 10px;
            border: 1px solid #ddd;
            border-radius: 2px;
            color: #666;
            transition: background 0.2s;
        }

        .share-item i {
            width: 20px;
            margin-right: 10px;
            font-size: 14px;
        }

        .share-item.whatsapp { border-left: 3px solid #25D366; }
        .share-item.facebook { border-left: 3px solid #1877F2; }
        .share-item.twitter { border-left: 3px solid #000000; }
        .share-item.email { border-left: 3px solid #888888; }
        .share-item.linkedin { border-left: 3px solid #0077B5; }
        .share-item.telegram { border-left: 3px solid #0088cc; }

        /* Responsive Fix */
        @media (max-width: 900px) {
            .layout-grid {
                grid-template-columns: 1fr;
            }
            .issue-flex {
                flex-direction: column;
                align-items: center;
            }
        }

        /* Articles Listing Styling */
.articles-header {
    color: #888;
    font-size: 18px;
    margin: 40px 0 20px;
    font-weight: normal;
}

.article-item {
    margin-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 20px;
}

.article-title {
    color: #0D1A63;
    font-size: 15px;
    margin-bottom: 8px;
    line-height: 1.4;
    cursor: pointer;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

.btn-pdf {
    display: inline-block;
    background-color: #0D1A63;
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 4px;
}

/* Sidebar Share Widget Styling */
.share-header {
    font-size: 14px;
    color: #888 !important;
    border-bottom: 2px solid #c99325;
    margin-bottom: 15px;
    padding-bottom: 5px;
}

.share-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.share-box, .share-item-alt {
    display: flex;
    align-items: center;
    padding: 6px 10px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #666;
    font-size: 12px;
    background: #fff;
}

.share-box i, .share-item-alt i {
    width: 25px;
    font-size: 14px;
}

/* Colored Left Borders from Screenshot */
.whatsapp { border-left: 4px solid #25D366; }
.facebook { border-left: 4px solid #1877F2; }
.twitter  { border-left: 4px solid #000000; }
.linkedin { border-left: 4px solid #0077B5; }
.telegram { border-left: 4px solid #0088cc; }
/* Articles and Policies */
.policy-list {
    list-style: none;
    margin: 20px 0;
}
.policy-list li {
    font-size: 13px;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}
.policy-list li::before {
    content: "•";
    position: absolute;
    left: 0;
}

.article-entry {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 25px;
}
.article-link {
    color: #0D1A63;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 8px;
    cursor: pointer;
}
.article-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}
.btn-pdf {
    display: inline-block;
    background-color: #0D1A63;
    color: white;
    padding: 6px 12px;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    border-radius: 3px;
}

.view-all a {
    color: #0D1A63;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
}

/* Footer Styling */
.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #ddd;
    padding: 40px 0 0 0;
    margin-top: 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 30px;
    padding-left: 25px;
}
.footer-info p {
    font-size: 13px;
    margin-bottom: 5px;
}
.footer-links ul {
    list-style: none;
}
.footer-links ul li a {
    color: #0D1A63;
    text-decoration: none;
    font-size: 13px;
    line-height: 2;
}
.footer-bottom-blue {
    height: 40px;
    background-color: #0D1A63;
    width: 100%;

}
.img-section img {
    max-width: 100%;    }

    .about-p p {
        font-size: 14px;
        line-height: 1.6;
        text-align: justify;
        margin-bottom: 20px;
        text-decoration: none;
        color: inherit;
    }


    /* Editorial Board Styling */
.editorial-container {
    max-width: 100%;
    padding: 10px 0;
    font-family: Georgia, serif; /* Matches your site font */
}

/* Section Headings (e.g., Editor-in-Chief) */
.role-title {
    font-size: 24px;
    color: #222;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
    border-bottom: none; /* Removed the yellow underline from previous design */
}

/* Individual Editor Block */
.editor-block {
    margin-bottom: 30px;
    padding-left: 0; /* Removed padding that was used for the border */
    border: none;    /* Removed the side color line */
    background: transparent; /* Removed grey background */
}

/* Editor Name */
.editor-name {
    font-size: 15px;
    font-weight: bold;
    color: #000;
    margin-bottom: 6px;
}

/* Editor Details Text */
.editor-details {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 6px;
}

/* Links (Emails and Profile Links) */
.editor-link {
    color: #0563c1; /* The specific blue from your screenshot */
    text-decoration: none;
}

.editor-link:hover {
    text-decoration: underline;
}

.link-separator {
    color: #666;
    margin: 0 3px;
}

/* Container for the scrolling bar */
.journal-marquee-container {
    width: 100%;
    background-color: #eaeaeb;
    color: #0D1A63;
    overflow: hidden;
    padding: 10px 0;
    font-family: Georgia, serif; /* Matching your site font */
    position: relative;
    border-top: 3px solid #F68048; /* Journal Orange Accent */
    border-bottom: 1px solid #ddd;
}

/* Wrapper to hold the text */
.marquee-wrapper {
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}

/* The actual moving text */
.marquee-text {
    display: inline-block;
    padding-left: 100%; /* Start off-screen right */
    font-size: 15px;
    font-weight: bold;
    /* Animation definition - duration is set by JS, but here is a fallback */
    animation: scroll-left 25s linear infinite; 
}

/* Link styling inside the marquee */
.marquee-text a {
    color: #F68048; /* Orange color for the email to make it pop */
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.marquee-text a:hover {
    border-bottom: 1px solid #F68048;
}

/* Pause animation on hover so user can read/click */
.marquee-wrapper:hover .marquee-text {
    animation-play-state: paused;
}

/* The Moving Animation */
@keyframes scroll-left {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* --- MOBILE RESPONSIVENESS --- */

@media (max-width: 900px) {

    /* 1. Fix the Header (Logo & Title) */
    .header-flex {
        flex-direction: column;
        text-align: center;
    }

    .logo-box img {
        margin-right: 0;
        margin-bottom: 15px;
        height: 80px; /* Slightly smaller logo on mobile */
    }

    .title-box h1 {
        font-size: 18px; /* Smaller title font */
        line-height: 1.4;
    }

    /* 2. Fix the Navigation Bar */
    .nav-flex {
        flex-direction: column;
        padding-bottom: 15px;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding-top: 10px;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        padding: 12px 0;
        border-bottom: 1px solid #eee; /* faint line between links */
        display: block;
    }

    /* 3. Fix the Search Button */
    .search-link {
        margin-top: 15px;
        background-color: #f4f4f4;
        width: 100%;
        text-align: center;
        padding: 12px;
        border-radius: 5px;
    }

    /* 4. Adjust the Marquee Text size for mobile */
    .marquee-text {
        font-size: 13px;
        animation-duration: 15s !important; /* Make it faster on mobile */
    }
}

/* Dropdown Container */
.nav-links li.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 1001; /* Must be higher than marquee */
    top: 100%; /* Appears right below the nav item */
    left: 0;
    list-style: none;
    border-top: 2px solid #0076ba; /* Matches your header blue */
}

/* Dropdown Links */
.dropdown-content li a {
    color: #555 !important;
    padding: 12px 16px !important;
    text-decoration: none;
    display: block;
    font-size: 13px;
    font-weight: normal;
    text-transform: none !important; /* Xerox style uses sentence case for sub-menus */
    border-bottom: 1px solid #f1f1f1;
}

/* Hover Effect for Sub-links */
.dropdown-content li a:hover {
    background-color: #f9f9f9;
    color: #0076ba !important;
}

/* Show Dropdown on Hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Caret Icon Spacing */
.fa-caret-down {
    margin-left: 5px;
    font-size: 10px;
}