﻿/*
Theme Name: New Liquidation Centre Child
Template: new-liquidationcentre
Author: Your Name
Description: Child theme for New Liquidation Centre
Version: 1.0
*/

@import url('../new-liquidationcentre/style.css');

/* Custom styles go below */

/* New Navigation System - Clean Reset Styles */
.header-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #111111;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    padding: 0 20px;
}

/* Responsive header container */
@media (max-width: 1440px) {
    .header-inner {
        padding: 0 30px;
    }
}

@media (max-width: 1024px) {
    .header-inner {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .header-inner {
        padding: 0 10px;
    }
}

.header-container .logo {
    flex-shrink: 0;
}

.header-container .logo img {
    display: block;
    height: auto;
}

/* Ensure navigation wrapper is a positioning context */
.new-navigation-wrapper {
    /* Reset any inherited navigation styles */
    all: unset;
    display: block;
    flex-grow: 1;
    margin-left: 20px;
    position: relative;
}

.new-navigation-wrapper * {
    box-sizing: border-box;
}

/* Mega menu container - constrained to menu list width */
.new-menu-list.new-menu-reset li.mega-menu {
    position: static;
}

.new-menu-list.new-menu-reset {
    position: relative;
}

/* Prevent mega menu from triggering hover on its own area */
.new-menu-list.new-menu-reset li.mega-menu > .sub-menu {
    position: absolute;
    top: calc(100% + 20px); /* Larger gap to prevent accidental hover */
    left: 0;
    right: 0;
    width: auto;
    background: #ffffff !important;
    box-shadow: 0 8px 25px rgba(255,255,255,0.3) !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 40px 40px 80px 40px; /* Bottom padding for absolute footer */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    z-index: 99999; /* Bring to front */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none; /* Prevent this area from triggering hover */
}

/* Re-enable pointer events only when mega menu is shown */
.new-menu-list.new-menu-reset li.mega-menu:hover > .sub-menu {
    pointer-events: auto;
}

/* Simple mega menu footer - two column layout */
.mega-footer-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100000;
}

.mega-footer-content {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%) !important;
    color: white !important;
    padding: 15px 40px;
    border-radius: 0 !important;
    border: none !important;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-left {
    flex: 1;
    text-align: left;
}

.footer-left h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 700;
    color: white !important;
}

.footer-left p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.4;
    color: white !important;
}

.footer-right {
    flex-shrink: 0;
}

.footer-right .footer-button,
.mega-footer-content .footer-button,
.footer-button {
    background: #fd6d3b !important;
    background: linear-gradient(90deg, #fe523a 0%, #fcad40 100%) !important;
    color: white !important;
    margin: 0.5rem 0.25rem !important;
    padding: 1rem 2rem !important;
    border-radius: 5rem !important;
    width: fit-content !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    text-decoration: none !important;
    border: none !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}

.footer-right .footer-button:hover,
.mega-footer-content .footer-button:hover,
.footer-button:hover {
    background: linear-gradient(90deg, #e04528 0%, #e5a038 100%) !important;
    transform: translateY(-2px) !important;
    color: white !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(254, 82, 58, 0.3) !important;
}

/* Responsive design */
@media (max-width: 768px) {
    .mega-footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    .footer-left h4 {
        font-size: 16px;
    }
    
    .footer-left p {
        font-size: 13px;
    }
}

/* Ensure mega menu has relative positioning and bottom padding */
.new-menu-list.new-menu-reset li.mega-menu > .sub-menu {
    position: relative;
    padding-bottom: 90px !important;
}

.mega-footer-link {
    display: block;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.mega-footer-link:hover {
    transform: translateY(-2px);
}





/* Responsive footer banner */
@media (max-width: 768px) {
    .mega-menu-footer-banner {
        margin: 25px -25px -25px -25px !important;
    }
    
    .mega-footer-content {
        padding: 20px 25px;
        font-size: 14px;
    }
}

.new-menu-container {
    all: unset;
    display: block;
    width: 100%;
}

.new-menu-list.new-menu-reset {
    /* Complete reset for the menu list */
    all: unset;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.new-menu-list.new-menu-reset li {
    /* Reset list items */
    all: unset;
    display: inline-block;
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    list-style: none;
}

.new-menu-list.new-menu-reset li a {
    /* Reset menu links */
    all: unset;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    color: #ffffff;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.new-menu-list.new-menu-reset li a:hover {
    /* Orange hover state */
    color: #fd6d3b;
}

/* Dropdown Menu Styles */
.new-menu-list.new-menu-reset .sub-menu {
    all: unset;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    list-style: none;
    margin: 0;
    padding: 0px 0;
    border-top: 2px solid #fd6d3b;
}

.new-menu-list.new-menu-reset li {
    position: relative;
}

.new-menu-list.new-menu-reset li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.new-menu-list.new-menu-reset .sub-menu li {
    all: unset;
    display: block;
    width: 100%;
    border-bottom: 1px solid #eeeeee;
    position: relative;
}

.new-menu-list.new-menu-reset .sub-menu li:last-child {
    border-bottom: none;
}

/* Original dropdown styles removed - using new enhanced styles below */

/* Multi-level Dropdown Support */
.new-menu-list.new-menu-reset .sub-menu .sub-menu {
    top: -2px;
    left: 100%;
    border-top: 2px solid #fd6d3b;
   
}

.new-menu-list.new-menu-reset .sub-menu .sub-menu .sub-menu {
    top: 0px;
    left: 100%;
    border-top: 2px solid #fd6d3b;
  
}

/* Dropdown Arrow Indicators - only for desktop mega menu */
.new-menu-list.new-menu-reset li.menu-item-has-children > a::after {
    content: '';
    display: none; /* Hide by default */
}

/* Show arrows only on desktop for mega menu */
@media (min-width: 769px) {
    .new-menu-list.new-menu-reset li.menu-item-has-children > a::after {
        content: '';
        display: inline-block;
        margin-left: 8px;
        margin-top: -2px;
        width: 0;
        height: 0;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 6px solid #ffffff;
        vertical-align: middle;
        transition: transform 0.3s ease;
    }
}

.new-menu-list.new-menu-reset .sub-menu li.menu-item-has-children > a::after {
    display: none;
}

.new-menu-list.new-menu-reset .sub-menu li.menu-item-has-children > a:hover::after {
    color: #111111 !important;
}

/* Remove all arrows from sub-menu items except those with children */
.new-menu-list.new-menu-reset .sub-menu li a::before,
.new-menu-list.new-menu-reset .sub-menu li a::after {
    display: none !important;
}

/* Add right arrow for sub-menu items that have children */
.new-menu-list.new-menu-reset .sub-menu li.menu-item-has-children > a::after {
    content: '';
    display: inline-block !important;
    margin-left: 8px;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #111111;
    vertical-align: middle;
    transition: border-left-color 0.3s ease;
}

/* Make arrow dark on hover */
.new-menu-list.new-menu-reset .sub-menu li.menu-item-has-children > a:hover::after {
    border-left-color: #111111;
}

/* Remove default arrows and add custom triangle for dropdown items with sub-menus only */
.new-menu-list.new-menu-reset .sub-menu li.menu-item-has-children a::before {
    content: 'â†’';
    display: inline-block;
    margin-right: 8px;
    color: #111111;
    font-size: 14px;
    font-family: Arial, sans-serif;
    font-weight: normal;
    vertical-align: middle;
    line-height: 1;
    transform: none !important;
    transition: none !important;
    writing-mode: horizontal-tb !important;
    text-orientation: mixed !important;
    direction: ltr !important;
}

/* Remove arrows from items without sub-menus */
.new-menu-list.new-menu-reset .sub-menu li:not(.menu-item-has-children) a::before {
    display: none;
}

/* Navigation wrapper styles */
.new-navigation-wrapper {
    display: block;
    flex-grow: 1;
    margin-left: 20px;
    position: relative;
}

/* Basic dropdown menu styles */
.new-menu-list.new-menu-reset li.has-sub-menu > .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid #eeeeee;
    border-top: 3px solid #fd6d3b;
    padding: 0;
    display: none;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

/* Show dropdown on hover */
.new-menu-list.new-menu-reset li.has-sub-menu:hover > .sub-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Dropdown menu items */
.new-menu-list.new-menu-reset .sub-menu li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #f0f0f0;
    list-style: none;
    background: #ffffff !important;
}

.new-menu-list.new-menu-reset .sub-menu li:last-child {
    border-bottom: none;
}

.new-menu-list.new-menu-reset .sub-menu li a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: #111111 !important;
    text-decoration: none;
    border: none;
    background: #ffffff !important;
    transition: all 0.3s ease;
}

.new-menu-list.new-menu-reset .sub-menu li a:hover {
    background: #f8f9fa !important;
    color: #111111 !important;
    padding-left: 25px;
}

/* Override any WordPress menu item classes that might have orange backgrounds */
.new-menu-list.new-menu-reset .sub-menu .menu-item,
.new-menu-list.new-menu-reset .sub-menu .menu-item a,
.new-menu-list.new-menu-reset .sub-menu .current-menu-item,
.new-menu-list.new-menu-reset .sub-menu .current-menu-item a,
.new-menu-list.new-menu-reset .sub-menu .menu-item-has-children,
.new-menu-list.new-menu-reset .sub-menu .menu-item-has-children a {
    background: #ffffff !important;
    color: #111111 !important;
}

.new-menu-list.new-menu-reset .sub-menu .menu-item a:hover,
.new-menu-list.new-menu-reset .sub-menu .current-menu-item a:hover,
.new-menu-list.new-menu-reset .sub-menu .menu-item-has-children a:hover {
    background: #f8f9fa !important;
    color: #111111 !important;
}

/* ============================================
   MEGA MENU SYSTEM
   ============================================ */

/* Mega menu container - only for items with 'mega-menu' class */
.new-menu-list.new-menu-reset li.mega-menu > .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: auto;
    background: #ffffff !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid #eeeeee;
    border-top: 3px solid #fd6d3b;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

/* Show mega menu on hover - with gap to prevent accidental triggers */
.new-menu-list.new-menu-reset li.mega-menu:hover > .sub-menu,
.new-navigation-wrapper .mega-menu:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: grid !important;
}

/* Column headers (non-clickable titles) */
.new-menu-list.new-menu-reset li.mega-menu .mega-column-header {
    padding-bottom: 15px;
    margin-bottom: 15px;
    position: relative;
    z-index: 100000;
}

.new-menu-list.new-menu-reset li.mega-menu .mega-column-header .mega-column-title {
    font-size: 16px;
    font-weight: bold;
    color: #111111 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: default;
    pointer-events: none;
    border-bottom: 2px solid #fd6d3b;
    padding-bottom: 10px;
    margin-bottom: 15px;
    display: block;
}

/* Submenu items under column headers */
.new-menu-list.new-menu-reset li.mega-menu .mega-column-header .sub-menu {
    display: block;
    position: static;
    width: 100%;
    background: none !important;
    box-shadow: none;
    border: none;
    padding: 0;
    margin: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    grid-template-columns: none;
}

.new-menu-list.new-menu-reset li.mega-menu .mega-column-header .sub-menu li {
    margin: 0;
    padding: 0;
    border: none;
    display: block;
    list-style: none;
    background: transparent !important;
}

.new-menu-list.new-menu-reset li.mega-menu .mega-column-header .sub-menu li a {
    padding: 8px 0;
    font-size: 14px;
    line-height: 1.4;
    color: #666 !important;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    background: transparent !important;
}

.new-menu-list.new-menu-reset li.mega-menu .mega-column-header .sub-menu li a:hover {
    color: #fd6d3b !important;
    border-bottom-color: #fd6d3b;
    padding-left: 5px;
    background: transparent !important;
}

/* Sub-dropdown menus within mega menu columns */
.new-menu-list.new-menu-reset li.mega-menu .mega-column-header .sub-menu li.menu-item-has-children {
    position: relative;
    margin: 0; /* Ensure no extra margin */
    padding: 0; /* Ensure no extra padding */
}

.new-menu-list.new-menu-reset li.mega-menu .mega-column-header .sub-menu li.menu-item-has-children > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.new-menu-list.new-menu-reset li.mega-menu .mega-column-header .sub-menu li.menu-item-has-children > a::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #999;
    margin-left: 8px;
}

