/* Fix dropdown submenu links — template CSS applies text-transform: capitalize
   which turns "Become a Partner" into "Become A Partner" */
.navbar-nav .submenu ul .nav-link {
    text-transform: none;
}

/* Force reveal images visible — GSAP ScrollTrigger animation
   doesn't fire reliably due to timing with React hydration,
   leaving images hidden. Reliability over animation. */
.reveal {
    visibility: visible !important;
}

@media screen and (max-width: 768px) {
    .navbar-brand img {
        height: 40px
    }

    .navbar {
        padding: 15px 0px !important
    }

    .hero-feature-list {
        flex-direction: column;
        justify-content: center;
        align-items: center
    }

    .hero-feature-item-content {
        width: auto
    }

    .hero-feature-item {
        width: 100%;
        flex-wrap: nowrap;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        display: flex
    }

    .footer-logo-prime img {
        max-width: 100px
    }
}