.header-inner .site-branding {
    width: 100%;
    max-width: 15%;
}
.site-branding {
    width: 100%;
    max-width: 15%;
}


/* =========================================
   CUSTOM MENU SEARCH
========================================= */

.custom-menu-search {
    display: flex;
    align-items: center;
    margin-left: 30px;
}

.custom-header-search {
    width: 215px;
    height: 42px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    border: 1px solid #e8c3b9;
    border-radius: 10px;
    background: #fff;
}

.custom-search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: #222;
}

.custom-header-search input {
    width: 100%;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;

    font-size: 14px;
    line-height: 1;
}

.custom-header-search input::placeholder {
    color: #9da2ad;
}


/* =========================================
   SHOWROOM BUTTON
========================================= */

.custom-menu-showroom {
    margin-left: 22px;
}

.custom-menu-showroom > a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 24px !important;
    border-radius: 3px;
    background: #329397 !important;
    color: #fff !important;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;

    /* Hover setup */
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.35s ease;
}

/* Sliding background */
.custom-menu-showroom > a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #8D7168;
    z-index: -1;

    transform: translateX(-101%);
    transition: transform 0.35s ease;
}

/* Hover */
.custom-menu-showroom > a:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 145, 146, 0.25);
}

.custom-menu-showroom > a:hover::before {
    transform: translateX(0);
}

/* Click */
.custom-menu-showroom > a:active {
    transform: translateY(0) scale(0.97);
}


/* =========================================
   MENU ALIGNMENT
========================================= */

.elementor-nav-menu--main .elementor-nav-menu {
    display: flex;
    align-items: center;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

    .custom-menu-search {
        margin-left: 15px;
    }

    .custom-header-search {
        width: 180px;
    }

    .custom-menu-showroom {
        margin-left: 12px;
    }

    .custom-menu-showroom > a {
        padding: 0 16px !important;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .custom-menu-search {
        width: 100%;
        margin: 15px 0;
        padding: 0 15px;
    }

    .custom-header-search {
        width: 100%;
    }

    .custom-menu-showroom {
        width: 100%;
        margin: 0;
        padding: 0 15px 15px;
    }

    .custom-menu-showroom > a {
        width: 100%;
    }
}



/* =========================================
   COMMON BUTTON EFFECT
========================================= */

a#btn_showroom,
a#btn_visit {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    text-decoration: none;
    transition:
        color 0.35s ease,
        border-color 0.35s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

/* Animated background */
a#btn_showroom::before,
a#btn_visit::before {
    content: "";
    position: absolute;
    inset: 0;

    z-index: -1;

    transform: translateX(-101%);
    transition: transform 0.4s cubic-bezier(.77, 0, .18, 1);
}


/* =========================================
   SHOWROOM BUTTON
========================================= */

a#btn_showroom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px 48px;
    width: 233px;
    height: 46px;
    background: #009192;
    color: #fff;
    border: 1px solid #009192;
    border-radius: 4px;
}

/* Hover fill color */
a#btn_showroom::before {
    background: #8D7168;
}

a#btn_showroom:hover {
    color: #fff;
    border-color: #8D7168;
    transform: translateY(-3px);
    box-shadow:
        0 8px 18px rgba(0, 145, 146, 0.18),
        0 3px 6px rgba(0, 0, 0, 0.08);
}

a#btn_showroom:hover::before {
    transform: translateX(0);
}


/* =========================================
   VISIT BUTTON
========================================= */

a#btn_visit {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px 48px;
    width: 186px;
    height: 45px;
    border: 1px solid #8D7168;
    border-radius: 4px;
    background: transparent;
    color: #000000;
    flex: none;
    order: 1;
    flex-grow: 0;
}

/* Teal slide background */
a#btn_visit::before {
    background: #009192;
}

a#btn_visit:hover {
    color: #fff;
    border-color: #009192;
    transform: translateY(-3px);
    box-shadow:
        0 8px 18px rgba(0, 145, 146, 0.18),
        0 3px 6px rgba(0, 0, 0, 0.08);
}

a#btn_visit:hover::before {
    transform: translateX(0);
}


/* =========================================
   CLICK EFFECT
========================================= */

a#btn_showroom:active,
a#btn_visit:active {
    transform: translateY(-1px) scale(0.98);
}


/* =========================================
   ACCESSIBILITY
========================================= */

a#btn_showroom:focus-visible,
a#btn_visit:focus-visible {
    outline: 2px solid #009192;
    outline-offset: 4px;
}