.new-menu-list.new-menu-reset li.mega-menu .mega-column-header .sub-menu li.menu-item-has-children:hover > a::after {
    border-top-color: #fd6d3b;
}

/* Third-level dropdown (sub-dropdown within mega menu) */
.new-menu-list.new-menu-reset li.mega-menu .mega-column-header .sub-menu .sub-menu {
    position: static;
    top: auto;
    left: auto;
    width: 100%;
    background: #f8f9fa !important;
    box-shadow: none;
    border: none;
    border-left: 3px solid #fd6d3b;
    padding: 0; /* Remove padding when collapsed */
    margin: 0; /* Remove margin that creates gaps */
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: translateY(-10px); /* Start position for push-down effect */
    transition: all 0.4s ease, max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
    z-index: 1001;
    display: block; /* Keep as block but use max-height for animation */
}

.new-menu-list.new-menu-reset li.mega-menu .mega-column-header .sub-menu li.menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    max-height: 300px;
    display: block !important;
    padding: 10px 0 10px 15px; /* Add padding back when visible */
    transform: translateY(0); /* End position for push-down effect */
}

.new-menu-list.new-menu-reset li.mega-menu .mega-column-header .sub-menu .sub-menu li {
    margin: 0;
    padding: 0;
    border: none;
    display: block;
    list-style: none;
    background: transparent !important;
}

.new-menu-list.new-menu-reset li.mega-menu .mega-column-header .sub-menu .sub-menu li a {
    padding: 8px 15px;
    font-size: 13px;
    line-height: 1.4;
    color: #666 !important;
    text-decoration: none;
    display: block;
    border: none;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    background: transparent !important;
}

.new-menu-list.new-menu-reset li.mega-menu .mega-column-header .sub-menu .sub-menu li:last-child a {
    border-bottom: none;
}

.new-menu-list.new-menu-reset li.mega-menu .mega-column-header .sub-menu .sub-menu li a:hover {
    color: #fd6d3b !important;
    background: #f8f9fa !important;
    padding-left: 20px;
}

/* Responsive mega menu */
@media (max-width: 1024px) {
    .new-menu-list.new-menu-reset li.mega-menu > .sub-menu {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .new-menu-list.new-menu-reset li.mega-menu > .sub-menu {
        grid-template-columns: 1fr;
        padding: 25px;
        gap: 20px;
    }
}



/* Responsive dropdown positioning */
@media (max-width: 1200px) {
    .new-menu-list.new-menu-reset li.has-sub-menu > .sub-menu {
        left: auto;
        right: 0;
    }
}

/* Hide all default WordPress dropdown arrows on mobile */
@media (max-width: 768px) {
    .menu-item-has-children > a::after,
    .page_item_has_children > a::after,
    .new-menu-list li.menu-item-has-children > a::after,
    .canvas-menu-list li.menu-item-has-children > a::after {
        display: none !important;
        content: none !important;
    }
}

/* Mobile Canvas Navigation Styles */
.mobile-canvas-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
    position: relative;
}

.mobile-canvas-toggle span {
    display: block;
    height: 3px;
    width: 25px;
    background: white;
    margin: 3px 0;
    transition: 0.3s ease;
}

.mobile-canvas-toggle.active span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
    background: white;
}

.mobile-canvas-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-canvas-toggle.active span:last-child {
    transform: rotate(-45deg) translate(7px, -6px);
    background: white;
}

/* Canvas Menu Overlay */
.mobile-canvas-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-canvas-overlay.overlay-active {
    display: block;
    opacity: 1;
}

/* Canvas Menu Container */
.mobile-canvas-menu {
    position: fixed;
    top: 0;
    right: -350px;
    width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mobile-canvas-menu .canvas-content {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
}

.mobile-canvas-menu.canvas-open {
    right: 0;
}

/* Canvas Header */
.canvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #111111;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 10;
}

.canvas-header h3 {
    margin: 0;
    margin-bottom: 0;padding-bottom: 0px;
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
}

.canvas-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #ffffff !important;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: color 0.2s ease;
}

.canvas-close span {
    color: #ffffff !important;
    transition: color 0.2s ease;
}

.canvas-close:hover {
    color: #ff6b35 !important;
}

.canvas-close:hover span {
    color: #ff6b35 !important;
}

/* Canvas Content */
.canvas-content {
    padding: 0;
    position: relative;
}

/* Mobile Canvas Footer Banner */
.mobile-canvas-footer {
    
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
}

.mobile-canvas-footer-content {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%) !important;
    color: #ffffff!important;
    padding: 30px 20px;
    border-radius: 0 !important;
    border: none !important;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-direction: column;
    text-align: center;
}

.mobile-canvas-footer-content .footer-left {
    flex: 1;
    text-align: center;
    padding: 0 15px;
}

.mobile-canvas-footer-content .footer-left h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff !important;
}

.mobile-canvas-footer-content .footer-left p {
    
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.4;
    color: #ffffff !important;
}

.mobile-canvas-footer-content .footer-right {
    flex-shrink: 0;
}

