.banner img {
  max-height: 300px;
  object-fit: cover;
}

h2 {
  color: #1a237e;
}


.solar-wrap{
    max-width:100%;
    margin:8px auto;
    overflow:hidden;
    background:#fff;
    border-radius:8px;
    box-shadow:0 2px 6px rgba(0,0,0,0.08);
    padding:6px 0;
    position: relative;   /* important */
}

.solar-ticker{
    position: relative;
    display:inline-block;
    white-space:nowrap;
    min-width:100%;          /* ⭐ forces movement */
    padding-left:100%;       /* ⭐ start off-screen */
    color:#0a7d2c;
    font-weight:600;
    font-size:14px;
    animation: solarMove 35s linear infinite;
}

@keyframes solarMove{
    from { transform: translateX(0); }
    to   { transform: translateX(-100%); }
}

/* Position the nested submenu to the right of the parent item */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
  display: none; /* Keep it hidden until toggled */
}

/* Show the submenu when the '.show' class is added via JavaScript */
.dropdown-submenu .dropdown-menu.show {
  display: block;
}
