﻿.main-menu-two__logo img{
    height:52px;
    width:auto;
}

/* Show dropdown on hover */
#megamenu.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* Aligns properly under nav */
}

/* Optional: prevent flicker */
#megamenu.dropdown .dropdown-menu {
    display: none;
    transition: all 0.3s ease;
    top: 100%;
    left: 0;
    right: 0;
}

/* Clean up spacing and visual style */
.dropdown-menu .list-group-item {
    background: transparent;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}

    .dropdown-menu .list-group-item:hover {
        background-color: #a6a182;
        color: var(--tecture-white);
        padding-left: 25px;
    }

.dropdown-menu a {
    font-size: 16px;
    padding: 10px 10px;
}

.textjustify {
    text-align:justify !important;
}

.why-choose-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .why-choose-list li {
        margin-bottom: 10px;
        font-size: 16px;
        line-height: 1.5;
        position: relative;
        padding-left: 28px; /* space for icon */
    }

        .why-choose-list li::before {
            content: "\f058"; /* Font Awesome check-circle */
            font-family: "Font Awesome 5 Pro";
            font-weight: 900;
            color: var(--tecture-base); /* green icon */
            position: absolute;
            left: 0;
            top: 0;
        }