.mobile-canvas-footer-content .footer-button {
    background: #fd6d3b !important;
    background: linear-gradient(90deg, #fe523a 0%, #fcad40 100%) !important;
    color: white !important;
    margin: 0.5rem 0.25rem !important;
    padding: 1rem 2rem !important;
    border-radius: 5rem !important;
    width: fit-content !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    text-decoration: none !important;
    border: none !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}

.mobile-canvas-footer-content .footer-button:hover {
    background: linear-gradient(90deg, #e04528 0%, #e5a038 100%) !important;
    transform: translateY(-2px) !important;
    color: white !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(254, 82, 58, 0.3) !important;
}

/* Responsive adjustments for mobile canvas footer */
@media (max-width: 768px) {
    .mobile-canvas-footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    .mobile-canvas-footer-content .footer-left h4 {
        font-size: 16px;
    }
    
    .mobile-canvas-footer-content .footer-left p {
        font-size: 13px;
    }
}

/* Column Title Styling for Mobile Canvas */
.mobile-canvas-menu .canvas-menu-list li.mega-column-header {
    border-bottom: 2px solid #ff6b35 !important;
}

.mobile-canvas-menu .canvas-menu-list li.mega-column-header .column-title-text {
    display: block;
    padding: 15px 20px;
    color: #ff6b35 !important;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    cursor: default;
    background: transparent;
}

.mobile-canvas-menu .canvas-menu-list li.mega-column-header:hover {
    background: transparent !important;
}

/* Canvas Menu List */
.canvas-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.canvas-menu-list li {
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    overflow: visible;
}

.canvas-menu-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.canvas-menu-list li a:hover {
    background: #f8f9fa;
    color: #ff6b35;
}

/* Ensure nav-cta-orange buttons maintain their styling in canvas menu */
.mobile-canvas-menu .canvas-menu-list li.nav-cta-orange a {
    /* Reset any inherited nav-cta-orange styles first */
    all: unset !important;
    /* Apply canvas-specific nav-cta-orange styling */
    background: #fd6d3b !important;
    background: linear-gradient(90deg, #fe523a 0%, #fcad40 100%) !important;
    color: #ffffff !important;
    margin: 0.5rem 0.25rem !important;
    margin-left: 20px !important;
    padding: 1rem 2rem !important;
    border-radius: 5rem !important;
    width: fit-content !important;
    font-weight: bold !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    text-decoration: none !important;
    border: none !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    justify-content: center !important;
    box-sizing: border-box !important;
}

.mobile-canvas-menu .canvas-menu-list li.nav-cta-orange a:hover {
    background: #e04528 !important;
    background: linear-gradient(90deg, #e04528 0%, #e5a038 100%) !important;
    transform: translateY(-2px) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(254, 82, 58, 0.3) !important;
}

/* Canvas Menu Dropdown Arrows - Custom Implementation */
.mobile-canvas-menu .canvas-menu-list li.has-dropdown > a .dropdown-arrow {
    display: inline-block !important;
    color: #999;
    font-size: 12px;
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.mobile-canvas-menu .canvas-menu-list li.dropdown-open > a .dropdown-arrow {
    transform: rotate(180deg);
    color: #ff6b35;
}

/* Sub Menus */
.canvas-menu-list .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    background: #f8f9fa;
    transition: max-height 0.3s ease;
}

/* When dropdown is open, allow it to expand naturally */
.canvas-menu-list .dropdown-open > .sub-menu {
    max-height: none;
    overflow: visible;
}

.canvas-menu-list .sub-menu li {
    border-bottom: 1px solid #e9ecef;
}

.canvas-menu-list .sub-menu li:last-child {
    border-bottom: none;
}

.canvas-menu-list .sub-menu a {
    padding: 12px 20px 12px 40px;
    font-size: 14px;
    color: #666;
    font-weight: normal;
}

.canvas-menu-list .sub-menu a:hover {
    background: #e9ecef;
    color: #ff6b35;
}

/* Third level menus */
.canvas-menu-list .sub-menu .sub-menu a {
    padding-left: 60px;
    font-size: 13px;
    color: #777;
}

@media (max-width: 480px) {
    .mobile-canvas-menu {
        width: 100vw;
        right: -100vw;
    }
    
    .canvas-header {
        padding: 15px;
    }
    
    .canvas-menu-list li a {
        padding: 12px 15px;
    }
    
    .canvas-menu-list .sub-menu a {
        padding: 10px 15px 10px 30px;
    }
    
    .canvas-menu-list .sub-menu .sub-menu a {
        padding-left: 45px;
    }
    
    /* Ensure nav-cta-orange maintains styling on mobile */
    .mobile-canvas-menu .canvas-menu-list li.nav-cta-orange a {
        color: #ffffff !important;
        font-weight: bold !important;
        background: linear-gradient(90deg, #fe523a 0%, #fcad40 100%) !important;
    }
}

/* Additional media query for tablets and mobile landscape */
@media (max-width: 768px) {
    .mobile-canvas-menu .canvas-menu-list li.nav-cta-orange a {
        color: #ffffff !important;
        font-weight: bold !important;
        background: linear-gradient(90deg, #fe523a 0%, #fcad40 100%) !important;
        text-decoration: none !important;
    }
    
    .mobile-canvas-menu .canvas-menu-list li.nav-cta-orange a:hover {
        color: #ffffff !important;
        background: linear-gradient(90deg, #e04528 0%, #e5a038 100%) !important;
    }
}

/* Old Mobile Navigation Styles (keeping for compatibility) */

/* Mobile hamburger button */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 0;
}

.mobile-nav-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-nav-toggle.active span:first-child {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
    /* Hide mega footer on mobile */
    .mega-footer-banner,
    .mega-footer-content {
        display: none !important;
    }
    
    /* Show mobile toggle button */
    .mobile-nav-toggle {
        display: flex;
    }
    
    /* Show mobile canvas toggle button */
    .mobile-canvas-toggle {
        display: flex !important;
    }
    
    /* Hide navigation by default on mobile */
    .new-navigation-wrapper {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #000000;
        z-index: 9999;
        overflow-y: auto;
        padding-top: 80px;
    }
    
    /* Show navigation when active */
    .new-navigation-wrapper.mobile-nav-open {
        display: block;
    }
    
    /* Mobile nav close button */
    .new-navigation-wrapper::before {
        content: '×';
        position: fixed;
        top: 20px;
        right: 20px;
        color: white;
        font-size: 30px;
        cursor: pointer;
        z-index: 10000;
    }
    
    /* Make mega menus mobile-friendly when open */
    .new-navigation-wrapper.mobile-nav-open .new-menu-list.new-menu-reset {
        flex-direction: column;
        width: 100%;
        background: transparent;
        padding: 20px;
    }
    
    .new-navigation-wrapper.mobile-nav-open .new-menu-list.new-menu-reset li {
        width: 100%;
        border-bottom: 1px solid #333;
        margin-bottom: 0;
    }
    
    .new-navigation-wrapper.mobile-nav-open .new-menu-list.new-menu-reset li a {
        display: block;
        padding: 20px 0;
        font-size: 18px;
        color: white !important;
        border: none;
        background: transparent;
        text-decoration: none;
        position: relative;
    }
    
    /* Ensure mega menu links are clickable */
    .new-navigation-wrapper.mobile-nav-open .new-menu-list.new-menu-reset li.mega-menu > a {
        cursor: pointer;
        user-select: none;
    }
    
    .new-navigation-wrapper.mobile-nav-open .new-menu-list.new-menu-reset li a:hover {
        color: #fd6d3b !important;
    }
    
    /* Make mega menu dropdowns mobile-friendly */
    .new-navigation-wrapper.mobile-nav-open .new-menu-list.new-menu-reset li.mega-menu > .sub-menu {
        display: none !important;
        position: static !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        box-shadow: none !important;
        background: transparent !important;
        padding: 0 !important;
        margin: 10px 0 0 0 !important;
        border-radius: 0 !important;
        border: none !important;
        transition: all 0.3s ease;
    }
    
    /* Show mega menu when mobile-open class is added */
    .new-navigation-wrapper.mobile-nav-open .new-menu-list.new-menu-reset li.mega-menu.mobile-open > .sub-menu {
        display: block !important;
    }
    
    /* Style mega menu columns for mobile */
    .new-navigation-wrapper.mobile-nav-open .new-menu-list.new-menu-reset li.mega-menu .mega-column-header {
        display: block !important;
        width: 100% !important;
        margin: 0 0 20px 0 !important;
        border-bottom: none !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 5px !important;
        padding: 10px !important;
    }
    
    .new-navigation-wrapper.mobile-nav-open .new-menu-list.new-menu-reset li.mega-menu .mega-column-header .mega-column-title {
        display: block !important;
        color: #ff6b35 !important;
        font-size: 16px !important;
        font-weight: bold !important;
        padding: 10px 0 !important;
        margin-bottom: 10px !important;
        border-bottom: 2px solid #ff6b35 !important;
        text-decoration: none !important;
        cursor: default !important;
    }
    
    /* Ensure mega menu sub-menus are visible */
    .new-navigation-wrapper.mobile-nav-open .new-menu-list.new-menu-reset li.mega-menu .mega-column-header .sub-menu {
        display: block !important;
        position: static !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .new-navigation-wrapper.mobile-nav-open .new-menu-list.new-menu-reset li.mega-menu .mega-column-header .sub-menu li {
        border-bottom: none !important;
        margin: 0 0 0 15px !important;
        padding: 0 !important;
    }
    
    .new-navigation-wrapper.mobile-nav-open .new-menu-list.new-menu-reset li.mega-menu .mega-column-header .sub-menu li a {
        padding: 8px 0 !important;
        font-size: 14px !important;
        color: #ccc !important;
        font-weight: normal !important;
        border-bottom: none !important;
    }
    
    .new-navigation-wrapper.mobile-nav-open .new-menu-list.new-menu-reset li.mega-menu .mega-column-header .sub-menu li a:hover {
        color: white !important;
        background: none !important;
    }
    
    /* Handle mega menu footer */
    .new-navigation-wrapper.mobile-nav-open .mega-menu-footer {
        display: block !important;
        margin-top: 20px !important;
        padding: 15px !important;
        background: rgba(255, 107, 53, 0.1) !important;
        border-radius: 5px !important;
    }
    
    .new-navigation-wrapper.mobile-nav-open .mega-menu-footer .footer-content {
        display: block !important;
        color: #ccc !important;
    }
    
    .new-navigation-wrapper.mobile-nav-open .mega-menu-footer .footer-content h3 {
        color: #ff6b35 !important;
        font-size: 16px !important;
        margin-bottom: 10px !important;
    }
    
    .new-navigation-wrapper.mobile-nav-open .mega-menu-footer .footer-content p {
        color: #ccc !important;
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 10px !important;
    }
    
    .new-navigation-wrapper.mobile-nav-open .mega-menu-footer .footer-content a {
        color: #ff6b35 !important;
        text-decoration: none !important;
    }
    
    .new-navigation-wrapper.mobile-nav-open .mega-menu-footer .footer-content a:hover {
        color: white !important;
    }
    
    /* Keep header fixed on mobile */
    .header-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
    }
    
    /* Adjust header layout for mobile */
    .header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
    }
    
    /* Make logo smaller on mobile */
    .logo img {
        max-width: 200px;
        height: auto;
    }
    
    /* Prevent body scroll when mobile nav is open */
    body.mobile-nav-active {
        overflow: hidden;
    }
}

/* Responsive breakpoints */
@media (max-width: 480px) {
    .header-inner {
        padding: 10px 15px;
    }
    
    .logo img {
        max-width: 180px;
    }
    
    .new-navigation-wrapper.mobile-nav-open .new-menu-list.new-menu-reset {
        padding: 15px;
    }
    
    .new-navigation-wrapper.mobile-nav-open .new-menu-list.new-menu-reset li a {
        font-size: 16px;
        padding: 15px 0;
    }
}

/* Blog Carousel Styles */
/* Blog Carousel Styles */
.blog-carousel-section {
    padding: 80px 0;
    background: #f8f9fa;
    
}

.blog-carousel-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-carousel-section .section-header h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.blog-carousel-section .section-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.blog-carousel-item {
    padding: 15px;
    display: flex;
    height: 100%;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    height: 450px;
    text-decoration: none;
    color: inherit;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    text-decoration: none;
    color: inherit;
}

.blog-featured-section{

}

.blog-background {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #e9ecef;
    display: flex;
    align-items: flex-end;
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
    transition: opacity 0.4s ease, background 0.4s ease;
}

.blog-card:hover .blog-overlay {
    opacity: 0;
}

.blog-content-overlay {
    position: relative;
    padding: 25px;
    color: white;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-content-top {
    flex-shrink: 0;
}

.blog-content-bottom {
    flex-shrink: 0;
}

.blog-category-tab {
    background: white;
    color: #fd6d3b;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.blog-title-overlay {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0;
    line-height: 1.3;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-meta-overlay {
    margin-bottom: 10px;
    font-size: 13px;
}

.blog-date-overlay {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.blog-excerpt-overlay {
    color: rgba(255,255,255,0.9);
    line-height: 1.4;
    font-size: 13px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 15px;
}

.blog-read-more-overlay {
    text-align: left;
}

.read-more-btn-overlay {
    display: inline-block;
    background: linear-gradient(135deg, #fe523a 0%, #fcad40 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(254, 82, 58, 0.3);
    transition: all 0.3s ease;
}

.blog-card:hover .read-more-btn-overlay {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 82, 58, 0.4);
}

/* Owl Carousel Custom Styles - Fix Double Dots */


/* Hide any duplicate navigation */
.blog-owl-carousel .owl-nav {
    display: none !important;
}

/* No posts message styling */
.no-posts-message {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin: 20px 0;
}

.no-posts-message p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.no-posts-message a {
    color: #fe523a;
    text-decoration: none;
    font-weight: 600;
}

.no-posts-message a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .blog-carousel-section {
        padding: 60px 0;
    }
    
    .blog-carousel-section .section-header h2 {
        font-size: 28px;
    }
    
    .blog-carousel-section .section-header p {
        font-size: 16px;
    }
    
    .blog-card {
        height: 350px;
    }
    
    .blog-content-overlay {
        padding: 20px;
    }
    
    .blog-title-overlay {
        font-size: 18px;
    }
    
    .blog-category-tab {
        font-size: 11px;
        padding: 6px 12px;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .blog-carousel-section {
        padding: 40px 0;
    }
    
    .blog-carousel-section .section-header h2 {
        font-size: 26px;
    }
    
    .blog-title {
        font-size: 16px;
    }
}

/* Blog Featured Post */
.blog-featured-section {
    margin-bottom: 40px;
}

.blog-featured-header {
    margin-bottom: 16px;
}

.blog-featured-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #fc833d;
    display: inline-block;
}

.blog-featured-item {
    display: flex;
    height: 400px;
}

.blog-featured-item .blog-card {
    height: 400px;
    width: 100%;
}

@media (max-width: 768px) {
    .blog-featured-item,
    .blog-featured-item .blog-card {
        height: 300px;
    }
}

.custom-container {
   padding-left: 25px;
   padding-right: 25px;
    display: flex;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
  }
  .custom-container .tabs {
    display: flex;
    flex-direction: column;
    width: 40%;
    padding-right: 20px;
}

.custom-container .tab-button {
    font-size: 18px;
    cursor: pointer;
    margin-bottom: 5px;
    padding: 20px;
    background: none;
    border: none;
    border-bottom: 1px solid #fc833d; /* Added bottom border */
    transition: color 0.3s;
    font-weight: 500;
}

.custom-container .tab-button:hover {
    color: #fc833d;
}

.custom-container .tab-button.active {
    color: #fc833d;
    font-weight: bold;
}

.custom-container .content-container {
    display: flex;
    flex-direction: column;
    width: 60%;
    position: relative;
}

.custom-container .content {
    display: none;
    padding-left: 20px;
}

.custom-container .content.active {
    display: block;
}

.custom-container .content h4 {
    margin-bottom: 15px;
}

/* Mobile Layout */
@media (max-width: 768px) {
    .custom-container {
        flex-direction: column; /* Stack the tabs and content vertically */
        align-items: center;
    }
    .custom-container .tabs {
        width: 100%;
        flex-direction: column; /* Stack the tabs vertically on mobile */
        margin-bottom: 20px; /* Adds space between tabs and content */
    }
    .custom-container .tab-button {
        text-align: center;
        margin-bottom: 5px;
    }
    .custom-container .content-container {
        width: 100%; /* Make content take full width on mobile */
    }
}

.pt-250 {
    padding-top: 250px;
}

.pb-250 {
    padding-bottom: 50px;
}

.custom-container .header-alt {
    height: 240px !important;
    background-color: #111;
    height: 300px;
}

.pt-100 {
    padding-top: 100px;
}

.header-banner{
    align-items: center !important;
}

.header-alt{
    height: 300px;
    background-color:#111;
}

@media only screen and (min-width: 1069px) {
    /* Removed desktop-menu flex styles that could conflict with Max Mega Menu */
}

.custom-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 15px;

  }

  .custom-list li {
    margin-bottom: 8px;
    line-height: 1.2rem;
  }

  .wrap-tabs .tabs-container {
    margin-bottom: 20px;
}

/* Default layout: horizontal tabs for desktop */
.wrap-tabs .tabs {
    display: flex;
    cursor: pointer;
    margin: 0;
    padding: 0;
}

.wrap-tabs .tab {
    padding: 10px 20px;
    /* border: 1px solid #ccc; */
    text-align: center;
    box-sizing: border-box;
    flex-grow: 1;
    text-align: center;
    background-color: #ffffff;
    color: #111111;
    transition: background-color 0.3s ease, color 0.3s ease;
   
}

/* Active tab styling */
.wrap-tabs .tab.active {
    background-color: #fd793d; /* Lighter orange background for active tab */
    color: #ffffff; /* White text on active tab */
}

/* Content associated with tabs */
.wrap-tabs .tab-content {
    display: none;
    padding: 15px;
   
    margin-top: 5px;
    background-color: #ffffff; /* White background for content */
    color: #111111; /* Dark text color */
}

/* Accordion Style for Mobile */
.wrap-tabs .accordion {
    cursor: pointer;
    padding: 10px;
   
    margin-top: 5px;
    background-color: #eeeeee; /* Subtle background for accordion headers */
    color: #111111; /* Dark text for accordion headers */
    transition: background-color 0.3s ease;
}

.wrap-tabs .panel {
    display: none;
    padding: 10px;
    border-left: 2px solid #fd793d; /* Lighter orange left border for panel */
    background-color: #f9f9f9; /* Slightly off-white background for panel */
    color: #111111; /* Dark text color */
}

/* Ensure that on desktop and tablets, tabs remain horizontal */
@media (min-width: 769px) {
    .wrap-tabs .tabs {
        display: flex;
        flex-direction: row;
        width: 100%; /* Ensure the tabs take up the full width */
    }

    .wrap-tabs .tab {
        flex-grow: 1; /* Ensure equal width for each tab */
    }

    /* Hide tab content by default */
    .wrap-tabs .tab-content {
        display: none;
    }
}

/* Mobile styles: collapse tabs to accordion */
@media (max-width: 768px) {
    /* Make tabs stack vertically on mobile */
    .wrap-tabs .tabs {
        flex-direction: column;
        width: 100%;
    }

    .wrap-tabs .tab {
        margin-bottom: 5px;
        text-align: left; /* Align text to the left on mobile */
        width: 100%;
    }

    /* Initially hide tab content on mobile */
    .wrap-tabs .tab-content {
        display: none;
    }

    /* Accordion style on mobile */
    .wrap-tabs .accordion {
        display: block;
        width: 100%;
        text-align: left;
        background-color: #eeeeee; /* Subtle gray background */
    }

    .wrap-tabs .panel {
        padding: 10px;
        border-left: 2px solid #fd793d; /* Lighter orange left border for panel */
        background-color: #f9f9f9; /* Slightly off-white background */
    }
}

/* Tab and accordion styling */
#wrap-tabs-2 .tab-content {
    display: none; /* Keep all tab content hidden initially */
}

#wrap-tabs-2 .tab-content.active {
    display: block; /* Show the active tab's content */
}

#wrap-tabs-2 .accordion {
    padding: 10px;
    cursor: pointer;
    background-color: #eeeeee; /* Subtle background for accordion headers */
    color: #111111; /* Dark text for accordion headers */
    margin-top: 5px;
}

#wrap-tabs-2 .panel {
    padding: 10px;
    background-color: #f9f9f9; /* Slightly off-white background for panel */
    margin-top: 5px;
    display: none; /* Panels are hidden by default */
    color: #111111; /* Dark text color */
}

#wrap-tabs-2 .panel.open {
    display: block; /* Show the panel when it's open */
}

#wrap-tabs-2 .tab {
    padding: 10px;
    cursor: pointer;
    background-color: #f1f1f1; /* Light gray background for tabs */
    margin-right: 5px;
    color: #111111; /* Dark text color */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.tabs .tab.active {
    background-color: transparent; /* Remove background */
    font-weight: 500;
    color: #fd793d; /* Keep the text orange */
    border-bottom: 3px solid #fd793d; /* Add orange underline */
}

