﻿.logo {
    display: flex;
    align-items: center; /* Vertically center image & text */
    gap: 10px; /* Add spacing between image and text */
    text-decoration: none;
}

    .logo img {
        width: 60px; /* Adjust size as needed */
        height: auto;
        display: block;
    }

    .logo h4 {
        margin: 0;
        font-size: 22px;
        font-weight: 700;
        color: #333;
    }

        .logo h4 span {
            color: #ff565b; /* your brand accent color */
        }

/* Hide menu by default on mobile */
.nav {
    display: flex;
    flex-direction: row;
}

@media (max-width: 991px) {
    .nav {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        width: 100%;
        top: 100%;
        left: 0;
    }

        .nav.active {
            display: flex;
        }

    .menu-trigger {
        display: block;
        cursor: pointer;
    }
}
