/* Custom Header Version 3 - Modern Premium Design */

:root {
    --header-primary: #011b33;
    --header-accent: #f39c12;
    --header-text-light: #ffffff;
    --header-text-dark: #333333;
    --header-bg-light: #ffffff;
    --header-transition: all 0.3s ease;
}

.enmax-header-v3 {
    width: 100%;
    font-family: 'Inter Display', Arial, sans-serif;
    position: fixed;
    /* Fixed over the banner for sticky behavior */
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: transparent;
    /* Transparent to show video behind */
    transition: var(--header-transition);
}

.enmax-header-v3.scrolled {
    top: 0;
}

/* Secondary Sticky Header */
.v3-sticky-header {
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    z-index: 2000;
    /* background: #ffffff; */
    /* box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12); */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
}

.v3-sticky-header.is-sticky {
    top: 0;
    opacity: 1;
    visibility: visible;
}

.v3-sticky-header .v3-main-navbar {
    margin-top: 0;
    padding: 8px 0;
}

.v3-sticky-header .v3-main-navbar .container-fluid {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    padding: 0 40px;
    background-color: #ffffff;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    max-width: 1009px;
    margin: 0 auto;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    height: 70px;
    transition: all 0.3s ease;
}

.v3-sticky-header .v3-logo {
    display: flex;
    justify-content: flex-start;
    padding-left: 20px;
}

.v3-sticky-header .v3-logo img {
    max-height: 44px;
    width: auto;
}

.v3-sticky-header .v3-nav-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 20px;
}

.v3-sticky-header .v3-nav-right {
    display: none;
}

@media (max-width: 991px) {
    .v3-sticky-header .v3-main-navbar .container-fluid {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-radius: 10px;
        height: 70px;
        padding: 0 15px;
        width: 94%;
        max-width: 94%;
    }

    .v3-sticky-header .v3-nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-in-out;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 15px 15px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .v3-sticky-header .v3-nav-menu.active {
        max-height: 2500px;
    }

    .v3-sticky-header .v3-nav-right {
        display: flex;
        align-items: center;
    }
}



.enmax-header-v3.scrolled .v3-top-bar {
    margin-top: -60px;
    /* Hide top bar */
    opacity: 0;
    pointer-events: none;
}

.v3-top-bar .container-fluid {
    background-color: #fff;
    /* Glass tint for the top bar */
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 6px 40px;
    max-width: 1009px;
    margin: 0 auto;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.v3-top-bar-inner {
    display: grid;
    font-weight: bold;
    grid-template-columns: 1fr auto 1fr;
    /* Center-focused grid */
    align-items: center;
    color: #000;
    font-size: 13px;
    /* text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5); */
    /* Enhanced readability */
}


.v3-top-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    /* Gap handled by individual items */
}

.v3-top-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

.v3-top-info-item i {
    color: #000;
    font-size: 14px;
}

.v3-top-info-item:last-child {
    border-right: none;
}

.v3-top-info-item a {
    color: #000;
    text-decoration: none;
    transition: var(--header-transition);
}

.v3-top-info-item a:hover {
    color: var(--header-accent);
}

.v3-top-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.v3-social-links {
    display: flex;
    gap: 15px;
}

.v3-social-links a {
    color: #fff;
    transition: var(--header-transition);
}

.v3-social-links a:hover {
    color: var(--header-accent);
}

.v3-contact-wrapper {
    display: flex;
    gap: 40px;
}

.v3-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--header-text-light);
    font-size: 14px;
    font-weight: 400;
}

.v3-contact-item i {
    color: var(--header-accent);
    font-size: 16px;
}

.v3-contact-item a {
    color: inherit;
    text-decoration: none;
    transition: var(--header-transition);
}

.v3-contact-item a:hover {
    color: var(--header-accent);
}

.v3-social-wrapper {
    display: flex;
    gap: 20px;
}

.v3-social-link {
    color: var(--header-text-light);
    font-size: 15px;
    transition: var(--header-transition);
}

.v3-social-link:hover {
    color: var(--header-accent);
    transform: translateY(-2px);
}



.enmax-header-v3.scrolled .v3-main-navbar {
    margin-top: 5px;
}

.enmax-header-v3.scrolled .v3-main-navbar .container-fluid {
    height: 60px;
    max-width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    background-color: rgba(255, 255, 255, 0.95);
}

.v3-main-navbar .container-fluid {
    display: grid;
    grid-template-columns: auto 1fr;
    /* logo, menu items */
    align-items: center;
    padding: 0 0px;
    background-color: rgb(255 255 255);
    ;
    /* Semi-transparent for glass effect */
    backdrop-filter: blur(15px);
    /* Premium blur effect for readability */
    -webkit-backdrop-filter: blur(15px);
    max-width: 1009px;
    margin: 0 auto;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Subtle glass border */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 70px;
    transition: var(--header-transition);
}

