/**
* Theme Name: Xcare Child
* Description: This is a child theme of xcare 
* Author: designervily
* Template: xcare
* Version: 1.0
*/
/* Only apply on wider screens (desktop) */
@media (min-width: 992px) {
    /* Widen the dropdown and center it under the Products tab */
    nav .sub-menu {
        width: 600px !important;       /* Adjust if needed */
        padding: 15px 30px !important;
        column-count: 2;
        column-gap: 50px;
        left: 50% !important;
        transform: translateX(-50%);
    }

    /* Force each menu item to stay in one line */
    nav .sub-menu li a {
        white-space: nowrap;
        display: block;
        font-size: 15px;              /* Optional: adjust font size */
        line-height: 1.6;
    }

    /* Optional: hover cleaner */
    nav .sub-menu li a:hover {
        opacity: 0.8;
    }
}

