.elementor-kit-12081{--e-global-color-primary:#333333;--e-global-color-secondary:#54595F;--e-global-color-text:#767676;--e-global-color-accent:#008A0E;--e-global-color-5dd8f89:#FFFFFF;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-12081 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Container styling */
.showroom-card {
    position: relative;
    overflow: hidden;
}

/* Hide contact-info by default with 0 opacity */
.showroom-card .contact-info {
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

/* Show contact-info with full opacity on hover */
.showroom-card:hover .contact-info {
    opacity: 1;
    transform: translateY(0);
}

/* Background overlay styling */
.showroom-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0); /* Initial state with no overlay */
    transition: background 0.5s ease-in-out;
}

/* Add overlay on hover */
.showroom-card:hover::before {
    background: rgba(0, 0, 0, 0.5); /* Overlay with 0.5 opacity */
}

/* Media query for mobile devices */
@media (max-width: 767px) {
    /* Ensure contact-info is always visible on mobile devices */
    .showroom-card .contact-info {
        opacity: 1 !important;
        transform: translateY(0);
    }

    /* Optional: Adjust overlay behavior for mobile if needed */
    .showroom-card::before {
        background: rgba(0, 0, 0, 0.5); /* Keep the overlay visible on mobile */
    }
}/* End custom CSS */