.v3-main-navbar .container-fluid:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.v3-logo {
    display: flex;
    justify-content: flex-start;
    padding-left: 20px;
    padding-top: 5px;
}

.v3-logo img {
    max-height: 48px;
    width: auto;
    transition: var(--header-transition);
}

.v3-nav-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 20px;
}

.v3-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px;
}

.v3-nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.v3-call-btn {
    background-color: #f77243;
    /* Dark green from reference */
    color: #fff !important;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--header-transition);
    font-size: 15px;
}

.v3-call-btn:hover {
    background-color: #005a26;
    transform: translateY(-2px);
}

.v3-mobile-toggle-wrapper {
    display: flex;
    align-items: center;
}

.v3-nav-item {
    position: relative;
    padding: 10px 0;
}

.v3-nav-link {
    color: #000;
    /* White text for contrast on glass/video */
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: var(--header-transition);
    /* text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); */
    /* Ensure text pop-out visibility */
}

.v3-nav-link:hover,
.v3-nav-item.active .v3-nav-link {
    color: var(--header-accent);
}

/* Dropdown Menu */
.v3-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    right: auto;
    background: #fff;
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(15px);
    transition: var(--header-transition);
    list-style: none;
    padding: 15px 0;
    border-top: 3px solid var(--header-accent);
}

/* Mega Menu Support */
.v3-has-dropdown:hover .v3-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.v3-dropdown-menu.v3-mega-menu {
    min-width: 600px;
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
}

.v3-mega-column {
    flex: 1;
    min-width: 250px;
}

.v3-mega-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.v3-dropdown-menu li a {
    display: block;
    padding: 12px 25px;
    color: #444;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--header-transition);
    border-bottom: 1px solid #f5f5f5;
}

.v3-dropdown-menu li a:hover {
    background-color: #f9f9f9;
    color: var(--header-primary);
    padding-left: 30px;
}

/* Mobile Toggle */
.v3-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.v3-mobile-toggle span {
    width: 30px;
    height: 3px;
    background-color: #000;
    transition: var(--header-transition);
    transform-origin: left center;
}

.v3-mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
}

.v3-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.v3-mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .v3-main-navbar .container-fluid {
        max-width: 100%;
        grid-template-columns: 163px 1fr 180px;
    }

    .v3-nav-list {
        gap: 15px;
    }

    .v3-nav-link {
        font-size: 12px;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }
}

/* =========================================
   IPAD PRO HEADER PERFECT FIX
   SCREEN : 1024 × 1366
========================================= */

@media only screen and (min-width: 992px) and (max-width: 1024px) and (min-height: 1000px) {

    /* =========================
       TOP HEADER
    ========================= */

    .v3-top-bar .container-fluid {
        width: 98%;
        max-width: 98%;
        padding: 7px 14px;
        border-radius: 12px;
    }

    .v3-top-bar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 5px;
    }

    .v3-top-info-item {
        gap: 4px;
        padding: 0 4px;
    }

    .v3-top-info-item i {
        font-size: 11px;
    }

    .v3-top-info-item span,
    .v3-top-info-item a {
        font-size: 10px;
        line-height: 1.3;
        white-space: nowrap;
    }

    /* =========================
       MAIN HEADER
    ========================= */

    .v3-main-navbar {
        margin-top: 8px;
    }

    .v3-main-navbar .container-fluid {

        width: 98%;
        max-width: 98%;

        height: 72px;

        padding: 0 18px;

        border-radius: 14px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        overflow: hidden;
    }

    /* =========================
       LOGO
    ========================= */

    .v3-logo {
        padding-left: 0;
    }

    .v3-logo img {
        max-height: 44px;
        width: auto;
    }

    /* =========================
       HIDE NAVBAR TEXT
       IN MAIN HEADER
    ========================= */

    .enmax-header-v3 .v3-nav-menu {
        display: none !important;
    }

    /* =========================
       SHOW TOGGLE ICON
    ========================= */

    .enmax-header-v3 .v3-mobile-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;

        width: 46px;
        height: 46px;

        border-radius: 10px;

        background: #f5f5f5;

        border: none;

        font-size: 18px;

        cursor: pointer;
    }

    .enmax-header-v3 .v3-nav-right {
        display: flex;
        align-items: center;
    }

    /* =========================
       STICKY HEADER
    ========================= */

    .enmax-header-v3.sticky-active .v3-main-navbar .container-fluid {

        width: 100%;
        max-width: 100%;

        border-radius: 15px;

        padding: 0 20px;

        height: 66px;
    }

    /* =========================
       SHOW FULL NAVBAR
       IN STICKY HEADER
    ========================= */

   .enmax-header-v3.sticky-active .v3-nav-menu {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    width: auto;
}