/* Disable motion if user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {

    a#btn_showroom,
    a#btn_visit,
    a#btn_showroom::before,
    a#btn_visit::before {
        transition: none;
    }

    a#btn_showroom:hover,
    a#btn_visit:hover {
        transform: none;
    }
}





/* ==========================================
   TRUSTED SECTION - COMPLETE CARD STYLE
========================================== */

/* Equal height container */
section#trusted_section .e-con-inner {
    align-items: stretch;
}

/* Card */
section#trusted_section .elementor-widget-icon-box {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    display: flex;
    height: 100%;

    padding: 74px;

    background-color: #EFEEEB;
    border: 1px solid #E1BFB5;

    transition:
        transform 0.4s cubic-bezier(.2, .8, .2, 1),
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

/* Fill complete card height */
section#trusted_section .elementor-widget-icon-box > .elementor-widget-container {
    display: flex;
    width: 100%;
    height: 100%;
}

section#trusted_section .elementor-icon-box-wrapper {
    width: 100%;
    height: 100%;
}


/* ==========================================
   SLIDE BACKGROUND
========================================== */

section#trusted_section .elementor-widget-icon-box::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: -1;

    background: #009192;

    transform: translateY(101%);

    transition:
        transform 0.45s cubic-bezier(.77, 0, .18, 1);
}


/* ==========================================
   CARD HOVER
========================================== */

section#trusted_section .elementor-widget-icon-box:hover {
    transform: translateY(-8px);

    border-color: #009192;

    box-shadow:
        0 20px 40px rgba(0, 145, 146, 0.12),
        0 8px 18px rgba(0, 0, 0, 0.06);
}

section#trusted_section .elementor-widget-icon-box:hover::before {
    transform: translateY(0);
}


/* ==========================================
   ICON
========================================== */

section#trusted_section .elementor-icon {
    transition:
        transform 0.4s cubic-bezier(.2, .8, .2, 1),
        color 0.35s ease;
}

section#trusted_section .elementor-icon svg {
    padding: 11px;

    color: #208E97;
    fill: currentColor;

    background-color: rgba(0, 145, 146, 0.1);

    transition:
        transform 0.4s ease,
        color 0.35s ease,
        fill 0.35s ease,
        background-color 0.35s ease;
}


/* Icon Hover */
section#trusted_section .elementor-widget-icon-box:hover .elementor-icon {
    transform: translateY(-4px) scale(1.08);
    color: #fff;
}

section#trusted_section .elementor-widget-icon-box:hover .elementor-icon svg {
    color: #fff;
    fill: currentColor;

    background-color: rgba(255, 255, 255, 0.15);
}


/* ==========================================
   TITLE + DESCRIPTION
========================================== */

section#trusted_section .elementor-icon-box-title,
section#trusted_section .elementor-icon-box-title a,
section#trusted_section .elementor-icon-box-description {
    transition: color 0.35s ease;
}

section#trusted_section .elementor-widget-icon-box:hover .elementor-icon-box-title,
section#trusted_section .elementor-widget-icon-box:hover .elementor-icon-box-title a,
section#trusted_section .elementor-widget-icon-box:hover .elementor-icon-box-description {
    color: #fff !important;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1024px) {

    section#trusted_section .elementor-widget-icon-box {
        padding: 45px;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    section#trusted_section .elementor-widget-icon-box {
        padding: 35px 25px;
    }
}


/* ==========================================
   ACCESSIBILITY
========================================== */

@media (prefers-reduced-motion: reduce) {

    section#trusted_section .elementor-widget-icon-box,
    section#trusted_section .elementor-widget-icon-box::before,
    section#trusted_section .elementor-icon,
    section#trusted_section .elementor-icon svg {
        transition: none;
    }

    section#trusted_section .elementor-widget-icon-box:hover {
        transform: none;
    }
}


/* tabs */


#catagories_tabs .elementor-icon-list-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    flex-wrap: wrap;
}

#catagories_tabs .elementor-icon-list-item {
    cursor: pointer;
    padding: 5px 24px;
/*     border: 1px solid #E1BFB5; */
    border-radius: 4px;
    color: #8D7168;
    background: transparent;
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

#catagories_tabs .elementor-icon-list-item:hover {
    background: rgba(0, 145, 146, 0.08);
    border-color: #009192;
    color: #009192;

    transform: translateY(-2px);
}

/* Active Tab */
#catagories_tabs .elementor-icon-list-item.active {
    background: #009192;
    border-color: #009192;
    color: #fff;
}

#catagories_tabs .elementor-icon-list-item.active .elementor-icon-list-text {
    color: #fff !important;
}


/* =========================================
   TAB CONTENT
========================================= */

/* Hide all by default */
#windows,
#lighting,
#Flooring {
    display: none;
}

