/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

*, *::before, *::after {
    box-sizing: border-box;
}

html, 
body, 
button, 
input, 
select, 
textarea,

p, span, a, li {
    font-family: 'Jost', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.single-post h1, h2, h3, h4, h5, h6 {
    font-family: 'Jost', sans-serif !important;
}
body.single-post .elementor-widget-text-editor ul {
    list-style: none !important;
    padding-left: 0 !important;
}

body.single-post .elementor-widget-text-editor ul li {
    position: relative;
    padding-left: 28px !important;
    margin-bottom: 12px;
    line-height: 1.7;
}

body.single-post .elementor-widget-text-editor ul li::before {
    content: "↗";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 17px;
    font-weight: 600;
}

body.single-post .elementor-widget-text-editor h2 {
    margin-top: 32px !important;
    padding-bottom: 10px;
}

body.single-post .elementor-widget-text-editor h2::after {
    content: "";
    display: block;
    width: 55px;
    height: 3px;
    background: #734A2E;
    margin-top: 8px;
}
body {
    margin: 0;
    padding: 0;
    color: #333333;
    line-height: 1.6;
}
.interioz-header {
    width: 100%;
    background-color: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #eaeaea;
    position: relative;
    z-index: 999 !important;
}

/* DESKTOP LAYOUT (1025px and up) */
.interioz-header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
}

.interioz-nav.nav-left {
    justify-self: end;
}

.interioz-nav.nav-right {
    justify-self: start;
}

.interioz-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.interioz-menu li {
    margin: 0;
}

.interioz-menu li a {
    text-decoration: none;
    color: #000000;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 13px;
    font-weight: 500;
        letter-spacing: 1px;
    text-transform: uppercase;
    padding:7px 12px;
    border-radius: 30px;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
    display: inline-block;
}

/* Black Pill Hover / Active */
.interioz-menu li.current-menu-item a,
.interioz-menu li.current_page_item a,
.interioz-menu li a:hover {
    background-color: #000000 !important;
    color: #ffffff !important;
}

/* Logo Styling */
.interioz-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.interioz-logo img,
.custom-logo {
    max-height: 67px !important;
    width: auto !important;
    display: block;
}

.interioz-logo-text {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #000000;
    text-decoration: none;
}

/* Hide Mobile Elements on Desktop */
.interioz-mobile-toggle,
.interioz-mobile-drawer {
    display: none;
}

/* =====================================================
   MOBILE / TABLET BREAKPOINT (Under 1024px)
===================================================== */

@media screen and (max-width: 1024px) {
    
    .desktop-only {
        display: none !important;
    }

    .interioz-header-container {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;
    }

    /* Hamburger Toggle Button */
    .interioz-mobile-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 18px;
        background: transparent !important;
        border: none;
        cursor: pointer;
        padding: 0;
    }

    .interioz-mobile-toggle .icon-bar {
        width: 100%;
        height: 2px;
        background-color: #000000;
        border-radius: 2px;
    }

    .interioz-logo img,
    .custom-logo {
        max-height: 45px !important;
    }

    .interioz-logo-text {
        font-size: 20px;
    }

    /* Mobile Drawer Menu */
    .interioz-mobile-drawer {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #ffffff;
        z-index: 999;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        padding: 20px 30px;
        box-sizing: border-box;
        overflow-y: auto;
    }

    .interioz-mobile-drawer.is-open {
        transform: translateX(0);
    }

    .mobile-drawer-header {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 30px;
    }

    .interioz-mobile-close {
        background: transparent;
        border: none;
        font-size: 32px;
        line-height: 1;
        cursor: pointer;
        padding: 0;
        color: #000000;
    }

    /* Mobile Menu Items List */
    .interioz-mobile-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .interioz-mobile-menu li {
        border-bottom: 1px solid #f0f0f0;
    }

    .interioz-mobile-menu li a {
        display: block;
        padding: 16px 0;
        color: #000000;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        text-decoration: none;
    }
}

.interioz-banner-swiper-wrapper {
    width: 100%;
    position: relative;
    border-radius: 0px;
    overflow: hidden;
    
}

.interioz-main-swiper {
    width: 100%;
    height: 80vh;
    min-height: 550px;
    position: relative;
    border-radius: 0px;
}

.interioz-main-swiper .swiper-slide {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.interioz-main-swiper .slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.interioz-main-swiper .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 2;
}

.interioz-main-swiper .slide-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
    color: #ffffff;
}