.wrap-tabs .tab.active {
    background-color: transparent; /* Remove background */
    color: #fd793d; /* Keep the text orange */
    border-bottom: 3px solid #fd793d; /* Add orange underline */
}

/* Initially hide all tab contents */
.tab-content {
    display: none;
}

/* Show content for the active tab */
.tab-content.active {
    display: block;
}

.pt-5{
    padding-top: 50px;
}

.header-alt {
    background-image: url("https://liquidation-factory.co.uk/wp-content/uploads/2025/03/back-stage.jpg");
    background-size: cover;
    background-position: 50% 50%;
    height: 300px; /* Ensure fixed height */
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: flex-end; /* Align to the bottom */
    padding-bottom: 80px; /* Space below */
    text-align: center; /* Ensure text is centered */
}

.header-title-wrap h1 {
    margin: 0; /* Remove default margin */
    color: #ffffff; /* Set text color to white */
    font-size: 50px;
}

.gradient-text {
    background: -webkit-linear-gradient(0deg, #fe523a 0%, #fcad40 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.grad-button{
    margin-top: 25px !important;
    background: #fd6d3b;
    background: linear-gradient(90deg, #fe523a 0%, #fcad40 100%);
}

.grad-button a {
    color: #ffffff;
    display:inline-block;
}

/* Basic table styling */
.responsive-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: Arial, sans-serif;
  }
  
  .responsive-table, th, td {
    border: 1px solid #ddd;
  }
  
  .responsive-table th, .responsive-table td {
    padding: 12px;
    text-align: left;
    white-space: nowrap; /* Prevent text from wrapping */
  }
  
  .responsive-table th {
    background-color: #fd793d;
    color: white;
  }
  
  /* Wrapper to make the table horizontally scrollable on small screens */
  .table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* For smooth scrolling on iOS */
  }
  
  /* Ensure table width is not forced to fit small screens */
  .table-wrapper .responsive-table {
    width: max-content; /* Prevents table from shrinking */
    min-width: 100%;
  }
  
  /* Remove unnecessary block display on mobile */
  @media (max-width: 768px) {
    .table-wrapper {
      overflow-x: auto;
    }
  
    .responsive-table th, 
    .responsive-table td {
      white-space: nowrap; /* Ensures text doesn't wrap, keeping horizontal scroll */
    }
  }


  .border-area{
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding-top: 25px;
    padding-bottom: 25px;
  }

  /* Style for ordered list */
.ol-with-numbers {
    counter-reset: list-counter; /* Initialize the counter for list items */
    list-style-type: none; /* Remove default list numbering */
    padding-left: 20px; /* Add padding to the left for indentation */
    padding-bottom: 20px;
  }
  
  /* Style for each list item */
  .ol-with-numbers li {
    counter-increment: list-counter; /* Increment the counter for each list item */
    margin-bottom: 10px; /* Add space between list items */
    position: relative; /* For positioning the numbers */
    padding-left: 30px; /* Adjust padding for number placement */
    margin-bottom: 8px;
    line-height: 1.2rem;
    
  }
  
  /* Style the numbers */
  .ol-with-numbers li::before {
    content: counter(list-counter) ". "; /* Display the counter followed by a dot */
    position: absolute; /* Position the numbers */
    left: 0; /* Align the numbers to the left */
    top: 0; /* Align the numbers to the top */
    font-weight: bold; /* Make numbers bold */
  }

 

  .custom-list li {
    margin-bottom: 8px;
    line-height: 1.2rem;
  }

  .download-section {
    padding: 20px;
}