.enmax-header-v3.sticky-active .v3-nav-list {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    width: auto;
    justify-content: flex-end;
}

    .enmax-header-v3.sticky-active .v3-nav-item {
        padding: 0;
    }

    .enmax-header-v3.sticky-active .v3-nav-link {

        font-size: 14px;

        font-weight: 700;

        white-space: nowrap;

        letter-spacing: 0.2px;
    }

    /* =========================
       HIDE TOGGLE IN STICKY
    ========================= */

    .enmax-header-v3.sticky-active .v3-mobile-toggle {
        display: none !important;
    }

}

/* =========================================
   HEADER PERFECT ALIGNMENT
   SCREEN : 1205 × 768
========================================= */

@media only screen and (min-width: 1100px) and (max-width: 1280px) and (max-height: 800px) {

    /* =========================
       MAIN NAVBAR WRAPPER
    ========================= */

    .v3-main-navbar {
        margin-top: 8px;
    }

    .v3-main-navbar .container-fluid {

        width: 100%;
        max-width: 96%;

        height: 63px;

        padding: 0 16px;

        border-radius: 16px;

        display: grid;

        grid-template-columns: 170px 1fr;

        align-items: center;

        overflow: hidden;
    }

    /* =========================
       LOGO
    ========================= */

    .v3-logo {
        padding-left: 0;
    }

    .v3-logo img {

        max-height: 44px;

        width: auto;
    }

    /* =========================
       NAVIGATION MENU
    ========================= */

    .v3-nav-menu {

        width: 100%;

        display: flex;

        justify-content: flex-end;

        align-items: center;

        padding-right: 0;

        overflow: hidden;
    }

    .v3-nav-list {

        display: flex;

        align-items: center;

        justify-content: flex-end;

        gap: 18px;

        width: 100%;

        padding: 0;

        margin: 0;

        flex-wrap: nowrap;
    }

    .v3-nav-item {

        padding: 0;

        margin: 0;

        min-width: fit-content;
    }

    .v3-nav-link {

        font-size: 12px;

        font-weight: 700;

        letter-spacing: 0.2px;

        white-space: nowrap;

        line-height: 1.3;

        display: flex;

        align-items: center;

        justify-content: center;
    }

    /* =========================
       DROPDOWN MENU
    ========================= */

    .v3-dropdown-menu {

        min-width: 240px;

        border-radius: 12px;
    }

    .v3-dropdown-menu li a {

        font-size: 13px;

        padding: 12px 18px;
    }

}

@media (max-width: 991px) {
    .v3-top-bar {
        display: none;
    }

    .v3-main-navbar {
        margin-top: 0;
        padding: 10px 0;
        position: fixed;
        /* Keep it visible on mobile */
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
    }

    .v3-main-navbar .container-fluid {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-radius: 10px;
        height: 70px;
        padding: 0 15px;
        width: 94%;
        margin: 0 auto;
    }

    .v3-logo img {
        max-height: 45px;
    }

    .v3-call-btn {
        padding: 8px 15px;
        font-size: 13px;
        gap: 5px;
    }

    .v3-mobile-toggle {
        display: flex;
    }

    .v3-nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-in-out;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 15px 15px;
    }

    .v3-nav-menu.active {
        max-height: 2500px;
        /* Increased to allow sub-menus to expand fully */
    }

    .v3-nav-list {
        flex-direction: column;
        width: 100%;
        padding: 20px;
        gap: 0;
    }

    .v3-nav-item {
        padding: 10px 0;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .v3-nav-link {
        color: var(--header-text-dark) !important;
        text-shadow: none;
    }

    .v3-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        width: 100% !important;
        min-width: 0 !important;
    }

    .v3-nav-item.open .v3-dropdown-menu {
        max-height: 2000px !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }

    .v3-nav-item.open>a i {
        transform: rotate(180deg);
    }

    .v3-dropdown-menu.v3-mega-menu {
        display: block;
        /* Stack columns vertically on mobile */
        padding: 0 0 10px 20px;
    }

    .v3-mega-column {
        width: 100%;
        min-width: 0;
    }

    .v3-mega-column ul {
        padding: 0;
    }

    .v3-dropdown-menu li a {
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
        font-size: 13px;
        color: #666;
    }

    .v3-dropdown-menu li:last-child a {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .v3-main-navbar .container-fluid {
        padding: 0 10px;
    }

    .v3-logo img {
        max-height: 38px;
    }

    .v3-call-btn {
        padding: 6px 10px;
        font-size: 11px;
    }

    .v3-call-btn span {
        display: none;
    }

    .v3-call-btn {
        width: 42px;
        height: 42px;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 10px;
    }

    .v3-call-btn i {
        font-size: 18px;
        margin: 0;
    }
}

/* new footer code */
.nx-footer-wrap {
    background: #fff;
    color: #fff;
    padding: 70px 0 0;
}

.nx-hide-mobile {
    display: block;
}

@media (max-width: 991px) {
    .nx-hide-mobile {
        display: none;
    }
}

