/* =============================
   GLOBAL STYLES
============================= */
body {
    font-family: 'Poppins', sans-serif;
    background: #f8f9fb;
    color: #333;
}

/* =============================
   HEADER & NAVIGATION
============================= */
#headerNavigation {
    background: linear-gradient(90deg, #0d1b2a, #1b263b, #415a77);
    border-bottom: 3px solid #ffcc00;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

/* Gradient background for Tab Menu */
#navigationPrimary {
    background: linear-gradient(90deg, #415a77, #1b263b, #0d1b2a);
    border-radius: 8px;
    padding: 5px;
}

#navigationPrimary li a {
    color: #fff !important;
    font-weight: 600;
    padding: 12px 18px;
    transition: 0.4s ease-in-out;
    border-radius: 6px;
    background: linear-gradient(135deg, #1b263b, #415a77);
    margin: 2px;
}

#navigationPrimary li a:hover {
    background: linear-gradient(135deg, #ffcc00, #ffa500);
    color: #0d1b2a !important;
    transform: scale(1.05);
}

/* Popup Hover Effect in Tab Menu */
#navigationPrimary li:hover ul {
    display: block !important;
    position: absolute;
    background: linear-gradient(135deg, #1b263b, #0d1b2a);
    padding: 10px;
    border-radius: 6px;
}
#navigationPrimary li ul li a {
    color: #fff !important;
    padding: 8px 14px;
    background: transparent;
}
#navigationPrimary li ul li a:hover {
    background: linear-gradient(135deg, #ffcc00, #ffa500);
    color: #000 !important;
}

/* =============================
   SIDEBAR
============================= */
.pkp_block {
    background: #ffffff;
    border: 2px solid #415a77;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 15px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
    transition: 0.3s ease-in-out;
}
.pkp_block:hover {
    transform: scale(1.02);
    border-color: #ffcc00;
}

/* Sidebar Titles */
.pkp_block .title {
    font-size: 16px;
    font-weight: bold;
    color: #1b263b;
    border-bottom: 2px solid #ffcc00;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

/* =============================
   FOOTER
============================= */
#footer {
    background: linear-gradient(90deg, #1b263b, #0d1b2a);
    color: #fff;
    padding: 30px;
    text-align: center;
    border-top: 3px solid #ffcc00;
}
#footer a {
    color: #ffcc00;
    font-weight: 600;
}
#footer a:hover {
    color: #fff;
}

/* =============================
   BUTTONS
============================= */
.pkp_site_nav .make_submission a,
.make_submission a,
#sidebar .block_make_submission a {
    background: #ffcc00 !important;
    color: #0d1b2a !important;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 8px;
    text-transform: uppercase;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    animation: blinkButton 1.5s infinite;
    transition: 0.3s;
}

.pkp_site_nav .make_submission a:hover,
.make_submission a:hover {
    background: #ffa500 !important;
    transform: scale(1.05);
}

@keyframes blinkButton {
    0%, 100% { background: #ffcc00; color: #0d1b2a; }
    50% { background: #1b263b; color: #fff; }
}

/* =============================
   ARTICLE BOXES
============================= */
.obj_article_summary {
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    transition: 0.3s;
}
.obj_article_summary:hover {
    border-color: #ffcc00;
    transform: translateY(-5px);
}

/* =============================
   POPUP ANIMATIONS (Optional)
============================= */
.popup-effect {
    animation: popupFade 0.6s ease-in-out;
}
@keyframes popupFade {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}
/* =====================================
   STP LOGO CARD SLIDER - SCROLL DOWN
   MEDIUM SPEED
===================================== */

.stp-down-slider {
    width: 260px;
    height: 560px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    padding: 14px 10px;
    background: #ffffff;
    border: 1px solid #e5edf3;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.10);
}

/* fade top and bottom */
.stp-down-slider::before,
.stp-down-slider::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 5;
    pointer-events: none;
}

.stp-down-slider::before {
    top: 0;
    background: linear-gradient(to bottom, #ffffff, transparent);
}

.stp-down-slider::after {
    bottom: 0;
    background: linear-gradient(to top, #ffffff, transparent);
}

/* vertical moving track */
.stp-down-track {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    animation: stpScrollDown 32s linear infinite;
}

/* pause on hover */
.stp-down-slider:hover .stp-down-track {
    animation-play-state: paused;
}

.stp-logo-set {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding-bottom: 18px;
}

/* card */
.stp-logo-card {
    width: 220px;
    height: 120px;
    flex: 0 0 120px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    border: 1px solid #cfdbe6;
    border-radius: 16px;
    text-decoration: none;

    box-shadow: 0 7px 18px rgba(15, 23, 42, 0.08);
    transition: all 0.35s ease;
}

/* equal image size */
.stp-logo-card img {
    width: 165px !important;
    height: 68px !important;
    max-width: 165px !important;
    max-height: 68px !important;
    min-width: 165px !important;
    min-height: 68px !important;

    object-fit: contain !important;
    object-position: center !important;
    display: block;
    border-radius: 8px;
    transition: all 0.35s ease;
}

/* hover effect */
.stp-logo-card:hover {
    transform: scale(1.04);
    border-color: #2563eb;
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.20);
}

.stp-logo-card:hover img {
    transform: scale(1.07);
}

/* downward movement */
@keyframes stpScrollDown {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}

/* mobile */
@media (max-width: 600px) {
    .stp-down-slider {
        width: 225px;
        height: 470px;
        padding: 12px 8px;
    }

    .stp-logo-set {
        gap: 14px;
        padding-bottom: 14px;
    }

    .stp-logo-card {
        width: 190px;
        height: 105px;
        flex-basis: 105px;
        border-radius: 14px;
    }

    .stp-logo-card img {
        width: 140px !important;
        height: 58px !important;
        max-width: 140px !important;
        max-height: 58px !important;
        min-width: 140px !important;
        min-height: 58px !important;
    }

    .stp-down-track {
        animation-duration: 28s;
    }
}
Template file css
.elite-template-box{
    background:#24415F;
    border-radius:18px;
    padding:22px 18px;
    text-align:center;
    font-family:Arial,sans-serif;
    box-shadow:0 8px 24px rgba(36,65,95,0.18);
    transition:0.3s ease;
    border:1px solid rgba(255,255,255,0.08);
    color:#000000;
}

.elite-template-header span{
    display:inline-block;
    background:rgba(255,255,255,0.12);
    color:#000000;
    font-size:10px;
    letter-spacing:1.5px;
    padding:6px 14px;
    border-radius:30px;
    font-weight:700;
}

.elite-template-box h3{
    margin:0 0 10px;
    color:#000000;
    font-size:20px;
    font-weight:700;
    line-height:1.4;
}

.elite-template-box p{
    color:#000000;
    font-size:13px;
    line-height:1.7;
    margin-bottom:20px;
}

.elite-template-btn{
    display:inline-block;
    background:#ffffff;
    color:#000000;
    text-decoration:none;
    padding:12px 24px;
    border-radius:10px;
    font-size:13px;
    font-weight:700;
    transition:0.3s ease;
    box-shadow:0 5px 14px rgba(0,0,0,0.10);
}

.elite-template-btn:hover{
    background:#f3f7fb;
    transform:scale(1.04);
}