.download-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.download-item {
    flex: 1;
    min-width: 250px;
    max-width: 400px;
    text-align: center;
}

.download-thumb img {
    max-width: 100%;
    height: auto;
}

.guide-download {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #0073e6;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.guide-download:hover {
    background-color: #005bb5;
}

/* Collapse to single column on mobile */
@media (max-width: 768px) {
    .download-container {
        flex-direction: column;
        align-items: center;
    }

    header{
        overflow: visible !important ;
    }

    .burger-button{
        display: none;
    }
}

.download-container {
    display: flex;
    justify-content: center; /* Centers the items horizontally */
    gap: 20px; /* Optional: adds space between the items */
    flex-wrap: wrap; /* Allows the items to wrap on mobile */
}

.download-item {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers content (image and button) horizontally */
    text-align: center; /* Centers text within the items */
}

.grad-button.cta {
    margin-top: 10px; /* Adds some space between the image and the button */
}

.container-logo{
width: 1200px;
    max-width: 100%;
}



.mobile-menu{
    display: block !important; 

}

header{
    overflow-x: visible !important; 
}



.burger-button{
    display: none;
}

.mobile-menu .cta{
    margin: 0.5rem 0.25rem !important;
    padding: 0rem 1rem !important;
    border-radius: 5rem !important;
    width: fit-content !important;
    font-weight: 600;
    font-size: 1rem;
}

.mobile-menu{
    position: absolute !important;
    right: 30px !important;
    top: 30px !important;
}



.wrap-custom .tab-content {
    display: block !important;
}

.right-logo img{
    width: 200px;
}

.header-banner-alt{
    justify-content: space-around !important;
}

.container{
    width: 1400px;
    max-width: 100%;
    margin: auto;
}

h3{
    padding-bottom: 15px;
}

.insolvency-table {
    width: 100%;
    margin: 20px auto;
}

.insolvency-table table {
    width: 100%;
    border-collapse: collapse;
}

.insolvency-table th, 
.insolvency-table td {
    padding: 10px 15px;
    border: 1px solid #ddd;
    text-align: left;
}

.insolvency-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.insolvency-table td:first-child {
    background-color: #eaeaea; /* Grey background for first column */
    font-weight: bold;
}

/* Enable horizontal scrolling ONLY on mobile */
@media (max-width: 768px) {
    .insolvency-table {
        overflow-x: auto;
        display: flex;
    }

    .insolvency-table table {
        min-width: 900px; /* Ensures scrolling on smaller screens */
    }
}

/* Removed conflicting Max Mega Menu styles */

/* Container */
.rowkit-container {
    width: 100%;
    max-width: 1200px !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Row */
  .rowkit-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
  }
  
  /* Column */
  .rowkit-col {
    padding-left: 15px;
    padding-right: 15px;
    flex: 1;
  }
  
  /* Column widths (12-grid system) */
  .rowkit-col-1  { flex: 0 0 8.333%;  max-width: 8.333%; }
  .rowkit-col-2  { flex: 0 0 16.666%; max-width: 16.666%; }
  .rowkit-col-3  { flex: 0 0 25%;     max-width: 25%; }
  .rowkit-col-4  { flex: 0 0 33.333%; max-width: 33.333%; }
  .rowkit-col-5  { flex: 0 0 41.666%; max-width: 41.666%; }
  .rowkit-col-6  { flex: 0 0 50%;     max-width: 50%; }
  .rowkit-col-7  { flex: 0 0 58.333%; max-width: 58.333%; }
  .rowkit-col-8  { flex: 0 0 66.666%; max-width: 66.666%; }
  .rowkit-col-9  { flex: 0 0 75%;     max-width: 75%; }
  .rowkit-col-10 { flex: 0 0 83.333%; max-width: 83.333%; }
  .rowkit-col-11 { flex: 0 0 91.666%; max-width: 91.666%; }
  .rowkit-col-12 { flex: 0 0 100%;    max-width: 100%; }
  
  /* Mobile responsiveness */
  @media (max-width: 768px) {
    .rowkit-col, 
    .rowkit-col-1, .rowkit-col-2, .rowkit-col-3,
    .rowkit-col-4, .rowkit-col-5, .rowkit-col-6,
    .rowkit-col-7, .rowkit-col-8, .rowkit-col-9,
    .rowkit-col-10, .rowkit-col-11, .rowkit-col-12 {
      flex: 0 0 100%;
      max-width: 100%;
    }
  }
/* Column Order System (default for desktop) */
.rowkit-col-order-1 { order: 1; }
.rowkit-col-order-2 { order: 2; }
.rowkit-col-order-3 { order: 3; }
.rowkit-col-order-4 { order: 4; }
.rowkit-col-order-5 { order: 5; }
.rowkit-col-order-6 { order: 6; }
.rowkit-col-order-7 { order: 7; }
.rowkit-col-order-8 { order: 8; }
.rowkit-col-order-9 { order: 9; }
.rowkit-col-order-10 { order: 10; }
.rowkit-col-order-11 { order: 11; }
.rowkit-col-order-12 { order: 12; }

/* Custom order for large screens (optional) */
@media (min-width: 1200px) {
  .rowkit-col-order-lg-1 { order: 1; }
  .rowkit-col-order-lg-2 { order: 2; }
  .rowkit-col-order-lg-3 { order: 3; }
  .rowkit-col-order-lg-4 { order: 4; }
  .rowkit-col-order-lg-5 { order: 5; }
  .rowkit-col-order-lg-6 { order: 6; }
  .rowkit-col-order-lg-7 { order: 7; }
  .rowkit-col-order-lg-8 { order: 8; }
  .rowkit-col-order-lg-9 { order: 9; }
  .rowkit-col-order-lg-10 { order: 10; }
  .rowkit-col-order-lg-11 { order: 11; }
  .rowkit-col-order-lg-12 { order: 12; }
}