.nx-footer-main {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr;
    gap: 70px;
    align-items: start;
}

/* Keep inner footer layout aligned on all screen sizes */
.nx-footer-main>.footer-main-wrapper {
    /* footer-main-wrapper is the actual grid content */
    width: 100%;
}

.footer-main-wrapper {
    width: 100%;
}

/* Make the 2-column links stack neatly */
.nx-footer-links-flex {
    display: flex;

    gap: 40px;
    align-items: flex-start;
}

.nx-footer-links-area {
    min-width: 200px;
}


/* On mobile/tablet: stack all sections */
@media (max-width: 991px) {
    .nx-footer-main {
        grid-template-columns: 1fr 1.2fr;
        text-align: left;
        gap: 40px;
    }

    .nx-footer-links-flex {
        gap: 20px;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .nx-footer-subscribe {
        grid-column: span 2;
        margin-top: 20px;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .nx-footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .nx-footer-links-flex {
        gap: 20px;
        flex-direction: column;
    }

    .nx-footer-links-area {
        min-width: 0;
        width: 100%;
    }

    .nx-footer-subscribe {
        grid-column: auto;
        width: 100%;
    }

    .nx-footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .nx-footer-main {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-main-wrapper {
        display: grid;
        grid-template-columns: 1.01fr 0.60fr;
        gap: 24px;
        width: 100%;
    }

    .nx-footer-links-flex {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .nx-footer-links-area,
    .nx-footer-subscribe {
        width: 100%;
        min-width: 0;
    }

    .nx-footer-subscribe {
        align-self: start;
    }

    .nx-footer-map iframe {
        width: 100%;
        max-width: 100%;
    }
}


.nx-footer-logo img {
    max-width: 180px;
    margin-bottom: 25px;
}

.nx-footer-desc {
    color: #333;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 25px;
}

.nx-footer-contact {
    margin-top: 20px;
}

.nx-footer-contact a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #000;
    margin-bottom: 15px;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.nx-footer-contact a:hover {
    color: #f39c12;
}

.nx-footer-links-area h4 {
    color: #000;
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
}

.nx-footer-links-flex {
    display: flex;
    justify-content: center;
    gap: 180px;
}

.nx-footer-links-area1 {
    display: flex;
    justify-content: left;
}

.nx-footer-links-flex ul {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: left;
}

.nx-footer-links-flex ul li {
    margin-bottom: 14px;
}

.nx-footer-links-flex ul li a {
    color: #000;
    font: weight 300px;
    ;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s;
    white-space: nowrap;
}

.nx-footer-links-flex ul li a:hover {
    color: #000;
    padding-left: 6px;
}

.nx-footer-subscribe h4 {
    color: #000;
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
}

.nx-mail-box {
    display: flex;
    border-bottom: 1px solid #444;
    padding-bottom: 12px;
    margin-bottom: 30px;
}

.nx-mail-box input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    outline: none;
}

.nx-mail-box button {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
}

.nx-footer-preview img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.nx-footer-logo-box {
    display: inline-block;
    /* background: #ffffff; */
    padding: 5px 0px;
    border-radius: 14px;
    margin-bottom: 9px;
    /* box-shadow: 0 4px 20px rgba(255, 255, 255, 0.08); */
}

.nx-footer-logo img {
    max-width: 160px;
    height: auto;
    display: block;
}

.nx-footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.nx-footer-bottom p {
    margin: 0;
    color: #000;
}

.nx-social-icons a {
    color: #fff;
    margin-left: 15px;
    font-size: 16px;
    transition: 0.3s;
}

.nx-social-icons a:hover {
    color: #f97316;
}

@media(max-width: 991px) {

    .nx-footer-main {
        grid-template-columns: 1fr 1.2fr;
        text-align: left;
        gap: 40px;
    }

    .nx-footer-brand {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .nx-footer-links-area h4 {
        text-align: left;
    }

    .nx-footer-links-flex {
        gap: 40px;
        justify-content: flex-start;
    }

    .nx-footer-subscribe {
        grid-column: span 2;
        margin-top: 20px;
    }

    .nx-footer-subscribe h4 {
        text-align: left;
    }

    .nx-footer-contact {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .nx-footer-contact a {
        justify-content: flex-start;
    }
}

@media(max-width: 767px) {

    .nx-footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-main-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .nx-footer-links-column,
    .nx-footer-right-column {
        width: 100%;
    }

    .nx-footer-links-flex {
        flex-direction: column;
        gap: 20px;
    }

    .nx-footer-links-flex ul {
        flex: 1;
        min-width: auto;
        width: 100%;
    }

    .nx-footer-links-area {
        width: 100%;
    }

    .nx-footer-subscribe {
        width: 100%;
        margin-top: 20px;
    }

    .nx-footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

/* .nx-footer-map {
    margin-top: 20px;
} */

.nx-footer-map iframe {
    width: 100%;
    height: 180px;
    border: 0;
    border-radius: 16px;
    /* filter: grayscale(100%); */
}

/* Client Marquee Section */
.client-marquee-section {
    background-color: #ffffff;
    padding: 0;
    border-bottom: 1px solid #eeeeee;
    overflow: hidden;
}

/* Tagline Column */
.marquee-tagline-col {
    background: #ffffff;
    padding: 40px 35px;
    display: flex;
    align-items: center;
    min-height: 130px;
    position: relative;
    overflow: hidden;
    border-right: 1px solid #eeeeee;
}

.marquee-tagline-col::before {
    /* content: ''; */
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: rgba(243, 156, 18, 0.12);
    border-radius: 50%;
}

.marquee-tagline-inner {
    position: relative;
    z-index: 1;
}

.tagline-label {
    display: inline-block;
    font-size: 16px;
    /* font-weight: 800; */
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #e75c22;
    margin-bottom: 12px;
}

.tagline-heading {
    font-size: 22px;
    /* font-weight: 700; */
    color: #011b33;
    line-height: 1.3;
    margin: 0 0 8px;
}

.tagline-heading span {
    color: #fa5316dc;
    font-size: 27px;
    font-weight: bolder;
}

.tagline-sub {
    font-size: 12.5px;
    color: #777777;
    line-height: 1.6;
    margin: 0;
}

/* Marquee Logos Column */
.marquee-logos-col {
    overflow: hidden;
    padding: 0;
    display: flex;
    align-items: center;
    border-left: 1px solid #eeeeee;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 8s linear infinite;
}

.marquee-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.marquee-group img {
    height: 55px;
    width: auto;
    margin: 0 10px;
    /* opacity: 0.6; */
    transition: all 0.3s ease;
}

.marquee-group img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.15);
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 991px) {
    .marquee-tagline-col {
        min-height: auto;
        padding: 30px 25px;
    }

    .tagline-heading {
        font-size: 20px;
    }

    .tagline-sub {
        display: none;
    }

    .marquee-logos-col {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 768px) {
    .marquee-tagline-col {
        padding: 20px;
    }

    .tagline-heading {
        font-size: 18px;
    }

    .marquee-group img {
        height: 40px;
        margin: 0 15px;
    }
}


.marquee-wrapper img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .marquee-wrapper img {
        height: 40px;
        margin: 0 10px;
    }
}


/* Enquiry Button Animation Styles */
.nx-enquiry-box {
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.nx-enquiry-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f7561a 0%, #f7561a 100%);
    color: #fff !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.8px;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(243, 86, 34, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    font-size: 14px;
    z-index: 1;
}

.nx-enquiry-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transform: rotate(45deg);
    animation: nx-shimmer 3s infinite;
}

@keyframes nx-shimmer {
    0% {
        left: -150%;
    }

    30% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.nx-enquiry-btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 35px rgba(243, 86, 34, 0.5);
    color: #fff !important;
}

.nx-enquiry-btn i {
    font-size: 18px;
    transition: all 0.4s ease;
}

.nx-enquiry-btn:hover i {
    transform: translateX(8px) rotate(-15deg);
    color: #fff;
}

/* Pulse Ring Effect */
.nx-enquiry-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    box-shadow: 0 0 0 0 rgba(243, 86, 34, 0.7);
    animation: nx-pulse 2s infinite;
    z-index: -1;
}

@keyframes nx-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(243, 86, 34, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(243, 86, 34, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(243, 86, 34, 0);
    }
}

.nx-enquiry-box::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    /* background: radial-gradient(circle, rgba(243, 86, 34, 0.2) 0%, transparent 70%); */
    z-index: 0;
    filter: blur(10px);
}

.tagline-label1 {
    /* font-weight: 700; */
    font-size: 25px;
    color: #232323;
}

.footer-main-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 70px;
}