.interioz-main-swiper .slide-subtitle {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;font-family: jost !important;
}

.interioz-main-swiper .subtitle-line {
    width: 50px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.6);
}

.interioz-main-swiper .slide-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin: 0;font-family: jost !important;
}

.interioz-main-swiper .slide-3d-thumb {
    position: absolute;
    bottom: 40px;
    right: 120px;
    width: 280px;
    height: 180px;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 4;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.interioz-main-swiper .slide-3d-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.interioz-swiper-nav {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
}

@media(max-width:991px){
.interioz-swiper-nav {
   
    top: 75% !important;
   
}
}
.interioz-swiper-nav .swiper-button-next,
.interioz-swiper-nav .swiper-button-prev {
    position: static;
    width: 42px;
    height: 42px;
    margin: 0;
    background: #ffffff;
    color: #000000;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.2s ease;
}

.interioz-swiper-nav .swiper-button-next:after,
.interioz-swiper-nav .swiper-button-prev:after {
    display: none;
}

.interioz-swiper-nav .swiper-button-next:hover,
.interioz-swiper-nav .swiper-button-prev:hover {
    background: #000000;
    color: #ffffff;
}

@media (max-width: 991px) {
    .interioz-main-swiper .slide-title {
        font-size: 40px;
    }
    .interioz-main-swiper .slide-3d-thumb {
        width: 200px;
        height: 130px;
        right: 80px;
        bottom: 20px;
    }
}

@media (max-width: 767px) {
    .interioz-main-swiper .slide-3d-thumb {
        display: none;
    }
}


/* ==========================================================
   EXACT GALLERY LAYOUT
   ========================================================== */

.custom-gallery .gallery {
    display: grid !important;

    grid-template-columns: 1fr 1fr 1fr !important;
/*     grid-template-rows: 260px 260px 260px !important; */

    gap: 8px !important;

    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}


/* Remove WordPress defaults */
.custom-gallery .gallery-item {
    float: none !important;
    width: auto !important;
    max-width: none !important;

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

    overflow: hidden !important;

    box-sizing: border-box !important;
}


/* ==========================================================
   IMAGE POSITIONS
   ========================================================== */


/* ROW 1
   G1 = WIDE
   G2 = SMALL
*/

.custom-gallery .gallery-item:nth-child(1) {
    grid-column: 1 / 3 !important;
    grid-row: 1 !important;
}

.custom-gallery .gallery-item:nth-child(2) {
    grid-column: 3 !important;
    grid-row: 1 !important;
}


/* ROW 2
   G3 = SMALL
   G4 = WIDE
*/

.custom-gallery .gallery-item:nth-child(3) {
    grid-column: 1 !important;
    grid-row: 2 !important;
}

.custom-gallery .gallery-item:nth-child(4) {
    grid-column: 2 / 4 !important;
    grid-row: 2 !important;
}


/* ROW 3
   G5 = WIDE
   G6 = SMALL
*/

.custom-gallery .gallery-item:nth-child(5) {
    grid-column: 1 / 3 !important;
    grid-row: 3 !important;
}

.custom-gallery .gallery-item:nth-child(6) {
    grid-column: 3 !important;
    grid-row: 3 !important;
}


/* ==========================================================
   IMAGE WRAPPER
   ========================================================== */

.custom-gallery .gallery-icon {
    width: 100% !important;
    height: 100% !important;

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

    overflow: hidden !important;
}


.custom-gallery .gallery-icon a {
    display: block !important;

    width: 100% !important;
    height: 100% !important;
}


.custom-gallery .gallery-icon img {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    max-width: none !important;

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

    object-fit: cover !important;
    object-position: center center !important;

    border: 0 !important;

    transition: transform 0.5s ease !important;
}


/* Hover */
.custom-gallery .gallery-item:hover img {
    transform: scale(1.03);
}


/* Remove clearfix */
.custom-gallery .gallery:before,
.custom-gallery .gallery:after {
    display: none !important;
    content: none !important;
}


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

@media (max-width: 1199px) and (min-width: 768px) {

    .custom-gallery .gallery {
        grid-template-rows: 220px 220px 220px !important;
        gap: 6px !important;
    }

}


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

@media (max-width: 767px) {

    .custom-gallery .gallery {
        grid-template-columns: 1fr !important;
        grid-template-rows: repeat(4, 220px) !important;
        gap: 6px !important;
    }

    .custom-gallery .gallery-item:nth-child(1),
    .custom-gallery .gallery-item:nth-child(2),
    .custom-gallery .gallery-item:nth-child(3),
    .custom-gallery .gallery-item:nth-child(4),
    .custom-gallery .gallery-item:nth-child(5),
    .custom-gallery .gallery-item:nth-child(6) {
        grid-column: 1 !important;
    }

    .custom-gallery .gallery-item:nth-child(1) {
        grid-row: 1 !important;
    }

    .custom-gallery .gallery-item:nth-child(2) {
        grid-row: 2 !important;
    }

    .custom-gallery .gallery-item:nth-child(3) {
        grid-row: 3 !important;
    }

    .custom-gallery .gallery-item:nth-child(4) {
        grid-row: 4 !important;
    }

    .custom-gallery .gallery-item:nth-child(5) {
        grid-row: 5 !important;
    }

    .custom-gallery .gallery-item:nth-child(6) {
        grid-row: 6 !important;
    }

}


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

@media (max-width: 480px) {

    .custom-gallery .gallery {
        grid-template-rows: repeat(4, 180px) !important;
        gap: 5px !important;
    }

}
/* ==========================================================================
   MEGA MENU OVERLAY & POSITIONING
   ========================================================================== */

.interioz-menu > li.has-mega-menu {
    position: static !important;
}

.interioz-mega-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-top: 3px solid #d32f2f;
    z-index: 99999;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1140px;
}