@media (max-width: 768px) {
  .leaders {
    flex-direction: column;
  }

  .leaders .rowkit-col-6 {
    width: 100%;
  }

/* Reset order on mobile: always force text first, image second */
.leaders .rowkit-col-6:nth-child(1),
.leaders .rowkit-col-6:nth-child(2) {
  order: unset; /* Reset order for each column */
}

/* Force text to come first */
.leaders .text-col {
  order: 1 !important;
}

/* Force image to come second */
.leaders .image-col {
  order: 2 !important;
}
}




  .mini-card {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
  }
  
  .mini-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* Ensure mobile friendliness */
  @media (max-width: 768px) {
    .rowkit-col-3 {
      flex: 0 0 100%;
      max-width: 100%;
    }
  
    .bg-wrap-alt-temp {
      background-image: url("https://liquidationcentre.co.uk/wp-content/uploads/2024/05/hero-rings.png");
      background-repeat: no-repeat;
      background-size: 300px 300px;
      background-position: top -200px right 100px !important;
  }
  }
  
  .card-overlay {
    position: relative;
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
  }
  
  .card-overlay:hover {
    transform: scale(1.02);
  }
  
  /* Title is centered and visible by default */
  .card-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    font-size: 1.3rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
    color: #fff;
    opacity: 1; /* Title is fully visible */
    transition: opacity 0.3s ease;
    z-index: 2; /* Ensure title stays on top */
  }
  
  /* Card content (p and a) hidden by default */
  .card-content {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
   
    transition: opacity 0.3s ease;
    z-index: 1; /* Content is behind the title */
  }
  
  /* Fade out title and fade in card content on hover */
  .card-overlay:hover .card-title {
    opacity: 0; /* Title fades out */
  }
  
  .card-overlay:hover .card-content {
    opacity: 1; /* Content fades in */
  }
  
  /* Card content text styles */
  .card-content p,
  .card-content a {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease;
  }
  
  .card-overlay:hover .card-content p,
  .card-overlay:hover .card-content a {
    opacity: 1;
    max-height: 500px; /* large enough to show content */
  }
  
  .card-content p {
    font-size: 0.9rem;
    margin: 10px 0;
  }
  
  .card-content a {
    color: #fff;
    font-weight: bold;
    text-decoration: underline;
    font-size: 0.9rem;
  }
  
  .mini-portal {
    background-color: #eee;
  }
  
  .text-center{
    text-align: center;
  }
  

  .header-alt-2{
    padding-top: 150px;
  }
  
  .header-alt-2 h1{
    color:#111111;
  }

  .bucket-alt{
    margin: 0px !important;
    max-width: 100% !important;
  }

  .list-circles{
    list-style: none;
  }

  .list-circles li:before { 
    content: '';
    display: inline-block;
    height: 1.25rem;
    width: 1.25rem;
    position: relative;
    top: 1rem;
    left: -0.5rem;
    border-radius: 50%;
    background: transparent;
    background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(0deg, #fe523a 0%, #fcad40 100%);
    background-clip: padding-box, border-box;
    background-origin: border-box;
    border: 5px solid transparent;
}

/* List with circle bullets */
.list-circles {
    list-style-type: circle; /* Use circle bullets */
    padding-left: 20px; /* Add space for the list items */
    margin: 0; /* Reset margin */
  }
  
  /* For the list items */
  .list-circles li {
    position: relative; /* Allow custom positioning for the bullet */
    margin-bottom: 10px; /* Space between list items */
    padding-left: 25px; /* Add padding to ensure bullets are spaced from the text */
    list-style: none;
  }
  
  /* Ensure the text aligns nicely if wrapped */
  .list-circles li {
    text-indent: -30px; /* Adjust indent to ensure text aligns inline */
  }
  
  .reponsive-image img{
    max-width: 100%;
  }

  .bg-wrap-alt-temp{
    background-image: url("https://liquidationcentre.co.uk/wp-content/uploads/2024/05/hero-rings.png");
    background-repeat: no-repeat;
    background-size: 300px 300px;
    background-position: top -70px right 100px;
  }

  .benefits-section{
    background-image: url("https://liquidationcentre.co.uk/wp-content/uploads/2025/04/triangle-new.png");
    background-repeat: no-repeat;
    background-position: bottom -200px left;
  }

  .bg-grey{
    background-color: #eee;
  }


  .faq-accordion {
    width: 100%;
    
    margin: 2rem auto;
  }
  
  .faq-question {
    width: 100%;
    padding: 1em;
    font-size: 1rem;
    background: #f9f9f9;
    border: none;
    border-bottom: 1px solid #ddd;
    text-align: left;
    cursor: pointer;
    outline: none;
    transition: background 0.3s ease;
  }
  
  .faq-question:hover {
    background: #f0f0f0;
  }
  
  .faq-answer {
    display: none;
    padding: 1em;
    background: #fff;
    border-bottom: 1px solid #ddd;
  }
  
  .faq-answer.open {
    display: block;
  }

  .faq-question {
    width: 100%;
    text-align: left;
    background: #f9f9f9;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
  }
  
  .faq-question .arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
  }
  
  /* Optional: rotate the arrow when open */
  .faq-question.active .arrow {
    transform: rotate(180deg);
  }
  
  .faq-answer {
    display: none;
    padding: 1rem;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
  }
  
  .faq-item.active .faq-answer {
    display: block;
  }
  
  .card-overlay p{
    color: #fff;
  }

  .responsive-image img{
    max-width: 100%;
  }

  .rounded-edges img{
    border-radius: 30px;
  }

  .pt-5{
    padding-top: 50px;
  }

  .faqs-concern{
    background-image: url("https://liquidationcentre.co.uk/wp-content/uploads/2025/04/triangle-new.png");
    background-repeat: no-repeat;
    background-position: bottom -200px left;
  }

  .badge-section{
    padding-bottom: 0px;
  }

  #wpadminbar{
    z-index: 99999999999999;
  }

   .leadership-members {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .leadership-member {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 1rem;
    }

    .leadership-member .image {
        flex-shrink: 0;
        width: 100%;
        text-align: center;
    }

    .leadership-member .text {
        text-align: center;
    }

  .leaders {
   
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
}


.leaders img{
  border-radius: 50%;
  width: 250px;
  max-width: 100%;
}

.leaders a{
  display: inline-block;
  margin-bottom: 15px;
  color: #fd793d;
}

.leaders{
  padding-top: 25px;
  padding-bottom: 25px;
}

.quote-form{
  padding-top: 130px !important;
}

 @media (max-width: 768px) {
.quote-form{
  padding-top: 0px !important;
}

.header-alt {
        /* height: auto !important; */
        /* padding-top: 50px; */
        padding-bottom: 50px;
        height: auto;
        padding-top: 100px;

 }
 }


.header-set{
 padding-top: 150px;
 padding-bottom: 100px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.header-set h1{
  
   font-size: 50px;
  
    margin-bottom: 1rem !important;
}

.header-set {
    display: flex; /* Make the section a flex container */
    flex-direction: column; /* Stack children vertically */
    justify-content: center; /* Center content vertically within the section */
}

.header-set .rowkit-container {
    flex-grow: 1; /* Allow the container to grow and take available space */
    display: flex; /* Make the container a flex container */
    align-items: center; /* Vertically center the rowkit-row within the container */
    /* No horizontal alignment here, as the rowkit-col handles it. */
}

.header-set .rowkit-row {
    display: flex;
    /* We don't need flex-direction: column here unless you specifically want the row itself to stack columns vertically.
       If rowkit-row is designed to hold columns side-by-side, keep its default flex-direction (usually row). */
    align-items: center; /* This ensures the content within the row is vertically centered if the row has a height. */
    width: 100%; /* Ensure the row takes full width */
    /* To ensure content stays left aligned within the rowkit-row, do NOT use justify-content: center here. */
}

.header-set .rowkit-col-7 {
    /* This column contains your actual content. */
    /* Ensure text and block elements are left-aligned within this column. */
    text-align: left; /* This will align inline content (text, images) to the left */
    margin-left: 0; /* Override any potential default margin that might center it */
    margin-right: auto; /* Push the column to the left if it's a flex item */
    /* If you find the column itself is centered, you might need to adjust its parent's justify-content
       or the column's flex-basis/width. */
}

/* Optional: If buttons are centered by default, you might need to target them specifically */
.header-set .buttons {
    text-align: left; /* Ensures buttons within this div are left-aligned */
}

.builder-template .header-set h2{
 
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.builder-template .header-set h2{

  font-size: 40px;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 0.8;
}

.builder-template .header-set h3{

  font-size: 25px;
  font-weight: 500;
  margin-bottom: 1rem;
}

.builder-template .header-set h4{

  font-size: 20px;
  font-weight: 500;
  margin-bottom: 1rem;
}

.builder-template .header-set p{

  font-size: 18px;
  font-weight: 300;
 
}

.builder-template .header-set ul{
  list-style: none;
    padding: 1rem 0rem;
}

.builder-template .header-set ul li{
 padding-left: 2.5rem;
    text-indent: -1.5rem;
    margin-bottom: 1.5rem;
   
    font-size: 1.25rem;
    font-weight: 600;
}




.builder-template .header-set ul li:before {
    content: '';
    display: inline-block;
    position: relative;
    top: 0.3rem;
    left: -0.5rem;
    width: 1.45rem;
    height: 1.45rem;
    border-radius: 50%;
    background: linear-gradient(90deg, #fe523a 0%, #fcad40 100%);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 5px), black calc(100% - 4px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 5px), black calc(100% - 4px));
}


.builder-template .cta-white {
  background: #ffffff;
       margin: 0.5rem 0.25rem;
    padding: 1rem 2rem;
    border-radius: 5rem;
    width: fit-content;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    -webkit-box-shadow: 0px -1px 17px 2px rgb(195 195 195 / 50%);
    -moz-box-shadow: 0px -1px 17px 2px rgb(195 195 195 / 50%);
    box-shadow: 0px -1px 17px 2px rgb(195 195 195 / 50%);
}

.builder-template .cta-white span {
  background: linear-gradient(90deg, #fe523a 0%, #fcad40 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  position: relative;
  z-index: 2;
}

.builder-template .cta-orange {
background: #fd6d3b;
    background: linear-gradient(90deg, #fe523a 0%, #fcad40 100%
100%);
margin: 0.5rem 0.25rem;
    padding: 1rem 2rem;
    border-radius: 5rem;
    width: fit-content;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    -webkit-box-shadow: 0px -1px 17px 2px rgb(195 195 195 / 50%);
    -moz-box-shadow: 0px -1px 17px 2px rgb(195 195 195 / 50%);
    box-shadow: 0px -1px 17px 2px rgb(195 195 195 / 50%);
    color: #fff;
    display: inline-block;

}

.header-image-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
}

.builder-template .section-cards{

background-repeat: no-repeat;
background-position: bottom left;
}

.builder-template .section-cards .rowkit-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
   
   
    text-align: center;
}

.lc-card{
      padding: 35px !important;
    background: #f9f9f9 !important;
    border-radius: 2rem !important;
    -webkit-box-shadow: 0px -1px 17px 2px rgb(195 195 195 / 50%);
    -moz-box-shadow: 0px -1px 17px 2px rgb(195 195 195 / 50%);
    box-shadow: 0px -1px 17px 2px rgb(195 195 195 / 50%);
    text-align: center;  
    margin-bottom: 15px;
}

.lc-card img {
   
    max-width: 100%;
    height: auto;
    margin-bottom: 25px;
    
}




.section-cards.style-style1 .lc-card {
     -webkit-box-shadow: 0px -1px 17px 2px rgb(195 195 195 / 50%);
    -moz-box-shadow: 0px -1px 17px 2px rgb(195 195 195 / 50%);
    box-shadow: 0px -1px 17px 2px rgb(195 195 195 / 50%);
    border-radius: 2rem !important;
    border: 1px solid #fd793d;
     background: #ffffff !important;

}

.section-cards.style-style1 .lc-card p{
color: #111111;
}


/* === Style 2: Transparent no borders or Shadow === */
.section-cards.style-style2 .lc-card {
    background: transparent !important;
  
    border: 0px;   
    box-shadow: none;
}

/* === Style 2: Transparent no borders or Shadow === */
.section-cards.style-style2 .lc-card p{
    
    color: #111111;
   
}

.full-width-card {
  width: 100%;
  box-sizing: border-box; /* ensures padding/border don't cause overflow */
}

.side-icon-card img{
  margin-bottom: 0px;
}

.side-icon-card .side-icon-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.side-icon-card p{
  text-align: start;
  font-weight: 400;
}

.side-icon-card{
border-radius: 2px !important;
}

.remove-margin{
  margin-bottom: 0px !important;
}

.side-icon-text{
 display: flex
;
    align-items: center;
    height: auto;
    flex-wrap: wrap;
}


.builder-template ul li {
  margin-bottom: 20px;
  line-height: 1.5em;
}

.has-shadow-top {
   -webkit-box-shadow: 0px -1px 17px 2px rgba(195, 195, 195, 0.5) !important;
   -moz-box-shadow: 0px -1px 17px 2px rgba(195, 195, 195, 0.5) !important;
   box-shadow: 0px -1px 17px 2px rgba(195, 195, 195, 0.5) !important;
}

.has-shadow-bottom {
   -webkit-box-shadow: 0px 1px 17px 2px rgba(195, 195, 195, 0.5) !important;
   -moz-box-shadow: 0px 1px 17px 2px rgba(195, 195, 195, 0.5) !important;
   box-shadow: 0px 1px 17px 2px rgba(195, 195, 195, 0.5) !important;
}

.has-shadow-top,
.has-shadow-bottom {
  position: relative;
  z-index: 1; /* Higher than the default 0 */
}


.builder-template .button-group a{
 display: inline-block;
}

.button-group.align-left {
    text-align: left;
}
.button-group.align-center {
    text-align: center;
}
.button-group.align-right {
    text-align: right;
}

.button-group{
  margin-top: 0px !important;
}


.builder-template li::marker {
  color: #ff9900 !important;
}

.builder-template ul {
  list-style: disc;
 
}

.builder-template .rowkit-row {
  align-items: stretch;
}

.builder-template .lc-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.builder-template .lc-card .button-group {
  margin-top: auto !important;
}

.builder-template .lc-card img {
  max-width: 100%;
  height: auto;
  margin: 0 auto 25px auto;
  display: block;
}

.builder-template .header-set .header-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
}

.builder-template .header-set .header-image-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
}




ul.tick-list {
  list-style: none;  /* remove default bullets */
  padding-left: 0;   /* remove default ul padding */
  text-align: center; /* center the whole list */
}

ul.tick-list li {
  
  text-align: left;       /* keep text inside li left aligned */
  padding-left: 0;        /* no padding, tick is inside text */
  margin-bottom: 1rem;
  position: relative;
}

ul.tick-list li::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.5rem; /* space between tick and text */
  background-image: url('/wp-content/uploads/2024/05/bullet-tick.png');
  background-repeat: no-repeat;
  background-size: contain;
}


.builder-template .accordion details {
  
  
  margin-bottom: 5px;
  background: #eeeeee;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.builder-template .accordion details[open] {
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.builder-template .accordion summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 12px 15px;
  user-select: none;
}