/* Show active section */
#windows.active-tab-content,
#lighting.active-tab-content,
#Flooring.active-tab-content {
    display: block;
}


/* =========================================
   FADE ANIMATION
========================================= */

@keyframes categoryTabFade {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#windows.active-tab-content,
#lighting.active-tab-content,
#Flooring.active-tab-content {
    animation: categoryTabFade 0.45s ease;
}



section#windows .elementor-container.elementor-column-gap-default, section#lighting .elementor-container.elementor-column-gap-default ,section#Flooring .elementor-container.elementor-column-gap-default{
    box-sizing: border-box;
    background: #FBF9F6;
    border: 1px solid #E1BFB5;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding:0px;
}


section#windows img,section#lighting img,section#Flooring img{
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    width:100%;
    max-width: 90%;
    float: inline-start;
}

section#windows a#btn_showroom,section#lighting a#btn_showroom,section#Flooring a#btn_showroom{
   width: 260px !important;
}

div#catagories_tabs {
    background: #FBF9F6;
    border: 1px solid #E1BFB5;
    border-radius: 4px;
    padding: 4px;
    width:100%;
    max-width: 84%;
}


a.elementor-post__read-more {
    position: absolute;
    bottom: 0px;
    right: 30px;
}

article.elementor-post.elementor-grid-item {
    background: #FBF9F6;
    border: 1px solid #E1BFB5;
    border-radius: 8px;
    
}

.elementor-post__card img{
    border-top-left-radius:8px;
    border-top-right-radius:8px;
}




/* Testimonial Card */

#client_testimonial .elementor-testimonial {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 296px;
    padding: 42px 42px 28px;
    border-radius: 5px;
    background: #fff;
    box-sizing: border-box;
}

#client_testimonial .elementor-testimonial::before {
    content: "\201D";
    position: absolute;
    top: 10px;
    right: 13px;
    font-family: Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    color: #eadbd3;
}


#client_testimonial .elementor-testimonial__content {
    order: 1;
    margin: 0 0 26px 0;
}


#client_testimonial .elementor-testimonial__text {
    margin: 0;
    padding: 0;
    font-size: 13px;
    line-height: 1.55;
    font-weight: 400;
    font-style: italic;
    color: #4b4542;
}


.elementor-testimonial__header {
    order: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding: 0;
}

.elementor-testimonial__image {
    width: 35px !important;
    height: 35px !important;
    min-width: 35px;
    flex: 0 0 35px;
    margin: 0 !important;
}

#client_testimonial .elementor-testimonial__image img {
    display: block;
    width: 35px !important;
    height: 35px !important;
    object-fit: cover;
    border-radius: 3px;
}

#client_testimonial .elementor-testimonial__cite {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 !important;
    padding: 0 !important;
    font-style: normal;
}

.elementor-testimonial__name {
    display: block;
    margin: 0;
    padding: 0;
    font-size: 10px;
    line-height: 1.2;
    font-weight: 700;
    color: #332d2a;
}


.elementor-testimonial__title {
    display: block;
    margin: 2px 0 0;
    padding: 0;
    font-size: 8px;
    line-height: 1.25;
    font-weight: 400;
    color: #6b625d;
}

#client_testimonial .elementor-testimonial__icon {
    display: none !important;
}

#client_testimonial .elementor-testimonial__header{
    border-block-start: 1px solid #e1e8ed;
    border-block-end: none !important;
}

label.elementor-field-label {
    display: none;
}



/* FORM ROW */
.elementor-form-fields-wrapper {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: flex-end !important;
    position: relative;
}

/* EMAIL FIELD GROUP */
.elementor-field-group-email {
    width: calc(100% - 34px) !important;
    max-width: calc(100% - 34px) !important;
    flex: 0 0 calc(100% - 34px) !important;
    padding: 0 !important;
}

/* HIDE EMAIL LABEL */
.elementor-field-group-email .elementor-field-label {
    display: none !important;
}

/* EMAIL INPUT */
.elementor-field-group-email input[type="email"] {
    width: 100% !important;
    height: 42px !important;

    padding: 0 15px !important;

    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 3px 0 0 3px !important;

    color: #fff !important;
    font-size: 12px !important;

    outline: none !important;
    box-shadow: none !important;
}

/* PLACEHOLDER */
.elementor-field-group-email input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.45) !important;
    opacity: 1 !important;
}

/* INPUT FOCUS */
.elementor-field-group-email input[type="email"]:focus {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.18) !important;
    box-shadow: none !important;
}

/* SUBMIT WRAPPER */
.elementor-field-type-submit {
    width: 34px !important;
    max-width: 34px !important;
    flex: 0 0 34px !important;

    padding: 0 !important;
    margin: 0 !important;
}