/* Show Mega Menu on Hover */
.interioz-menu > li.has-mega-menu:hover .interioz-mega-dropdown {
    display: block;
}
/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 767px) {

    .custom-gallery .gallery {
        grid-template-columns: 1fr !important;
        grid-template-rows: repeat(6, 220px) !important;
        gap: 6px !important;
    }

    .custom-gallery .gallery-item:nth-child(1),
    .custom-gallery .gallery-item:nth-child(2),
    .custom-gallery .gallery-item:nth-child(3),
    .custom-gallery .gallery-item:nth-child(4),
    .custom-gallery .gallery-item:nth-child(5),
    .custom-gallery .gallery-item:nth-child(6) {
        grid-column: 1 !important;
    }

    .custom-gallery .gallery-item:nth-child(1) {
        grid-row: 1 !important;
    }

    .custom-gallery .gallery-item:nth-child(2) {
        grid-row: 2 !important;
    }

    .custom-gallery .gallery-item:nth-child(3) {
        grid-row: 3 !important;
    }

    .custom-gallery .gallery-item:nth-child(4) {
        grid-row: 4 !important;
    }

    .custom-gallery .gallery-item:nth-child(5) {
        grid-row: 5 !important;
    }

    .custom-gallery .gallery-item:nth-child(6) {
        grid-row: 6 !important;
    }

}


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

@media (max-width: 480px) {

    .custom-gallery .gallery {
        grid-template-rows: repeat(4, 180px) !important;
        gap: 5px !important;
    }

}


/* ==========================================================================
   MOBILE DRAWER ACCORDION OVERRIDE (.interioz-mobile-menu)
   ========================================================================== */

/* 1. COLLAPSE ALL SUB-MENUS (LEVEL 2 & LEVEL 3) BY DEFAULT */
.interioz-mobile-menu ul.sub-menu {
    display: none !important;
    padding-left: 15px !important;
}

/* 2. EXPAND SUB-MENU WHEN PARENT LI HAS .mobile-open */
.interioz-mobile-menu li.mobile-open > ul.sub-menu {
    display: block !important;
}

/* 3. TOGGLE BUTTON & ARROW POSITIONING */
.interioz-mobile-menu li.menu-item-has-children {
    position: relative !important;
}

.interioz-mobile-menu li.menu-item-has-children > a {
    display: inline-block !important;
    padding-right: 40px !important;
}

.interioz-mobile-menu .sub-toggle {
    position: absolute !important;
    right: 0 !important;
    top: 0 !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 10 !important;
}

.interioz-mobile-menu .sub-toggle::after {
    content: 'â¯' !important;
    font-size: 12px !important;
    font-weight: bold !important;
    color: #333333 !important;
    display: inline-block !important;
    transform: rotate(90deg) !important;
    transition: transform 0.25s ease, color 0.25s ease !important;
}

/* Rotate arrow when open */
.interioz-mobile-menu li.mobile-open > .sub-toggle::after {
    transform: rotate(-90deg) !important;
    color: #d32f2f !important;
}