.builder-template .accordion summary::-webkit-details-marker {
  display: none;
}

.builder-template .accordion .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 1.3rem;
  transform-origin: center;
}

/* Rotate arrow when open */
.builder-template .accordion details[open] > summary .arrow {
  transform: rotate(90deg);
}

/* Animate content sliding */
.builder-template .accordion .content {
  max-height: 0;
  padding: 0 15px;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
  overflow: hidden;
  background-color: #fff;
}

/* When details is open, expand content */
.builder-template .accordion details[open] .content {
  max-height: 500px; /* large enough for content */
  opacity: 1;
  padding: 15px;
}

.builder-template .slide-item{
  padding: 50px;
}

.slide-item.lc-card{
  box-shadow: none !important;
    -webkit-box-shadow: 0px 1px 17px 2px rgba(195, 195, 195, 0.5) !important;
   -moz-box-shadow: 0px 1px 17px 2px rgba(195, 195, 195, 0.5) !important;
   box-shadow: 0px 1px 17px 2px rgba(195, 195, 195, 0.5) !important;
   min-height: 100%;
   display: flex;
   flex-direction: column;
   width: 100%;
}

/* Make Owl Carousel slides equal height */
.owl-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}

.owl-carousel .owl-item {
  display: flex;
}


.center-logo img{
  width: 500px;
max-width: 100%;
}

.thank-you-header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
 background-color: #111111;
  text-align: center;
}

.center-logo img {
  max-width: 100%;
  height: auto;
}

.thank-you-header h2{
  color: #fff;
}

.thank-you-header {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100vh;
  padding: 20px;

}

.thank-you-header .rowkit-container,
.thank-you-header .rowkit-row,
.thank-you-header .rowkit-col-12 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.post, .page{
  height: auto !important;
  margin-bottom: 0px !important;
}


.alt-image img {
 display: block;
  margin-left: auto;
  margin-right: auto;
 
  max-width: 100%;
  height: auto;
}

.builder-template h1{
  font-weight: 900 !important;
}


.builder-template ul{
    list-style-position: inside; /* default: bullet is outside */
  padding-left: 1.5em;           /* space for the bullet */
  margin-left: 0;
}

.builder-template ul li{
   text-indent: -1.5em;          /* pull first line bullet left */
  
}

ul.tick-list {
  list-style: none;
  padding-left: 1.75em;     /* match image + margin-right */
  margin-left: 0;
}

ul.tick-list li {
  text-indent: -1.75em;     /* pull tick image left */
  margin-bottom: 1rem;
}

ul.tick-list li::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 1.25em;            /* tick size */
  height: 1.25em;
  margin-right: 0.5em;      /* spacing between tick and text */
  background-image: url('/wp-content/uploads/2024/05/bullet-tick.png');
  background-repeat: no-repeat;
  background-size: contain;
}



 

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;

  margin: 0 auto;
  padding: 2rem 1rem;
}

.logo-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-col img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Responsive breakpoints */
@media (max-width: 1024px) {
  .logo-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 400px) {
  .logo-grid {
    grid-template-columns: 1fr;
  }
}

.logo-section{
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.logo-section img{
  max-width: 170px !important;
}

@media (max-width: 768px) {
.section-cards .rowkit-col{
  margin-bottom: 15px;
}



}

.content-row{
  padding-top: 25px;
  padding-bottom: 25px;
}


/* Force strong tags to inherit text color inside your block */
.wysiwyg-content strong {
  color: inherit !important;
}

.header-centre-section{

background-size: cover;
background-repeat: no-repeat;
}

.section-cards{
  background-position: 50% 50%;
 
}

.section-cards .rowkit-col {
   margin-bottom: 30px;
}

.builder-template b, strong{
  font-weight: 700 !important;
  color: inherit;
}

.header-set-multiple-rows{
    
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.about-section-hero{
  position: relative;
}

  .overlay{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.125);
    
  background-image: url("https://exigengroup.co.uk/wp-content/uploads/2025/03/01.png");
  z-index: -1;
  }

  #bgvid{
    object-fit: cover;
    width: 100vw;
    height: 100vh;
  position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
  }

  .about-section-hero h1{
    color: #fff !important;
  }

  .remove-padding-top{
    padding-top: 25px !important;
  }
.leadership-links ul li{
  display: inline;
}


  .leadership-links ul li a{
    display: inline-block;
    color: #fd6d3b;
    text-decoration: underline;
  }

  .owl-carousel .owl-item img{
    width: unset !important;
        margin: inherit;
  }

.process-title {
  text-align: center !important;
}

.cta.orange a{
  width: 100%;
    display: block;
}




@media (max-width: 768px) {
.header-set h1 {
    font-size: 3rem !important;
    margin-bottom: 1rem !important;
}

.header-set{
  padding-top: 150px;
  padding-bottom: 50px;
}


}

/* WYSIWYG Table Fix - Works even if WordPress strips overflow inline styles */
.wysiwyg-content div:has(table),
.entry-content div:has(table),
.post-content div:has(table),
.content div:has(table) {
  overflow-x: auto !important;
  overflow-y: hidden !important;
  -webkit-overflow-scrolling: touch !important;
  width: 100% !important;
  max-width: 100% !important;
  position: relative !important;
}

/* Target tables with specific attributes */
table[style*="min-width"] {
 
  table-layout: auto !important;
}

/* Fallback - target any table in content areas */
.wysiwyg-content table,
.entry-content table,
.post-content table,
.content table {

  white-space: nowrap !important;
  table-layout: auto !important;
}

/* Create a wrapper class you can add manually */
.table-scroll {
  overflow-x: auto !important;
  overflow-y: hidden !important;
  -webkit-overflow-scrolling: touch !important;
  width: 100% !important;
  max-width: 100% !important;
  position: relative !important;
}

.table-scroll table {
 
  white-space: nowrap !important;
  table-layout: auto !important;
}

