/* ================================
   VERTICAL UPWARD SCROLLING LOGOS
   CSS ONLY - HTML UNCHANGED
================================ */

div[style*="flex-direction: column"][style*="gap: 22px"] {
    width: 100% !important;
    max-width: 250px !important;
    height: 520px !important;
    margin: 0 auto !important;
    padding: 18px 10px !important;
    overflow: hidden !important;
    position: relative !important;
    background: #ffffff !important;
    border-radius: 14px !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
}

/* Scroll all items upward */
div[style*="flex-direction: column"][style*="gap: 22px"] > * {
    animation: fmrScrollUp 28s linear infinite !important;
}

/* Pause on hover */
div[style*="flex-direction: column"][style*="gap: 22px"]:hover > * {
    animation-play-state: paused !important;
}

/* Equal logo size */
div[style*="flex-direction: column"][style*="gap: 22px"] img {
    width: 170px !important;
    height: 70px !important;
    max-width: 170px !important;
    max-height: 70px !important;
    min-width: 170px !important;
    min-height: 70px !important;
    object-fit: contain !important;
    object-position: center !important;
    background: #ffffff !important;
    padding: 8px !important;
    border-radius: 10px !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.07) !important;
    transition: all 0.3s ease !important;
}

/* Hover effect */
div[style*="flex-direction: column"][style*="gap: 22px"] a:hover img {
    transform: scale(1.05) !important;
    border-color: #2563eb !important;
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.18) !important;
}

/* Text styling */
div[style*="flex-direction: column"][style*="gap: 22px"] div {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #111827 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    line-height: 1.3 !important;
}

/* Link styling */
div[style*="flex-direction: column"][style*="gap: 22px"] a {
    text-decoration: none !important;
    color: #111827 !important;
}

/* Fade effect top and bottom */
div[style*="flex-direction: column"][style*="gap: 22px"]::before,
div[style*="flex-direction: column"][style*="gap: 22px"]::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 55px;
    z-index: 5;
    pointer-events: none;
}

div[style*="flex-direction: column"][style*="gap: 22px"]::before {
    top: 0;
    background: linear-gradient(to bottom, #ffffff, transparent);
}

div[style*="flex-direction: column"][style*="gap: 22px"]::after {
    bottom: 0;
    background: linear-gradient(to top, #ffffff, transparent);
}

/* Upward animation */
@keyframes fmrScrollUp {
    0% {
        transform: translateY(520px);
    }

    100% {
        transform: translateY(-950px);
    }
}

/* Mobile */
@media (max-width: 600px) {
    div[style*="flex-direction: column"][style*="gap: 22px"] {
        max-width: 220px !important;
        height: 460px !important;
    }

    div[style*="flex-direction: column"][style*="gap: 22px"] img {
        width: 150px !important;
        height: 64px !important;
        max-width: 150px !important;
        max-height: 64px !important;
        min-width: 150px !important;
        min-height: 64px !important;
    }

    div[style*="flex-direction: column"][style*="gap: 22px"] div {
        font-size: 12px !important;
    }

    @keyframes fmrScrollUp {
        0% {
            transform: translateY(460px);
        }

        100% {
            transform: translateY(-900px);
        }
    }
}
/* ==============================
   FMR JOURNAL INFO BOX - MEDIUM
   ============================== */

.fmr-info-box {
  max-width: 980px;
  margin: 25px auto;
  padding: 24px 28px;
  background: linear-gradient(135deg, #f6fbff 0%, #eef7f1 100%);
  border-left: 6px solid #0f5fb8;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(15, 95, 184, 0.12);
  font-family: "Segoe UI", Arial, sans-serif;
  box-sizing: border-box;
}

.fmr-info-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 18px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(15, 95, 184, 0.12);
}

.fmr-info-row:last-child {
  border-bottom: none;
}

.fmr-label {
  color: #111827;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
}

.fmr-value {
  color: #0b2545;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.fmr-value a {
  color: #0f5fb8;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 800;
}

.fmr-value a:hover {
  color: #21a84a;
}

/* Small green accent on hover */
.fmr-info-row:hover {
  background: rgba(33, 168, 74, 0.06);
  border-radius: 6px;
}

/* Tablet */
@media (max-width: 768px) {
  .fmr-info-box {
    padding: 22px;
  }

  .fmr-info-row {
    grid-template-columns: 170px 1fr;
    gap: 14px;
  }

  .fmr-label,
  .fmr-value {
    font-size: 15px;
  }
}

/* Mobile */
@media (max-width: 520px) {
  .fmr-info-box {
    padding: 20px 16px;
  }

  .fmr-info-row {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 9px 0;
  }

  .fmr-label {
    font-size: 14px;
    color: #374151;
  }

  .fmr-value {
    font-size: 15px;
  }
}
Template file css
.soft-template-box{
    background: #F1F9F7;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 18px;
    padding: 16px;
    font-family: Arial, sans-serif;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.soft-template-box:hover{
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.soft-header{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:14px;
}

.soft-icon{
    width:52px;
    height:52px;
    background:#ffffff;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    box-shadow:0 3px 10px rgba(0,0,0,0.06);
    flex-shrink:0;
}

.soft-header h3{
    margin:0;
    font-size:15px;
    color:#1f3a35;
}

.soft-header p{
    margin:3px 0 0;
    font-size:12px;
    color:#5f6b68;
}

.soft-download-btn{
    display:block;
    text-align:center;
    background:#2f7d6d;
    color:#ffffff;
    text-decoration:none;
    padding:11px;
    border-radius:10px;
    font-size:13px;
    font-weight:600;
    transition:0.3s ease;
    position:relative;
    overflow:hidden;
}

.soft-download-btn:hover{
    background:#25665a;
    transform: scale(1.03);
}

.soft-download-btn::after{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:100%;
    height:100%;
    background:rgba(255,255,255,0.2);
    transform:skewX(-25deg);
    transition:0.5s;
}

.soft-download-btn:hover::after{
    left:120%;
}