/* Hover Bridge (Prevents menu closing when moving cursor down) */
.interioz-nav .interioz-menu > li.has-mega-menu::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
    display: block;
    z-index: 99998;
}

/* ==========================================================================
   CONTAINER & FLEX/GRID LAYOUT
   ========================================================================== */

.mega-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 20px 20px;
}

.mega-columns-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

/* LEFT SIDE: Items WITH Sub-lists */
.mega-parents-section {
    display: flex;
    gap: 35px;
}

.mega-column-item {
    min-width: 220px;
}

/* Category Title Styling (Only when sub-menu exists) */
.mega-column-title.has-submenu {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 15px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mega-column-title.has-submenu a {
    color: #cb2d2d !important;
    text-decoration: none;
    text-transform: uppercase;
}

.title-icon {
    font-size: 18px;
    line-height: 1;
}

/* Sub-list Links Styling (Level 3) */
.mega-sub-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-sub-item {
    margin-bottom: 10px;
}

.mega-sub-item a {
    font-size: 14px!important;
    font-weight: 600;
    color: #000 !important;
    text-transform: capitalize !important;
    text-decoration: none; 
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.mega-sub-item a:hover {
    color: #cb2d2d !important;
    transform: translateX(3px);
}

.dash-icon {
    color: #cb2d2d;
    font-weight: 900;
    font-size: 14px;
}

/* RIGHT SIDE: Standalone Items Grid (WITHOUT Sub-lists) */
.mega-standalone-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 25px;
    flex: 1;
    padding-top: 5px;
}

.mega-standalone-item a {
    font-size: 15px!important;
    font-weight: 700;
    color: #000 !important;
    text-transform: capitalize!important;
    text-decoration: none; 
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.mega-standalone-item a:hover {
    color: #cb2d2d !important;
    transform: translateX(3px);
}

/* ==========================================================================
   PROMO IMAGE COLUMN
   ========================================================================== */

.mega-promo-col {
    width: 280px;
    flex-shrink: 0;
}

.mega-promo-col img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.promo-placeholder {
    background: #f4f4f4;
    height: 220px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #666666;
    display: none;
}/* Mega Menu Flex Layout */
.mega-columns-wrap {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

/* Left Side: Category Columns with Sub-Lists */
.mega-parents-section {
    display: flex;
    gap: 40px;
}

.mega-column-item {
    min-width: 220px;
}

.mega-column-title.has-submenu {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 15px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mega-column-title.has-submenu a {
    color: #cb2d2d !important;
    text-decoration: none;
    text-transform: uppercase;
}

.mega-sub-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-sub-item {
    margin-bottom: 8px;
}

.mega-sub-item a {
    font-size: 13px;
    color: #444;
    text-decoration: none;
    text-transform: uppercase;
}

/* Right Side: Standalone Items Grid */
.mega-standalone-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 25px;
    flex: 1;
    padding-top: 5px;
}

.mega-standalone-item a {
    font-size: 14px;
    font-weight: 700;
    color: #000 !important;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.mega-standalone-item a:hover {
    color: #cb2d2d !important;
}

.dash-icon {
    color: #cb2d2d;
}
/* 1. Increase container width so everything fits */
.mega-container {
    /* max-width: 1350px; */ /* Increased from 1200px */
    margin: 0 auto;
    padding: 20px 20px;
    box-sizing: border-box; /* Ensures padding stays inside the width */
}

/* 2. Make left columns slightly more flexible */
.mega-column-item {
    min-width: 200px; /* Reduced from 220px */
}

/* 3. Allow the image column to shrink dynamically if screen gets smaller */
.mega-promo-col {
    width: 100%;
    /* max-width: 280px; */ /* Caps it at 280px but allows shrinking */
    flex-shrink: 1;   /* Changed from 0 to prevent overflow */
    display: none;
}

/* ==========================================================================
   MOBILE ACCORDION DROPDOWN OVERRIDES
   ========================================================================== */

@media (max-width: 991px) {
    /* Prevent hover triggers on mobile */
    .interioz-menu > li.has-mega-menu:hover .interioz-mega-dropdown {
        display: none;
    }

    /* Mega Container & Layout Adjustments */
    .interioz-mega-dropdown {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        box-shadow: none !important;
        border-top: none !important;
        display: none; /* Hidden until main arrow clicked */
        width: 100% !important;
        padding: 10px 0 !important;
    }

    .mega-columns-wrap,
    .mega-parents-section {
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
    }

    .mega-column-item {
        width: 100% !important;
        min-width: 100% !important;
    }

    /* STRICTLY HIDE LEVEL 3 SUB-LISTS BY DEFAULT */
    .mega-sub-list {
        display: none !important;
        padding-left: 15px !important;
        margin-top: 10px !important;
    }

    /* Display sub-list only when parent header is toggled open */
    .mega-column-title.mobile-open + .mega-sub-list {
        display: block !important;
    }

    /* Arrow Styling Level 1 & Level 2 */
    .interioz-menu > li.has-mega-menu {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .mobile-toggle-btn, 
    .sub-mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        cursor: pointer;
        margin-left: auto;
    }

    .mobile-toggle-btn::after, 
    .sub-mobile-toggle::after {
        content: 'â¯';
        font-size: 13px;
        font-weight: bold;
        color: #333333;
        display: inline-block;
        transform: rotate(90deg);
        transition: transform 0.25s ease, color 0.25s ease;
    }

    /* Rotate Arrow on Active Open State */
    .mobile-open > .mobile-toggle-btn::after,
    .mega-column-title.mobile-open .sub-mobile-toggle::after {
        transform: rotate(-90deg);
        color: #d32f2f;
    }
}/* FORCE HIDE ALL SUB-LISTS ON MOBILE BY DEFAULT */
@media screen and (max-width: 991px) {
    /* Target every possible nested list wrapper */
    .interioz-mega-dropdown ul,
    .interioz-mega-dropdown .mega-sub-list,
    .interioz-mega-dropdown .sub-menu,
    .mega-column-block ul,
    .mega-column-item ul {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
        opacity: 0 !important;
        margin: 0 !important;
        padding: 0 0 0 15px !important;
    }

    /* ONLY SHOW WHEN ACCORDION HAS THE 'MOBILE-OPEN' CLASS */
    .interioz-mega-dropdown .mobile-open + ul,
    .interioz-mega-dropdown .mobile-open + .mega-sub-list,
    .interioz-mega-dropdown .mobile-open .mega-sub-list,
    .interioz-mega-dropdown .mega-column-title.mobile-open + ul,
    .interioz-mega-dropdown .mega-column-title.mobile-open + .mega-sub-list {
        display: block !important;
        visibility: visible !important;
        height: auto !important;
        opacity: 1 !important;
        overflow: visible !important;
        margin-top: 10px !important;
    }
}/* ==========================================================================
   MASTER MOBILE ACCORDION OVERRIDE (MAX-WIDTH: 991PX)
   ========================================================================== */

@media screen and (max-width: 991px) {

    /* 1. Reset Mega Dropdown position & hide main container */
    .interioz-menu > li.has-mega-menu:hover .interioz-mega-dropdown {
        display: none !important;
    }

    .interioz-mega-dropdown {
        display: none !important;
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        box-shadow: none !important;
        border: none !important;
        background: #f9f9f9 !important;
        padding: 10px 15px !important;
    }

    /* Open main mega menu when parent has .mobile-open class */
    .interioz-menu > li.has-mega-menu.mobile-open > .interioz-mega-dropdown {
        display: block !important;
    }

    /* 2. Force layout into single-column stack */
    .mega-container,
    .mega-columns-wrap,
    .mega-parents-section,
    .mega-column-item,
    .mega-standalone-section {
        display: block !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .mega-promo-col {
        display: none !important;
    }

    /* 3. HARD COLLAPSE ALL NESTED SUB-LISTS (LEVEL 3) */
    .interioz-mega-dropdown ul,
    .interioz-mega-dropdown li ul,
    .interioz-mega-dropdown .mega-sub-list,
    .interioz-mega-dropdown .sub-menu {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        opacity: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding-left: 15px !important;
    }

    /* 4. EXPAND SUB-LIST ONLY WHEN TITLE HAS .mobile-open */
    .interioz-mega-dropdown .mega-column-title.mobile-open + ul,
    .interioz-mega-dropdown .mega-column-title.mobile-open + .mega-sub-list,
    .interioz-mega-dropdown .mega-column-title.mobile-open + .sub-menu,
    .interioz-mega-dropdown li.mobile-open > ul,
    .interioz-mega-dropdown li.mobile-open > .sub-menu {
        display: block !important;
        visibility: visible !important;
        height: auto !important;
        opacity: 1 !important;
        overflow: visible !important;
        margin-top: 10px !important;
        margin-bottom: 15px !important;
    }

    /* 5. Mobile Click Arrows */
    .mobile-toggle-btn,
    .sub-mobile-toggle {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        cursor: pointer;
        float: right;
    }

    .mobile-toggle-btn::after,
    .sub-mobile-toggle::after {
        content: 'â¯' !important;
        font-size: 13px !important;
        font-weight: bold !important;
        color: #333333 !important;
        display: inline-block !important;
        transform: rotate(90deg) !important;
        transition: transform 0.25s ease !important;
    }

    /* Rotate Arrow on Active Open State */
    .mobile-open > .mobile-toggle-btn::after,
    .mobile-open .sub-mobile-toggle::after,
    .mega-column-title.mobile-open .sub-mobile-toggle::after {
        transform: rotate(-90deg) !important;
        color: #d32f2f !important;
    }
}/* Align Sub-Menu Headers & Arrows on Mobile */
@media screen and (max-width: 991px) {
    .mega-column-title.has-submenu {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        cursor: pointer !important;
        width: 100% !important;
    }

    .sub-mobile-toggle::after {
        content: 'â¯' !important;
        font-size: 12px !important;
        font-weight: bold !important;
        color: #333333 !important;
        display: inline-block !important;
        transform: rotate(90deg) !important;
        transition: transform 0.25s ease, color 0.25s ease !important;
    }

    .mega-column-title.mobile-open .sub-mobile-toggle::after {
        transform: rotate(-90deg) !important;
        color: #d32f2f !important;
    }
}
/* 1. Define continuous lock animation */
@keyframes forceCollapse {
    0%, 100% {
        display: none !important;
        height: 0 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        overflow: hidden !important;
    }
}

@keyframes forceExpand {
    0%, 100% {
        display: block !important;
        height: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        overflow: visible !important;
    }
}

/* 2. Apply lock to all sub-lists on mobile */
@media screen and (max-width: 991px) {
    .interioz-mega-dropdown .mega-sub-list,
    .interioz-mega-dropdown ul.sub-menu,
    .interioz-mega-dropdown ul {
        animation: forceCollapse 0.01s infinite !important;
    }

    /* 3. Unlock ONLY when user clicks (adds .mobile-open class) */
    .interioz-mega-dropdown .mega-column-title.mobile-open + .mega-sub-list,
    .interioz-mega-dropdown .mega-column-title.mobile-open + ul,
    .interioz-mega-dropdown li.mobile-open > ul {
        animation: forceExpand 0.01s infinite !important;
    }

    /* Mobile Arrow Alignments */
    .mega-column-title.has-submenu {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        cursor: pointer !important;
    }

    .sub-mobile-toggle::after {
        content: 'â¯' !important;
        font-size: 13px !important;
        font-weight: bold !important;
        color: #333333 !important;
        display: inline-block !important;
        transform: rotate(90deg) !important;
    }

    .mega-column-title.mobile-open .sub-mobile-toggle::after {
        transform: rotate(-90deg) !important;
        color: #d32f2f !important;
    }
}
/* Align Sub-Menu Headers & Arrows on Mobile */
@media screen and (max-width: 991px) {
    .mega-column-title.has-submenu {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        cursor: pointer !important;
        width: 100% !important;
    }

  .interioz-mobile-menu .sub-toggle::after {
    content: '\276F' !important; /* Pure CSS Hex Code for right angle bracket */
    font-size: 12px !important;
    font-weight: bold !important;
    color: #333333 !important;
    display: inline-block !important;
    transform: rotate(90deg) !important;
    transition: transform 0.25s ease, color 0.25s ease !important;
}

    .mega-column-title.mobile-open .sub-mobile-toggle::after {
        transform: rotate(-90deg) !important;
        color: #d32f2f !important;
    }
    .interioz-mobile-menu li.mobile-open > ul.sub-menu {
    display: block !important;
    padding-left: 2em !important;
}
}

/* ==========================================================================
   Modern FAQ Accordion Styles
   ========================================================================== */

/* Container Setup */
.faq-main {
/*     max-width: 1200px;
    margin: 40px auto 80px;
    padding: 0 20px; */
    font-family: inherit;
}

.faq-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    text-align: left;
    position: relative;
    padding-bottom: 12px;
}

/* Accent border under section heading */
.faq-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #2563eb; /* Primary accent color */
    border-radius: 2px;
}

/* Accordion Outer Container */
.faq-accordion {
    border-top: 1px solid #e5e7eb;
}

/* Individual FAQ Card */
.faq-item {
/*     border: 1px solid #e5e7eb; */
    transition: background-color 0.2s ease;
}



/* Question Trigger */
.faq-question {
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    position: relative;
    padding: 20px 20px 20px;
    margin: 0;
    line-height: 1.5;
    transition: color 0.2s ease;
    user-select: none;
    background: #fff;
    margin-bottom: 10px;    font-family: 'Jost';
}

.faq-question:hover, .faq-question.active

 {
    color: #fff;
    background: #714b31;
    margin-bottom: 12px;
}

/* Custom + / - Indicator Icons */
.faq-question::after {
    content: '+';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    line-height: 1;
    transition: transform 0.3s ease, color 0.3s ease;
	width: 30px;
    height: 30px;
    padding: 0px 16px 0 8px;background: #714b31;
}

.faq-question.active::after {
    content: '−';
    color: #fff;
    transform: translateY(-50%) rotate(180deg);
}

/* Answer Body */

.faq-answer

 {
    display: none;
    padding: 22px 20px;
    color: #000;
    font-size: 1rem;
    line-height: 1.7;
    padding-top: 10px;
}

.faq-answer.open {
    display: block;
    animation: faqFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Subtle Animation */
@keyframes faqFadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Scaling */
@media (max-width: 768px) {
    .faq-main {
        margin-bottom: 40px;
    }

    .faq-heading {
        font-size: 1.5rem;
    }

    .faq-question {
        font-size: 1rem;
        padding-right: 30px;
    }
}
.list-bg li {
    display: inline-block;
    background: #734A2E;
    color: #fff;
    padding: 12px 13px !important;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    list-style: none;margin-bottom: 10px !important;
}

.list-bg1 li {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 10px 13px !important;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    list-style: none;margin-bottom: 10px !important;
	border:1px solid #734A2E;
}
.list-bg22 li {
    display: inline-block;
    background: #734A2E;
    color: #fff;
    padding: 23px 41px !important;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    list-style: none;
    margin-bottom: 10px !important;
}
table {
    width: 100%;
    border-collapse: collapse;
}

table th,
table td {
    padding: 14px 16px;
    border: 1px solid #ddd;
    text-align: left;
    vertical-align: middle;
}

/* Mobile responsive */
@media (max-width: 767px) {
    table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    table th,
    table td {
        white-space: nowrap;
        padding: 12px;
        font-size: 14px;
    }
}
/* Accessibility contrast fix */

.custom-divider svg {
  
    fill: #222 !important;
    stroke: #222 !important;
}

.custom-divider svg path,
.custom-divider svg line,
.custom-divider svg polyline,
.custom-divider svg polygon {
    fill: #222 !important;
    stroke: #222 !important;
}

.blog-list-category {
    color: #333 !important;
}

.blog-list-category a {
    color: #333 !important;
}

.premium-gallery1 .gallery-item a img{
        border-radius: 12px 12px 0 0 !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    background: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;    aspect-ratio: 4 / 3;
}

.client-gallery1 .gallery-caption{
        border-radius:  12px 12px !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    background: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
}

.client-gallery1 .gallery-item a img {
      border-radius: 12px !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    background: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    padding: 20px;
}
.monsoon-contact-form {
    width: 100%;
}

.monsoon-contact-form .form-field {
    margin-bottom: 30px;
}

.monsoon-contact-form input[type="text"],
.monsoon-contact-form input[type="email"],
.monsoon-contact-form input[type="tel"],
.monsoon-contact-form textarea {
    width: 100%;
    border: 0 !important;
    border-bottom: 1px solid #d9d9d9 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 0 14px 10px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #111;
}

.monsoon-contact-form input[type="text"],
.monsoon-contact-form input[type="email"] {
    height: 40px;
}

.monsoon-contact-form textarea {
    height: 220px;
    resize: vertical;
    padding-top: 8px;
}

.monsoon-contact-form input::placeholder,
.monsoon-contact-form textarea::placeholder {
    color: #aaa;
    opacity: 1;
}

.monsoon-contact-form input:focus,
.monsoon-contact-form textarea:focus {
    border-bottom-color: #111 !important;
}

.monsoon-contact-form .form-submit {
    margin-top: 25px;
}

.monsoon-contact-form input[type="submit"] {
    background: #000 !important;
    color: #fff !important;
    border: 0 !important;
    border-radius: 4px !important;
    padding: 11px 16px !important;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
    transition: all 0.3s ease;
}

.monsoon-contact-form input[type="submit"]:hover {
    background: #333 !important;
}
.sticky-main {
    overflow: visible !important;
}

.sticky-wrap {
    overflow: visible !important;
}

.sticky-wrap > .e-con-inner {
    display: flex !important;
    align-items: flex-start !important;
    overflow: visible !important;
}

.sticky-left {
    position: sticky !important;
    top: 120px !important;
    align-self: flex-start !important;
    height: auto !important;
    flex: 0 0 45% !important;
}

.sticky-wrap > .e-con-inner > .elementor-element-82609bd {
    flex: 0 0 55% !important;
}

.elementor-heading-title span{ 
    color:#734A2E
}
.phast-footer{
    display:none !important
}
.footer-heading {
   
    font-family: 'Jost';
}
.footer-column-title {
  
    font-family: jost;
}
.premium-table {
   
    margin: 30px 0;
    padding: 0 !important;
    overflow-x: auto;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
}

.premium-table table {
  
 
    margin: 0 !important;
    border-collapse: separate;
    border-spacing: 0;
    font-family: Poppins, sans-serif;
}

.premium-table th {
    padding: 18px 22px;
    background: #734A2E;
    color: #fff;
    border: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
    white-space: nowrap;
}

.premium-table td {
    padding: 18px 22px;
    background: #fff;
    color: #555;
    border: 0;
    border-bottom: 1px solid #ededed;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
    vertical-align: middle;
    transition: .25s ease;
}

.premium-table tbody tr:last-child td {
    border-bottom: 0;
}

.premium-table tbody tr:hover td {
    background: #f7f9f4;
    color: #222;
}

.premium-table td:first-child {
    color: #222;
    font-weight: 600;
}

/* Header corners */
.premium-table th:first-child {
    border-radius: 15px 0 0 0;
}

.premium-table th:last-child {
    border-radius: 0 15px 0 0;
}

/* Remove Elementor empty paragraph spacing */
.premium-table > p {
    display: none;
}

/* Mobile */
@media (max-width: 767px) {
    .premium-table {
        margin: 20px 0;
        border-radius: 12px;
    }


    .premium-table th,
    .premium-table td {
        padding: 14px 16px;
        font-size: 13px;
    }
}.list-bgt1 li {
    display: inline-block;
    background: transparent;
    color: #000;
    padding: 10px 13px !important;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    list-style: none;
    margin-bottom: 10px !important;
  
}
.premium-table {
    width: 100%;
    margin: 30px 0;
    padding: 0 !important;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.premium-table {
    width: 100%;
    margin: 30px 0;
    padding: 0 !important;
    overflow-x: auto;
}

.premium-table .specs {
  
    border-collapse: collapse;
    margin: 0 !important;
    font-family: Poppins, sans-serif;
}

.premium-table .specs th,
.premium-table .specs td {
    padding: 15px 18px;
    border: 1px solid #ddd !important;
    text-align: left;
    font-size: 14px;
    line-height: 1.5;
}

.premium-table .specs th {
    width: 35%;
    background: #f5f5f5;
    color: #222;
    font-weight: 600;
}

.premium-table .specs td {
    width: 65%;
    background: #fff;
    color: #555;
}

/* Remove empty Elementor paragraph */
.premium-table > p {
    display: none;
}

/* Mobile */
@media (max-width: 767px) {
   

    .premium-table .specs th,
    .premium-table .specs td {
        padding: 12px 14px;
        font-size: 13px;
    }
    .single-post h1{font-size: 30px !important;}
}
body.single-post .elementor-widget-text-editor h2 {
  
    font-size: 24px !important;
}
/* Hide default theme tags/meta rendered above the footer */
.single-post .entry-footer,
.single-post .post-tags,
.single-post .tagged,
.single-post footer.entry-meta {
    display: none !important;
}

html{
    overflow-x:hidden !important;
}
.overflow-h{
     overflow-x:hidden;
}

/* =========================================================
   MOBILE CONTACT FORM ANCHOR SCROLL
========================================================= */
/* =========================================================
   CONTACT FORM ANCHOR - MOBILE
========================================================= */

/* =========================================
   MOBILE ENQUIRE SCROLL FIX
========================================= */

@media (max-width: 600px) {

    html {
        scroll-behavior: smooth !important;
    }

    #contact-form {
        scroll-margin-top: 200px !important;
    }

    .sirpi-enquire-btn {
        cursor: pointer !important;
        pointer-events: auto !important;
    }
}