/* Desktop behavior - table fills container */
@media (min-width: 769px) {
  .wysiwyg-content table,
  .entry-content table,
  .post-content table,
  .content table,
  table[style*="min-width"] {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 768px) {
  .wysiwyg-content table th,
  .wysiwyg-content table td,
  .entry-content table th,
  .entry-content table td,
  .post-content table th,
  .post-content table td,
  .content table th,
  .content table td {
    white-space: nowrap !important;
    padding: 8px 10px !important;
  }
}

.leadership ul li{
text-indent: 0px !important;
}

/* ===== BLOG CONTENT LIST STYLES ===== */
/* Default WordPress-style list formatting for blog posts */

/* Unordered lists (bullets) */
.entry-content ul,
.post-content ul,
article ul {
  list-style-type: disc;
  margin-left: 0;
  padding-left: 2em;
  margin-bottom: 1.5em;
  line-height: 1.8;
}

.entry-content ul ul,
.post-content ul ul,
article ul ul {
  list-style-type: circle;
  margin-bottom: 0.5em;
  margin-top: 0.5em;
}

.entry-content ul ul ul,
.post-content ul ul ul,
article ul ul ul {
  list-style-type: square;
}

/* Ordered lists (numbers) */
.entry-content ol,
.post-content ol,
article ol {
  list-style-type: decimal;
  margin-left: 0;
  padding-left: 2em;
  margin-bottom: 1.5em;
  line-height: 1.8;
}

.entry-content ol ol,
.post-content ol ol,
article ol ol {
  list-style-type: lower-alpha;
  margin-bottom: 0.5em;
  margin-top: 0.5em;
}

.entry-content ol ol ol,
.post-content ol ol ol,
article ol ol ol {
  list-style-type: lower-roman;
}

/* List items */
.entry-content li,
.post-content li,
article li {
  margin-bottom: 0.5em;
}

.entry-content li > ul,
.entry-content li > ol,
.post-content li > ul,
.post-content li > ol,
article li > ul,
article li > ol {
  margin-top: 0.5em;
}

/* Ensure list styles work for content pasted from Word */
.entry-content ul[style],
.post-content ul[style],
article ul[style] {
  list-style-type: disc !important;
  padding-left: 2em !important;
}

.entry-content ol[style],
.post-content ol[style],
article ol[style] {
  list-style-type: decimal !important;
  padding-left: 2em !important;
}

/* ===== BLOG SYSTEM STYLES ===== */


  .blog-header{
    padding-top: 150px;
    padding-bottom: 50px;
  }

  .blog-header .entry-header{
    background-color: transparent;
    position: static !important;
    z-index: auto !important;
    overflow-x: visible !important;
    height: auto !important;
  }

   .blog-header h1{
    font-size: 40px;
    padding-bottom: 0;
    margin-bottom: 30px;
  }

  .blog-sidebar #sidebar {
   padding: 20px;
    border: 1px solid #fd6d3b;
    border-radius: 10px;
    background-color: #eeeeee;
  }

  .blog-sidebar #sidebar h3 {
    border-bottom: 1px solid #fd6d3b;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }

  .blog-sidebar #sidebar ul {
    list-style-type: none;
    margin-left: 0;
    padding-left: 0;
  }

  .blog-sidebar #sidebar ul li a {
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
    font-size: 16px;
  }

  .blog-sidebar #sidebar ul li {
    transition: background 0.3s ease;
  }

  .blog-sidebar #sidebar ul li:hover {
    
    cursor: pointer;
  }

  .blog-sidebar #sidebar ul li:hover > a .post-title {
    color: #fd6d3b !important;
  }

  .blog-sidebar #sidebar ul li{
    margin-bottom: 0;
    list-style-type: none;
    display: block;
    padding-bottom: 0;
  }

  /* Recent Posts Category Tags */
  .blog-sidebar .post-categories {
    margin-top: 5px;
  }

  .blog-sidebar .post-category-tag {
    display: inline-block;
    background: rgba(253, 109, 59, 0.1);
    color: #fd6d3b;
    font-size: 11px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 10px;
    margin-right: 5px;
    margin-top: 3px;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .blog-sidebar .post-category-tag:hover {
    background: #fd6d3b;
    color: white;
    transform: translateY(-1px);
  }

  /* Sidebar Category Links */
  .blog-sidebar .widget_categories ul li a {
    font-weight: bold;
    text-decoration: none;
    transition: opacity 0.2s ease;
  }

  .blog-sidebar .widget_categories ul li a:hover {
    opacity: 0.7;
    text-decoration: underline;
  }

  /* Knowledge Hub Button in Sidebar */
  .knowledge-hub-button-container {
    text-align: center;
    padding: 10px 0;
  }

  .knowledge-hub-button {
    display: inline-block;
    background: linear-gradient(90deg, #fe523a 0%, #fcad40 100%);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(253, 109, 59, 0.3);
  }

  .knowledge-hub-button:hover {
    color: white;
  }

  /* Single Post Category Tags */
  .single-post-categories {
    margin-bottom: 15px;
  }

  .single-post-category-tag {
    display: inline-block;
    background: rgba(253, 109, 59, 0.1);
    color: #fd6d3b;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 15px;
    margin-right: 8px;
    margin-bottom: 5px;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .single-post-category-tag:hover {
    background: #fd6d3b;
    color: white;
    transform: translateY(-1px);
  }

  /* Guidance Centre Category Tags */
  .gc-post-categories {
    margin-bottom: 10px;
  }

  .gc-category-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    color: #fd6d3b;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    margin-right: 6px;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  }

  /* Post Meta Styling */
  .post-meta {
    background-color: #f5f5f5;
    padding: 8px 12px;
    border-radius: 4px;
    margin: 10px 0;
    font-size: 0.9rem;
  }

  .post-meta .post-date,
  .post-meta .post-author {
    color: #666;
  }

  .blog-header .post-thumbnail {
    margin-bottom: 30px;
    width: 100%;
    overflow: hidden;
  }

  .blog-header .post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
  }

  .blog-header{
    background-image: url("https://liquidation-factory.co.uk/wp-content/uploads/2025/09/blog-header-top.png");
   
    background-repeat: no-repeat;
  }

  .blog-header h2{
    margin-bottom: 15px;
    }

    .blog-header ul {
      list-style-type: disc;
      margin-left: 20px;
      padding-left: 20px;
    }

    .blog-header ul li{
      padding-bottom: 10px;
      margin-bottom: 8px;
      list-style-type: disc;
      display: list-item;
      line-height: 1.4em;
    }

    .category-header .header{
    background-color: transparent !important;
    position: relative !important;
  }

  .category-header .post{
    overflow: visible !important;
  }

  /* Blog Post Item Borders */
  .category-header .blog-post-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px !important;
  }

   .category-header .blog-post-item:hover {
    border-color: #fd6d3b;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  }

  /* Square thumbnails in category pages */
   .category-header .blog-post-item .post-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 15px;
  }

  .category-header .blog-post-item .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    display: block;
  }

  /* Read More Button Styling */
  .category-header .read-more {
    margin-top: 0rem;
    margin-bottom: 0rem;
    padding: 0px;
    padding-left: 25px;
    padding-right: 25px;
    background: #fd6d3b;
    background: linear-gradient(90deg, #fe523a 0%, #fcad40 100%);
    margin: 0.5rem 0.25rem;
    padding: 0.5rem 2rem;
    border-radius: 5rem;
    width: fit-content;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    -webkit-box-shadow: 0px -1px 17px 2px rgb(195 195 195 / 50%);
    -moz-box-shadow: 0px -1px 17px 2px rgb(195 195 195 / 50%);
    box-shadow: 0px -1px 17px 2px rgb(195 195 195 / 50%);
    color: white;
    text-decoration: none;
    display: inline-block;
  }

  .category-header .read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0px 2px 20px 4px rgb(195 195 195 / 70%);
  }

  .nav-previous a{
   color: #fd6d3b !important;
  }

  .nav-next a{
   color: #fd6d3b !important;
  }

  /* Category Dropdown Filter Styles */
  .category-dropdown-filter {
    background: #eeeeee;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
    -webkit-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.06);
  }

  .subcategory-filter-form {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .subcategory-filter-form label {
    font-weight: 600;
    color: #343a40;
    margin: 0;
    white-space: nowrap;
  }

  .subcategory-filter-form select {
    padding: 3px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    background: white;
    font-size: 1rem;
    color: #495057;
    min-width: 250px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .subcategory-filter-form select:focus {
    outline: none;
    border-color: #fe523a;
    box-shadow: 0 0 0 3px rgba(254, 82, 58, 0.1);
  }

  .subcategory-filter-form select:hover {
    border-color: #fe523a;
  }

  .filter-submit-btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #fe523a 0%, #fcad40 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .filter-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(254, 82, 58, 0.3);
  }

  .active-filter-info {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: #dddddd;
    border-left: 4px solid #fd6d3b;
    border-radius: 4px;
    font-size: 0.95rem;
  }

  .active-filter-info strong {
    color: #fd6d3b;
  }

  .clear-filter-link {
    margin-left: 1rem;
    color: #fd6d3b;
    text-decoration: none;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }

  .clear-filter-link:hover {
    background: rgba(0, 102, 204, 0.1);
    text-decoration: none;
  }

  /* Responsive Design for Dropdown Filter */
  @media (max-width: 768px) {
    .category-dropdown-filter {
      padding: 1rem;
    }

    .alt-image img{
  padding-bottom: 15px;
}

    .subcategory-filter-form {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.75rem;
    }

    .subcategory-filter-form select {
      min-width: 100%;
    }

    .active-filter-info {
      font-size: 0.9rem;
      text-align: center;
    }

    .clear-filter-link {
      display: block;
      margin: 0.5rem 0 0 0;
      text-align: center;
    }
  }

  /* GC Background with fade effect */
  .gc-background {
    background-color: #f9f9f9;
    border-radius: 1rem;
    padding: 2rem 1rem;
    -webkit-box-shadow: 0px -1px 17px 2px rgb(195 195 195 / 50%);
    -moz-box-shadow: 0px -1px 17px 2px rgb(195 195 195 / 50%);
    box-shadow: 0px -1px 17px 2px rgb(195 195 195 / 50%);
    height: 20rem;
    position: relative;
    top: 0rem;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -ms-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
  }

  .gc-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(249, 249, 249, 0.9) 0%, rgba(249, 249, 249, 0.7) 30%, rgba(249, 249, 249, 0.3) 70%, rgba(249, 249, 249, 0) 100%);
    border-radius: 1rem;
    pointer-events: none;
    z-index: 1;
  }

  .gc-background > * {
    position: relative;
    z-index: 2;
  }

  /* Knowledge Hub Square Cards with Overlay */
  .knowledge-header .rowkit-row {
    margin-left: -15px;
    margin-right: -15px;
  }

  .knowledge-header .rowkit-col-6 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .knowledge-header .rowkit-col-8,
  .knowledge-header .rowkit-col-4 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .knowledge-hub-card-fullwidth {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
  }

  .knowledge-hub-card-fullwidth:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  }

  .category-link-fullwidth {
    display: block;
    text-decoration: none;
    color: inherit;
  }

  .category-hero-image,
  .category-hero-no-image {
    position: relative;
    height: 400px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-color: #f5f5f5;
    display: flex;
    align-items: flex-end;
  }

  .category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    z-index: 1;
  }

  .knowledge-hub-card-fullwidth:hover .category-overlay {
    background: rgba(0, 0, 0, 0.2);
  }

  .category-content-overlay {
    position: relative;
    z-index: 2;
    color: white;
    padding: 25px;
    width: 100%;
  }

  .category-title-overlay {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: white;
    padding-bottom: 8px;
    padding-left: 35px;
    position: relative;
  }

  .category-title-overlay::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fd6d3b;
    background: linear-gradient(90deg, #fe523a 0%, #fcad40 100%);
  }

  .category-title-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fd6d3b;
    background: linear-gradient(90deg, #fe523a 0%, #fcad40 100%);
  }

  .category-description-overlay {
    font-size: 1rem;
    margin: 0 0 8px 0;
    opacity: 0.9;
    line-height: 1.4;
    color: white;
  }

  .category-count-overlay {
    font-size: 0.85rem;
    opacity: 0.8;
    font-weight: 500;
    color: white;
  }

  /* Knowledge Hub Category Cards */
  .knowledge-hub-categories .rowkit-row {
    margin-left: -15px;
    margin-right: -15px;
  }

  .knowledge-hub-categories .rowkit-col-6 {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
  }

  .knowledge-hub-categories .category-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 0;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    height: 100%;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .knowledge-hub-categories .category-card:hover {
    border-color: #fd6d3b;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transform: translateY(-2px);
  }

  .knowledge-hub-categories .category-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .knowledge-hub-categories .category-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 0;
  }

  .knowledge-hub-categories .category-title {
    color: #fd6d3b;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 0;
  }

  .knowledge-hub-categories .category-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
  }

  .knowledge-hub-categories .category-count {
    color: #fd6d3b;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(253, 109, 59, 0.1);
    padding: 5px 10px;
    border-radius: 15px;
    display: inline-block;
    margin-top: auto;
  }

  /* Category Thumbnail from Latest Post */
  .knowledge-hub-categories .category-thumbnail {
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 15px;
  }

  .knowledge-hub-categories .category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .knowledge-hub-categories .category-card:hover .category-image {
    transform: scale(1.05);
  }

  .category-header .archive-meta{
    display: none;
  }

  .knowledge-hub-categories {
    padding-bottom: 50px;
  }

  .knowledge-header{
    padding-bottom: 50px;
    background-image: url("https://liquidationcentre.co.uk/wp-content/uploads/2024/06/multi-flash-flipped.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
  }

   .post-hero-wrapper{
      height: auto !important;
    }
 
    .blog-carousel-section h2{
      font-weight: 900 !important;
    }
.nav-wrap{
  width: 1140px;
  max-width: 100%;
  margin: auto;
}

#seo-nav{
  background-color: #111111;
}

header{
  z-index: 0 !important;
}

/* Nav CTA Orange Button Styling - Exclude mobile canvas menu */
.nav-cta-orange:not(.mobile-canvas-menu .nav-cta-orange) {
    background: #fd6d3b !important;
    background: linear-gradient(90deg, #fe523a 0%, #fcad40 100%) !important;
    color: white !important;
    border-radius: 5rem !important;
    width: fit-content !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    text-decoration: none !important;
    border: none !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}

.nav-cta-orange:hover:not(.mobile-canvas-menu .nav-cta-orange) {
    background: linear-gradient(90deg, #e04528 0%, #e5a038 100%) !important;
    transform: translateY(-2px) !important;
    color: white !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(254, 82, 58, 0.3) !important;
}

.hero-text h1{
  line-height: inherit !important;
}

@media only screen and (min-width: 735px) {
    .hero-content {
padding-top: 10rem !important;
    }
  }

  .dark-bg .hero-text h2{
    padding: 0px !important;
  }

@media (max-width: 768px) {
  .nav-cta-orange {
    display: none;
  }
}

.content-image.alt-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

#wrapper{
  overflow-x: hidden;
}