/* WHITE ARROW BUTTON */
.elementor-field-type-submit .elementor-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 34px !important;
    min-width: 34px !important;
    height: 42px !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    border: 0 !important;
    border-radius: 0 3px 3px 0 !important;
    box-shadow: none !important;
}

/* CENTER ICON */
.elementor-field-type-submit .elementor-button-content-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* SVG ICON */
.elementor-field-type-submit .elementor-button-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
}

.elementor-field-type-submit .elementor-button-icon svg {
    display: block;
    width: 10px !important;
    height: 10px !important;
}

/* MOBILE */
@media (max-width: 767px) {
    .elementor-field-group-email {
        width: calc(100% - 34px) !important;
        max-width: calc(100% - 34px) !important;
        flex: 0 0 calc(100% - 34px) !important;
    }

    .elementor-field-type-submit {
        width: 34px !important;
        max-width: 34px !important;
        flex: 0 0 34px !important;
    }
}

.elementor-col-80 {
    margin-bottom: 0px !important;
}


div#cs_specification {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}


div#cs_faq\'s .elementor-tab-title {
    border-bottom: 1px solid #e1bfb582;
}


div#form_info {
    background: #FFFFFF;
    border: 1px solid rgba(225, 191, 181, 0.4);
    border-radius: 16px;
    padding:30px;
}


div#form_info input,textarea#wpforms-531-field_6 {
    background: #EFEEEB;
    border: 1px solid #8D7168;
    border-radius: 4px;

}

div#form_info select#wpforms-531-field_5 {
    background: #EFEEEB;
    border: 1px solid #8D7168;
    border-radius: 4px;
}


div#form_info option {
    background: #EFEEEB;
    border: 1px solid #8D7168;
    border-radius: 4px;
    font-family: 'Liberation Serif';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #000000;
}

div#form_info button#wpforms-submit-531 {
    background: #FF6B35;
    border-radius: 4px;
    border:none;
    outline:none;
    width:100%;
    font-family: 'Liberation Serif';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #5F1900;
}


div#form_info button#wpforms-submit-531:hover{
    color: #fff;
    border-color: #8D7168;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 145, 146, 0.18), 0 3px 6px rgba(0, 0, 0, 0.08);
}

div#form_info label {
    font-family: 'Liberation Serif';
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    display: flex;
    align-items: center;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #1B1C1A;
}


div#cs-direction a#btn_showroom {
    background: #FF6B35;
    border: #FF6B35;
    font-family: 'Liberation Serif';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    /* identical to box height, or 150% */
    display: flex;
    align-items: center;
    text-align: center;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    width: 225px;
    height: 46px;
}


div#about_list a {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding:10px 15px;
}


div#cs_specification a#btn_showroom {
    width: 258px;
    height: 44px;
}


div#cs_series .elementor-image-box-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.elementor-post__badge {
    background: #fff !important;
    color: #000 !important;
    border-radius: 5px !important;
}


ul#menu-primary-menu li a {
    color: #594139;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 20px;
    font-style: normal;
    padding: 8px 8px;
    font-size: 15px !important;
}



/* Hide old dropdown icon */
.site-navigation ul.menu li.menu-item-has-children::after {
    display: none !important;
}

/* Add new down-angle arrow */
.site-navigation ul.menu > li.menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-left: 8px;
    vertical-align: 3px;
}



div#cs-ready a#btn_visit {
    border: 1px solid white;
    height: 42px;
    color: #fff;
}

form.elementor-form  .elementor-button[type="submit"] svg * {
    fill: #000000 !important;
}


.site-navigation ul.menu{
    align-items: center;
}


@media (max-width: 767px) {

    .custom-menu-showroom {
        width: 100%;
    }

    a#btn_showroom,a#btn_visit {
        
        width: 100% !important;
        
    }

    #catagories_tabs .elementor-icon-list-item{
        padding: 5px 23px;
    }

    div#catagories_tabs{
        max-width: 100%;
    }

    section#windows img, section#lighting img, section#Flooring img{
        width: 100% !important;
        max-width: 100%;
        border-top-right-radius: 10px;
    }

}



.wpforms-container input[type="number"]::-webkit-outer-spin-button,
.wpforms-container input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.wpforms-container input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}


div#window_img {
    border-radius: 6px;
    box-shadow: 6px 8px 8px rgba(0, 0, 0, 0.15);
    padding-right:2p;
}

div#window_img img{
    border-radius:10px
}


div#banner_img {
    background: rgba(255, 255, 255, 0.002);
    box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

div#banner_img img{
   border-radius: 8px;
}