.nx-footer-links-flex {
    display: flex;
    gap: 20px;
}

.nx-footer-links-area {
    min-width: 200px;
}

.nx-footer-subscribe {
    width: 415px;
}

.nx-footer-map iframe {
    width: 100%;
    height: 220px;
    border: 0;
    border-radius: 10px;
}

@media (max-width: 767px) {
    .footer-main-wrapper {
        display: flex;
        flex-direction: column;
        gap: 24px;
        width: 100%;
    }

    .nx-footer-links-flex {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .nx-footer-links-area {
        min-width: 0;
        width: 100%;
        order: 0;
    }

    .nx-footer-links-flex .nx-footer-links-area:first-child {
        order: 1;
    }

    .nx-footer-links-flex .nx-footer-links-area:last-child {
        order: 2;
    }

    .nx-footer-subscribe {
        width: 100%;
        max-width: 100%;
        margin-top: 0;
    }

    .nx-footer-subscribe h4,
    .nx-footer-links-area h4 {
        margin-bottom: 16px;
    }

    .nx-footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .footer-main-wrapper {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 16px;
    }

    .nx-footer-links-flex {
        justify-content: flex-start;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
    }

    .nx-footer-links-area {
        max-width: 320px;
        min-width: 0;
    }

    .nx-footer-links-area h4 {
        margin-bottom: 18px;
    }

    .nx-footer-links-flex ul li {
        margin-bottom: 10px;
    }
}

/* Small-screen header adjustments (1024×600 and similar) */
@media (max-width: 1024px) and (max-height: 640px) {

    /* Reduce paddings and overall header heights so elements align neatly */
    .v3-main-navbar .container-fluid,
    .v3-sticky-header .v3-main-navbar .container-fluid {
        padding: 0 10px;
        max-width: 98%;
        grid-template-columns: 44px 1fr;
        height: 64px;
        border-radius: 10px;
    }

    /* Stack ordering: top-bar above main navbar; prevent overlap */
    .v3-top-bar {
        position: relative;
        z-index: 1002;
    }

    .v3-top-bar .container-fluid {
        padding: 4px 10px;
        max-width: 98%;
        z-index: 1002;
    }

    /* Push the main navbar down so it doesn't overlap the top-bar */
    .v3-main-navbar {
        position: relative;
        z-index: 1001;

    }

    .v3-logo img,
    .v3-sticky-header .v3-logo img {
        max-height: 40px;
        width: auto;
    }

    .v3-nav-link {
        font-size: 13px;
        white-space: nowrap;
    }

    .v3-call-btn {
        padding: 8px 14px;
        font-size: 13px;
    }

    .v3-nav-menu {
        padding-right: 8px;
    }

    /* When sticky header is active, reset margin so sticky header sits at top */
    .v3-sticky-header.is-sticky .v3-main-navbar {
        margin-top: 0;
    }

    /* Show mobile toggle at this breakpoint and hide full nav until toggled */
    .v3-mobile-toggle {
        display: flex;
        position: absolute;
        right: 14px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1004;
    }

    .v3-nav-list {
        display: none;
    }

    /* When menu is toggled, show full nav as an overlay dropdown */
    .v3-nav-menu.active {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        z-index: 1003;
        border-radius: 0 0 12px 12px;
        padding: 10px 16px;
    }

    .v3-nav-menu.active .v3-nav-list {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 8px 0;
    }

    .v3-nav-item {
        padding: 8px 12px;
    }

    .v3-top-bar {
        display: none !important;
    }

    .v3-main-navbar {
        margin-top: 0 !important;
    }
}

@media (min-width: 1025px) and (max-width: 1280px) and (max-height: 800px) {
    .v3-top-bar {
        display: none !important;
    }

    .v3-main-navbar {
        margin-top: 0 !important;
    }
}

/* TEXT HIGHLIGHT COLOR */
::selection {
    background: #ff6600;
    /* Highlight background */
    color: #ffffff;
    /* Text color */
}

::-moz-selection {
    background: #ff6600;
    color: #ffffff;
}

/* Sticky header should show full nav (no toggle) on short screens */
@media (max-width: 1024px) and (max-height: 640px) {

    .enmax-header-v3.sticky-active .v3-mobile-toggle,
    .v3-sticky-header.is-sticky .v3-mobile-toggle {
        display: none !important;
    }

    .enmax-header-v3.sticky-active .v3-nav-list,
    .v3-sticky-header.is-sticky .v3-nav-list {
        display: flex !important;
        flex-direction: row !important;
        gap: 14px !important;
        align-items: center !important;
    }

    /* Make sure sticky header positions correctly and dropdown is not shown */
    .enmax-header-v3.sticky-active .v3-nav-menu,
    .v3-sticky-header.is-sticky .v3-nav-menu {
        position: static !important;
        box-shadow: none !important;
        background: transparent !important;
        padding: 0 !important;
    }
}

/* Mobile Header Alignment Fix */
@media only screen and (max-width: 767px){

    .v3-main-navbar .container-fluid{
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .v3-main-navbar{
        padding: 12px 0;
    }

    .v3-logo{
        margin: 0;
        padding: 0;
    }

    .v3-logo img{
        max-width: 180px;
        height: auto;
        display: block;
    }

    .v3-nav-right{
        margin: 0;
        padding: 0;
    }

    .v3-mobile-toggle{
        padding: 0;
        margin-right: -8px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
/* iPad Pro 1024 x 1366 - Sticky Header Fix to Match Main Header Design */
@media only screen and (min-width: 992px) and (max-width: 1024px) and (min-height: 1000px) {
    /* Sticky Header Container Position & Floating Design */
    .enmax-header-v3.sticky-active .v3-main-navbar {
        position: fixed !important;
        top: 0 !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: calc(100% - 340px) !important;
        background: transparent !important;
        box-shadow: none !important;
        margin-top: 8px !important;
        animation: none !important;
    }

    .enmax-header-v3.sticky-active .v3-main-navbar .container-fluid {
        width: 98% !important;
        max-width: 98% !important;
        height: 72px !important;
        padding: 0 18px !important;
        border-radius: 14px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        background: #ffffff !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
    }

    /* Hide desktop nav menu in sticky header to match main header */
    .enmax-header-v3.sticky-active .v3-nav-menu {
        display: none !important;
    }

    /* Show hamburger toggle in sticky header to match main header */
    .enmax-header-v3.sticky-active .v3-mobile-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 46px !important;
        height: 46px !important;
        border-radius: 10px !important;
        background: #f5f5f5 !important;
        border: none !important;
        font-size: 18px !important;
        cursor: pointer !important;
    }

    .enmax-header-v3.sticky-active .v3-nav-right {
        display: flex !important;
        align-items: center !important;
    }
}

/* Footer Quick Links & Utility Links Centering for Mobile (max-width: 767px) */
@media only screen and (max-width: 767px) {
    .nx-footer-links-flex {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .nx-footer-links-area {
        width: 100% !important;
        text-align: center !important;
        margin-bottom: 25px !important;
    }

    .nx-footer-links-area h4 {
        text-align: center !important;
        margin-bottom: 15px !important;
    }

    .nx-footer-links-flex ul {
        text-align: center !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .nx-footer-links-flex ul li {
        text-align: center !important;
    }

    .nx-footer-links-flex ul li a {
        justify-content: center !important;
        text-align: center !important;
        display: inline-flex !important;
    }

    /* Center Quick Enquiry header & button */
    .nx-footer-subscribe {
        text-align: center !important;
        width: 100% !important;
    }

    .nx-footer-subscribe h4 {
        text-align: center !important;
        margin-bottom: 20px !important;
    }

    .nx-enquiry-box {
        display: inline-block !important;
        margin: 0 auto 30px auto !important;
    }

    /* Center Brand section (logo, description, mail & phone) */
    .nx-footer-brand {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .nx-footer-contact {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        margin-top: 15px !important;
    }

    .nx-footer-contact a {
        justify-content: center !important;
        text-align: center !important;
        display: inline-flex !important;
    }
}

/* ==========================================================================
   Footer Map Location & Equal Alignment Media Queries
   ========================================================================== */

/* Desktop & Large Screen Alignments */
@media (min-width: 1025px) {
    .nx-footer-main {
        display: grid;
        grid-template-columns: 1fr 1.5fr 1.5fr;
        gap: 70px;
        align-items: stretch !important;
    }

    .nx-footer-main > .footer-main-wrapper {
        grid-column: span 2 !important;
        display: flex;
        justify-content: space-between;
        align-items: stretch !important;
        gap: 70px;
    }

    .nx-footer-brand {
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        height: 100% !important;
    }

    .nx-footer-contact {
        margin-top: auto !important;
        padding-top: 20px !important;
    }

    .nx-footer-subscribe {
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        height: 100% !important;
        width: 415px !important;
    }

    .nx-footer-map {
        margin-top: auto !important;
        padding-top: 20px !important;
    }

    .nx-footer-map iframe {
        width: 100%;
        height: 220px;
        border: 0;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .nx-footer-map iframe:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }
}

/* Tablet Screen Alignments (min-width: 768px and max-width: 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .nx-footer-main {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        align-items: stretch !important;
    }

    .footer-main-wrapper {
        display: grid !important;
        grid-template-columns: 1.05fr 0.95fr !important;
        gap: 16px !important;
        align-items: stretch !important;
        width: 100% !important;
    }

    .nx-footer-subscribe {
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        height: 100% !important;
        width: 100% !important;
    }

    .nx-footer-map {
        margin-top: auto !important;
        padding-top: 20px !important;
    }

    .nx-footer-map iframe {
        width: 100%;
        height: 200px;
        border: 0;
    /* Hide desktop nav menu in sticky header to match main header */
    .enmax-header-v3.sticky-active .v3-nav-menu {
        display: none !important;
    }

    /* Show hamburger toggle in sticky header to match main header */
    .enmax-header-v3.sticky-active .v3-mobile-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 46px !important;
        height: 46px !important;
        border-radius: 10px !important;
        background: #f5f5f5 !important;
        border: none !important;
        font-size: 18px !important;
        cursor: pointer !important;
    }

    .enmax-header-v3.sticky-active .v3-nav-right {
        display: flex !important;
        align-items: center !important;
    }
}

/* Footer Quick Links & Utility Links Centering for Mobile (max-width: 767px) */
@media only screen and (max-width: 767px) {
    .nx-footer-links-flex {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .nx-footer-links-area {
        width: 100% !important;
        text-align: center !important;
        margin-bottom: 25px !important;
    }

    .nx-footer-links-area h4 {
        text-align: center !important;
        margin-bottom: 15px !important;
    }

    .nx-footer-links-flex ul {
        text-align: center !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .nx-footer-links-flex ul li {
        text-align: center !important;
    }

    .nx-footer-links-flex ul li a {
        justify-content: center !important;
        text-align: center !important;
        display: inline-flex !important;
    }

    /* Center Quick Enquiry header & button */
    .nx-footer-subscribe {
        text-align: center !important;
        width: 100% !important;
    }

    .nx-footer-subscribe h4 {
        text-align: center !important;
        margin-bottom: 20px !important;
    }

    .nx-enquiry-box {
        display: inline-block !important;
        margin: 0 auto 30px auto !important;
    }

    /* Center Brand section (logo, description, mail & phone) */
    .nx-footer-brand {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .nx-footer-contact {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        margin-top: 15px !important;
    }

    .nx-footer-contact a {
        justify-content: center !important;
        text-align: center !important;
        display: inline-flex !important;
    }
}

/* ==========================================================================
   Footer Map Location & Equal Alignment Media Queries
   ========================================================================== */

/* Desktop & Large Screen Alignments */
@media (min-width: 1025px) {
    .nx-footer-main {
        display: grid;
        grid-template-columns: 1fr 1.5fr 1.5fr;
        gap: 70px;
        align-items: stretch !important;
    }

    .nx-footer-main > .footer-main-wrapper {
        grid-column: span 2 !important;
        display: flex;
        justify-content: space-between;
        align-items: stretch !important;
        gap: 70px;
    }

    .nx-footer-brand {
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        height: 100% !important;
    }

    .nx-footer-contact {
        margin-top: auto !important;
        padding-top: 20px !important;
    }

    .nx-footer-subscribe {
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        height: 100% !important;
        width: 415px !important;
    }

    .nx-footer-map {
        margin-top: auto !important;
        padding-top: 20px !important;
    }

    .nx-footer-map iframe {
        width: 100%;
        height: 220px;
        border: 0;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .nx-footer-map iframe:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }
}

/* Tablet Screen Alignments (min-width: 768px and max-width: 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .nx-footer-main {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        align-items: stretch !important;
    }

    .footer-main-wrapper {
        display: grid !important;
        grid-template-columns: 1.05fr 0.95fr !important;
        gap: 16px !important;
        align-items: stretch !important;
        width: 100% !important;
    }

    .nx-footer-subscribe {
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        height: 100% !important;
        width: 100% !important;
    }

    .nx-footer-map {
        margin-top: auto !important;
        padding-top: 20px !important;
    }

    .nx-footer-map iframe {
        width: 100%;
        height: 200px;
        border: 0;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .nx-footer-map iframe:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }
}

/* =====================================================
   PRODUCT DETAIL PAGES — Full image, equal bottom
   Both columns end at the same bottom edge.
   Image is fully visible: no crop, no distortion.
===================================================== */

/* Row: flex so both columns share the exact same height */
.section-full.content-inner .container > .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

/* Left column — natural height driver */
.section-full.content-inner .container > .row > .col-lg-6:first-child {
    display: flex;
    flex-direction: column;
}

/* Right image column — capped at left column height, no overflow */
.section-full.content-inner .container > .row > .col-lg-6:last-child {
    position: relative;
    align-self: stretch;
    min-height: 320px;
    overflow: hidden;          /* hard stop at left column's bottom edge */
}

/* Inner Bootstrap row — stretch to fill the column absolutely */
.section-full.content-inner .container > .row > .col-lg-6:last-child > .row {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}

.section-full.content-inner .container > .row > .col-lg-6:last-child > .row > .col-lg-12 {
    padding: 0 15px;
    height: 100%;
}

/* Full image — fully visible, proportional, no squeeze, no overflow */
.section-full.content-inner .container > .row > .col-lg-6:last-child > .row > .col-lg-12 > img {
    display: block;
    width: 100%;
    height: 100% !important;
    object-fit: contain;       /* full image always visible — no crop */
    object-position: center top;
}

/* Mobile: columns stack naturally */
@media (max-width: 991px) {
    .section-full.content-inner .container > .row {
        display: block;
    }
    .section-full.content-inner .container > .row > .col-lg-6:first-child {
        display: block;
    }
    .section-full.content-inner .container > .row > .col-lg-6:last-child {
        position: static;
        min-height: unset;
        overflow: visible;
    }
    .section-full.content-inner .container > .row > .col-lg-6:last-child > .row {
        position: static;
        width: auto;
        height: auto;
    }
    .section-full.content-inner .container > .row > .col-lg-6:last-child > .row > .col-lg-12 {
        height: auto;
        padding: 0 15px;
    }
    .section-full.content-inner .container > .row > .col-lg-6:last-child > .row > .col-lg-12 > img {
        height: auto !important;
        min-height: 260px;
        width: 100%;
        object-fit: contain;
    }
}
