/* ==========================================================================
   Darshan Extrusions - Pixel-Perfect Web System CSS
   Matched 100% to Reference Design Screenshot (887px Viewport Canvas)
   All-Device & Orientation Responsive Framework
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Root Tokens & Global Variables
   -------------------------------------------------------------------------- */
:root {
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Pixel-Perfect Color Setup */
    --color-primary: #ff2a2a;
    --color-primary-glow: rgba(255, 42, 42, 0.6);
    --color-heading: #ffffff;
    --color-heading-sub: #e4e4e7;
    --color-heading-highlight: #ca354b;
    --color-paragraph: #a1a1aa;

    --color-bg-dark: #000000;
    --color-navbar-bg: rgba(255, 255, 255, 0.02);
    --color-navbar-border: rgba(255, 255, 255, 0.22);
    --color-nav-active-bg: #2b2b2b;

    --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}


@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1320px !important;
        padding-left: 2.5rem !important;
        padding-right: 2.5rem !important;
    }
}

html {
    font-family: var(--font-primary);
    background-color: #ffffff;
    color: var(--color-paragraph);
    scroll-behavior: initial;
}

body {
    font-family: var(--font-primary);
    background-color: #ffffff;
    color: var(--color-paragraph);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: clip;
}

/* Typography Base */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    color: var(--color-heading);
    margin: 0;
}

p {
    color: var(--color-paragraph);
}

.text-red {
    color: var(--color-primary) !important;
}

.text-highlight {
    color: var(--color-heading-highlight) !important;
}

/* --------------------------------------------------------------------------
   2. Lenis Smooth Scroll Standard CSS
   -------------------------------------------------------------------------- */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

/* --------------------------------------------------------------------------
   3. Navbar Design System (Right-Aligned Capsule Bar with Balanced Spacing)
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.site-header.is-sticky {
    background-color: rgba(10, 10, 12, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
}

/* Compact Desktop Sticky Header (min-width: 992px) */
@media (min-width: 992px) {
    .site-header.is-sticky .navbar-brand-card,
    body.about-us-page-body .site-header.is-sticky .navbar-brand-card {
        top: 6px !important;
        left: 20px !important;
        padding: 0.4rem 0.9rem !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    }

    .site-header.is-sticky .navbar-brand-card img,
    body.about-us-page-body .site-header.is-sticky .navbar-brand-card img {
        width: 68px !important;
        height: auto !important;
    }

    .site-header.is-sticky .nav-capsule-container {
        margin-top: 4px !important;
        margin-bottom: 4px !important;
        padding: 4px 6px !important;
        background: rgba(255, 255, 255, 0.08) !important;
        border-color: rgba(255, 255, 255, 0.15) !important;
    }

    .site-header.is-sticky .nav-capsule-link {
        padding: 6px 20px !important;
        font-size: 0.92rem !important;
    }

    .site-header.is-sticky .nav-capsule-link.active {
        padding: 6px 22px !important;
    }
}

/* Left White Logo Badge Card - Stuck Flush to Top-Left */
.navbar-brand-card {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #ffffff;
    padding: 1.15rem 1.8rem 1.45rem 1.8rem;
    border-radius: 0 0 32px 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    z-index: 1050;
    transition: var(--transition-fast);
}

.navbar-brand-card img {
    width: 108px;
    height: auto;
    display: block;
    transition: var(--transition-fast);
}

/* Mobile Responsive Logo & Header Styling (max-width: 991.98px) */
@media (max-width: 991.98px) {
    .navbar-brand-card,
    body.about-us-page-body .navbar-brand-card,
    .site-header.is-sticky .navbar-brand-card,
    body.about-us-page-body .site-header.is-sticky .navbar-brand-card {
        top: 8px !important;
        left: 14px !important;
        border-radius: 12px !important;
        padding: 0.45rem 0.75rem !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    }

    .navbar-brand-card img,
    body.about-us-page-body .navbar-brand-card img,
    .site-header.is-sticky .navbar-brand-card img,
    body.about-us-page-body .site-header.is-sticky .navbar-brand-card img {
        width: 48px !important;
        height: auto !important;
    }

    .mobile-toggler-btn,
    .site-header.is-sticky .mobile-toggler-btn {
        margin-top: 8px !important;
        margin-bottom: 8px !important;
        padding: 6px 14px !important;
    }
}

/* Capsule Navbar Container */
.nav-capsule-container {
    background: var(--color-navbar-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-navbar-border);
    border-radius: 50px;
    padding: 6px 8px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

/* Navbar Capsule Link Items - Increased Spacing */
.nav-capsule-link {
    color: #ffffff !important;
    font-weight: 400;
    font-size: 1.02rem;
    padding: 10px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.nav-capsule-link:hover {
    color: var(--color-primary) !important;
}

.nav-capsule-link.active {
    background-color: var(--color-nav-active-bg);
    color: var(--color-primary) !important;
    font-weight: 500;
    padding: 10px 34px;
}

/* Dropdown Arrow Badge */
.dropdown-badge-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
}

/* --------------------------------------------------------------------------
   3b. Ultra-Modern Full Screen Mobile Offcanvas Menu (Smooth Slide From Right)
   -------------------------------------------------------------------------- */
.mobile-toggler-btn {
    background: var(--color-navbar-bg);
    border: 1px solid var(--color-navbar-border);
    color: #ffffff;
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 1.4rem;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: var(--transition-fast);
}

.mobile-toggler-btn:hover {
    background-color: var(--color-nav-active-bg);
    color: var(--color-primary);
}

.mobile-offcanvas-menu {
    background-color: rgba(5, 5, 5, 0.98) !important;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    border: none !important;
    z-index: 2000 !important;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.mobile-nav-link {
    color: #e4e4e7;
    font-size: 1.25rem;
    font-weight: 500;
    padding: 1rem 1.25rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-fast);
    display: block;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background-color: var(--color-nav-active-bg);
    color: var(--color-primary) !important;
    padding-left: 1.5rem;
}

/* --------------------------------------------------------------------------
   4. Hero Banner Section (Exact Screenshot Matched Pure Dark Background & Red Glow)
   -------------------------------------------------------------------------- */
.hero-banner-section {
    min-height: 100vh;
    background-color: #000000;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 40px;
    overflow: hidden;
}

/* Mobile Adjustments for Hero Banner Spacing */
@media (max-width: 991.98px) {
    .hero-banner-section {
        padding-top: 120px;
        /* Balanced space below logo */
        min-height: auto;
        padding-bottom: 0px;
    }

    .hero-3d-wrapper {
        margin-top: 1rem;
        margin-bottom: 2rem;
        height: 240px !important;
        /* Force a shorter height to crop out empty video space */
    }

    .hero-object-video {
        height: 100% !important;
        max-height: none;
        object-fit: cover !important;
        /* Crop top and bottom transparent space */
    }
}

/* Ambient Red Glow Layers Matching Target Screenshot */
.hero-banner-glow {
    position: absolute;
    top: 50%;
    right: 15%;
    transform: translateY(-50%);
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(241, 49, 49, 0.35) 0%, rgba(202, 53, 75, 0.15) 40%, transparent 75%);
    pointer-events: none;
    filter: blur(55px);
    z-index: 1;
    will-change: transform;
}

.hero-banner-glow-left {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(241, 49, 49, 0.18) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(60px);
    z-index: 1;
}

/* Hero Headline Typography (h1) */
.hero-headline {
    font-family: var(--font-primary);
    font-weight: normal;
}

.hero-headline-red {
    color: var(--color-primary);
    font-size: clamp(2.4rem, 4.5vw, 3.4rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.01em;
    display: block;
    margin-bottom: 4px;
}

.hero-headline-white {
    color: var(--color-heading-sub);
    font-size: clamp(2.2rem, 4.2vw, 3.15rem);
    font-weight: 200;
    line-height: 1.25;
    letter-spacing: -0.02em;
    display: block;
}

/* Subtitle Category Bar */
.hero-subtitle-bar {
    color: #e4e4e7;
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    font-weight: 400;
    margin-top: 34px;
    margin-bottom: 38px;
    padding-top: 6px;
    padding-bottom: 6px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0px;
}

.hero-subtitle-bar .divider {
    color: #71717a;
    margin: 0 10px;
}

/* Glow Pill CTA Button */
.btn-glow-primary {
    background-color: var(--color-primary);
    color: #ffffff !important;
    border: none;
    border-radius: 50px;
    padding: 14px 34px;
    font-weight: 600;
    font-size: 0.98rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px 4px var(--color-primary-glow);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, background-color 0.35s ease;
}

.btn-glow-primary:hover {
    background-color: #e61e1e;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 45px 8px rgba(255, 42, 42, 0.9);
}

/* --------------------------------------------------------------------------
   5. Hero Video Visual Wrapper (Multiply Blend Mode)
   -------------------------------------------------------------------------- */
.hero-3d-wrapper {
    position: relative;
    width: 100%;
    height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-3d-wrapper:hover {
    transform: scale(1.02);
}

.hero-object-video {
    width: 100%;
    max-width: 540px;
    height: 100%;
    max-height: 620px;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: contrast(1.3) brightness(0.92);
    mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 90%);
    -webkit-mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 90%);
    display: block;
    z-index: 2;
}

/* GSAP Baseline Markers */
.gsap-text-item,
.gsap-partner-item,
.gsap-industry-item {
    will-change: transform, opacity;
}

/* --------------------------------------------------------------------------
   5b. Reliable Partner Section Design (Map Stuck Flush to Right Edge)
   -------------------------------------------------------------------------- */
.partner-section {
    background-color: #ffffff;
    color: #3b3b3b;
    padding-top: 90px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.partner-title {
    color: #3b3b3b;
    font-size: clamp(1.85rem, 3.2vw, 2.6rem);
    font-weight: 300;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.partner-text-wrapper {
    max-width: 540px;
}

.partner-paragraph {
    color: #4a4a4a;
    font-size: clamp(0.96rem, 1.05vw, 1.02rem);
    font-weight: 400;
    line-height: 1.58;
    margin-bottom: 0.85rem;
}

/* Map Image Stuck Flush to Viewport Right Edge */
.map-visual-wrapper {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-40%);
    width: clamp(520px, 58vw, 980px);
    pointer-events: none;
    z-index: 1;
}

.map-graphic {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: right center;
    will-change: transform;
    transition: transform 0.5s ease-out;
}

.partner-section:hover .map-graphic {
    transform: scale(1.02);
}

/* Journey Button Row Top Margin */
.journey-button-row {
    margin-top: 90px;
}

/* Capsule "Our Journey" Pill Button */
.btn-journey-capsule {
    background-color: #ffffff;
    color: #555555 !important;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    padding: 16px 84px;
    min-width: 260px;
    font-size: 1.18rem;
    font-weight: 400;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.09);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, background-color 0.35s ease, border-color 0.35s ease;
}

.btn-journey-capsule:hover {
    background-color: #f8f9fa;
    color: var(--color-primary) !important;
    border-color: rgba(255, 42, 42, 0.3);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 22px 55px rgba(255, 42, 42, 0.22);
}

/* --------------------------------------------------------------------------
   6. Manufacturing Capability & Why Choose Industrial Red Section
   ========================================================================== */
.mfg-why-section {
    background-color: #8c071a;
    background-image: url('../images/home/why-choose-bg.png');
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding-top: 200px;
    padding-bottom: 150px;
    color: #ffffff;
    overflow: hidden;
    min-height: 1600px;
}

/* Subtle Vertical Red Fine Lines Overlay */
.mfg-why-section::before {
    display: none;
}

/* Subtle Factory Overlay */
.mfg-factory-overlay {
    display: none;
}

.custom-mfg-container {
    max-width: 1380px;
    padding-left: 5vw;
    padding-right: 5vw;
}

/* Chrome Decorative Extrusion Objects */
.dec-object-right {
    top: 300px;
    right: -135px;
    width: 370px;
    height: auto;
    z-index: 2;
    pointer-events: none;
    opacity: 0.95;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.65));
}

.dec-object-left {
    bottom: 110px;
    left: -145px;
    width: 430px;
    height: auto;
    z-index: 2;
    pointer-events: none;
    opacity: 0.95;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.65));
}

/* Upper Section: Manufacturing Capability */
.mfg-upper-row {
    margin-bottom: 140px;
}

.mfg-left-col {
    z-index: 3;
    padding-top: 10px;
}

.mfg-title {
    font-size: clamp(2rem, 2.5vw, 2.6rem);
    line-height: 1.15;
    margin-bottom: 32px;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.mfg-title .fw-bold {
    font-weight: 700 !important;
    color: #ffffff;
}

.mfg-title .fw-light {
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.85);
}

.mfg-desc {
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    font-weight: 300;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
    max-width: 490px;
}

/* Swiper Slider Layout (Upper Right) */
.mfg-right-col {
    padding-top: 0px;
    z-index: 3;
}

.mfg-capability-swiper {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 0;
    overflow: hidden;
}

.mfg-slide-card {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.35;
    transform: scale(0.6);
}

.swiper-slide-active .mfg-slide-card {
    opacity: 1;
    transform: scale(1.4);
}

.mfg-icon-box {
    width: 160px;
    height: 160px;
    margin: 0 auto 10px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mfg-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 6px 22px rgba(0, 0, 0, 0.5));
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.swiper-slide-active .mfg-icon-img {
    filter: brightness(0) invert(1) drop-shadow(0 10px 20px rgba(255, 255, 255, 0.4));
}

.mfg-slide-label {
    font-size: 1.15rem;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.25;
    margin: 0;
    white-space: normal;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.swiper-slide-active .mfg-slide-label {
    font-size: 1.15rem;
    font-weight: 700;
}

/* Swiper Circular Arrow Controls */
.mfg-swiper-button-prev,
.mfg-swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
    padding: 0;
}

.mfg-swiper-button-prev {
    left: 5px;
}

.mfg-swiper-button-next {
    right: 5px;
}

.mfg-swiper-button-prev:hover,
.mfg-swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #ffffff;
}

.arrow-icon {
    width: 13px;
    height: 13px;
    filter: brightness(10);
}

.prev-icon {
    transform: rotate(0deg);
}

.next-icon {
    transform: rotate(180deg);
}

/* Lower Section: Why Choose & Worker Composition */
.why-lower-row {
    min-height: 980px;
}

.why-title-col {
    z-index: 3;
    padding-top: 60px;
    padding-left: 60px;
}

.why-choose-heading {
    font-size: clamp(3.8rem, 5.5vw, 5rem);
    line-height: 1.05;
    letter-spacing: -0.01em;
}

.why-light {
    font-weight: 300;
    color: #ffffff;
}

.why-bold {
    font-weight: 800;
    color: #ffffff;
}

/* Composition Space */
.why-composition-col {
    min-height: 980px;
}

/* Dark Red Organic Curved Backdrop Panel Behind Worker */
.why-curved-bg-panel {
    display: none;
}

/* Technical Curved White Line */
.why-technical-line {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

/* Worker Person Graphic (Large Central Visual) */
.why-worker-wrapper {
    position: absolute;
    top: -60px;
    left: 23%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 680px;
    height: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    z-index: 3;
    pointer-events: none;
}

.why-worker-img {
    height: 100%;
    width: auto;
    max-height: 1030px;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 25px 60px rgba(0, 0, 0, 0.92));
    will-change: transform;
}

/* CTA Pill Button Layered Over Lower Worker Feet Area */
.why-cta-wrapper {
    position: absolute;
    bottom: -35px;
    left: 20%;
    transform: translateX(-50%);
    z-index: 5;
    pointer-events: auto;
}

.btn-mfg-cta {
    background: #ffffff;
    color: #8c071a !important;
    font-weight: 700;
    font-size: 0.96rem;
    padding: 12px 36px;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.65), 0 8px 24px rgba(0, 0, 0, 0.6);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.btn-mfg-cta:hover {
    background: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 45px rgba(255, 255, 255, 0.95), 0 14px 35px rgba(0, 0, 0, 0.75);
}

/* Translucent Angled Glass Benefit Cards */
.why-floating-card {
    position: absolute;
    z-index: 4;
    width: 420px;
    height: 95px;
    border-radius: 18px;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 88% 100%, 0 100%);
    background: url("../images/home/card-bg.png") center/100% 100% no-repeat;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
    will-change: transform, opacity;
}

.why-floating-card:hover {
    transform: translateY(-5px) scale(1.03) !important;
    filter: brightness(1.2) drop-shadow(0 15px 35px rgba(255, 255, 255, 0.25));
}

.card-glass-content {
    padding: 16px 36px 16px 20px;
    /* Accommodate right slant for all cards */
    display: flex;
    align-items: center;
    gap: 16px;
    height: 100%;
    position: relative;
    z-index: 2;
}

.card-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex-shrink: 0;
    filter: brightness(10);
    /* Make icons solid white */
}

.card-text {
    display: flex;
    flex-direction: column;
}

.card-text-title {
    font-size: 1.35rem;
    /* Increased for desktop */
    font-weight: 600;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 2px;
}

.card-text-desc {
    font-size: 1.15rem;
    /* Increased for desktop */
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.25;
}

/* Desktop Card Positions around Worker */
.card-pos-1 {
    top: 370px;
    left: -250px;
}

.card-pos-2 {
    top: 510px;
    right: 30px;
}

.card-pos-3 {
    top: 670px;
    left: -250px;
}

.card-pos-4 {
    top: 750px;
    right: 30px;
}

/* --------------------------------------------------------------------------
   7. Our Clients Section
   ========================================================================== */
.clients-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.clients-title {
    font-size: clamp(2.2rem, 3vw, 2.8rem);
    color: #444444;
    font-weight: 300;
}

.clients-slider-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 60px;
}

.client-logo-box {
    background: #f4f4f4;
    border-radius: 12px;
    padding: 30px 40px;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.client-logo-box:hover {
    background: #eaeaea;
    transform: translateY(-3px);
}

.client-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.clients-swiper-prev,
.clients-swiper-next {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #cc0000;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    transition: var(--transition-fast);
}

.clients-swiper-prev {
    left: -20px;
}

.clients-swiper-next {
    right: -20px;
}

.clients-swiper-prev:hover,
.clients-swiper-next:hover {
    background: #990000;
}

.clients-swiper-prev .arrow-icon,
.clients-swiper-next .arrow-icon {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.clients-pagination {
    margin-top: 30px !important;
}

.clients-pagination .swiper-pagination-bullet {
    background: #cccccc;
    opacity: 1;
    width: 8px;
    height: 8px;
    margin: 0 6px !important;
}

.clients-pagination .swiper-pagination-bullet-active {
    background: #444444;
}

/* --------------------------------------------------------------------------
   8. Testimonial Section (Pixel-Matched to Reference Screenshot)
   ========================================================================== */
.testimonial-section {
    position: relative;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.testimonial-bg-panel {
    background: linear-gradient(135deg, #d30c27 0%, #9e0217 50%, #7a0010 100%);
    border-radius: 36px;
    position: relative;
    padding: 40px 20px 55px 20px;
    /* box-shadow: 0 20px 50px rgba(130, 0, 15, 0.25); */
    overflow: visible !important;
}

.testimonial-slider-wrapper {
    max-width: 994px;
    margin: 0 auto;
}

.testimonial-swiper {
    overflow: hidden !important;
    padding: 15px 0 35px 0 !important;
}

.review-thumb-icon {
    position: absolute;
    top: 60px;
    right: 60px;
    width: 130px;
    height: auto;
    z-index: 10;
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.35));
    pointer-events: none;
}

.review-card {
    background: #ffffff;
    border-radius: 40px !important;
    padding: 30px 24px 30px 24px !important;
    width: 100%;
    max-width: 472px;
    height: 266px;
    margin: 0 auto;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22) !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

@media (min-width: 992px) {
    .review-card {
        width: 472px !important;
        height: 266px !important;
    }
}

.review-main-text {
    font-size: 1.35rem !important;
    font-weight: 700 !important;
    color: #444444 !important;
    line-height: 1.35 !important;
    letter-spacing: -0.01em;
    margin-top: 8px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.review-sub-text {
    font-size: 0.98rem !important;
    font-weight: 600 !important;
    color: #777777 !important;
    line-height: 1.45 !important;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.review-stars-badge {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    border: 3.5px solid #0066cc !important;
    border-radius: 50px !important;
    padding: 6px 20px !important;
    box-shadow: 0 6px 18px rgba(0, 102, 204, 0.35) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.star-icon {
    width: 20px;
    height: 20px;
    margin: 0 3px;
    filter: drop-shadow(0 2px 4px rgba(255, 180, 0, 0.4));
}

/* --------------------------------------------------------------------------
   9. CTA Section
   ========================================================================== */
.cta-section {
    position: relative;
    background-color: #ffffff;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    z-index: 20;
    overflow: hidden;
}

.cta-bg-img {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100% !important;
    width: auto;
    max-width: 650px;
    object-fit: contain;
    object-position: right center;
    opacity: 0.9;
    pointer-events: none;
    z-index: 1;
}

.cta-floating-object {
    position: absolute;
    left: -150px;
    top: -140px;
    width: 420px;
    height: 500px;
    transform: none !important;
    object-fit: contain;
    filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.3));
    pointer-events: none;
    z-index: 100 !important;
    display: none;
}

@media (min-width: 992px) {
    .cta-floating-object {
        display: block !important;
    }
}

@media (max-width: 991.98px) {
    .cta-bg-img {
        max-width: 85% !important;
        height: auto !important;
        opacity: 0.15 !important;
    }

    .cta-section {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
}

.cta-btn {
    background-color: #c8102e;
    border-color: #c8102e;
    color: #ffffff !important;
    transition: var(--transition-fast);
}

.cta-btn:hover {
    background-color: #a80b24;
    border-color: #a80b24;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(200, 16, 46, 0.4) !important;
}

/* --------------------------------------------------------------------------
   10. Footer Section
   ========================================================================== */
.main-footer {
    position: relative;
    z-index: 999 !important;
    overflow-x: hidden;
}

@media (max-width: 575.98px) {
    .footer-logo {
        margin-left: 0 !important;
        padding-left: 1.5rem !important;
        border-radius: 12px !important;
        width: 100% !important;
        max-width: 260px !important;
    }
}

/* Tablet Landscape Adjustments (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .why-worker-wrapper {
        position: absolute !important;
        left: 23% !important;
        transform: translateX(-50%) !important;
        max-width: 520px !important;
        height: 100% !important;
        top: -60px !important;
    }

    .why-floating-card {
        width: 320px !important;
        height: 90px !important;
    }

    .card-text-title {
        font-size: 1.08rem !important;
    }

    .card-text-desc {
        font-size: 0.94rem !important;
    }

    .card-pos-1 {
        left: -220px !important;
        top: 350px !important;
        right: auto !important;
    }

    .card-pos-2 {
        right: 20px !important;
        top: 490px !important;
        left: auto !important;
    }

    .card-pos-3 {
        left: -220px !important;
        top: 650px !important;
        right: auto !important;
    }

    .card-pos-4 {
        right: 20px !important;
        top: 750px !important;
        left: auto !important;
    }

    .why-cta-wrapper {
        position: absolute !important;
        left: 20% !important;
        transform: translateX(-50%) !important;
        bottom: -35px !important;
    }

    .cta-floating-object {
        display: block !important;
        left: -110px !important;
        top: -110px !important;
        width: 330px !important;
        height: 420px !important;
    }

    .cta-bg-img {
        max-width: 520px !important;
        opacity: 0.7 !important;
    }
}

/* Tablet Portrait Adjustments (768px - 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .why-title-col {
        width: 100% !important;
        text-align: center !important;
        margin-bottom: 2rem !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .why-choose-heading {
        text-align: center !important;
        font-size: 3.5rem !important;
    }

    .why-light,
    .why-bold {
        display: inline-block !important;
        margin: 0 4px !important;
    }

    .why-lower-row {
        min-height: auto;
    }

    .why-composition-col {
        width: 100% !important;
        min-height: 860px !important;
        position: relative !important;
    }

    .why-floating-card {
        width: 310px !important;
        height: 90px !important;
        position: absolute !important;
    }
    
    .why-worker-wrapper {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 100% !important;
        max-width: 440px !important;
        height: 820px !important;
        top: 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: flex-end !important;
        pointer-events: none !important;
    }

    .why-worker-img {
        height: 100% !important;
        width: auto !important;
        max-height: 780px !important;
        object-fit: contain !important;
        object-position: bottom center !important;
    }

    .why-cta-wrapper {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        bottom: 0px !important;
        z-index: 10 !important;
    }

    .card-pos-1 {
        top: 160px !important;
        left: 0px !important;
        right: auto !important;
    }

    .card-pos-2 {
        top: 160px !important;
        right: 0px !important;
        left: auto !important;
    }

    .card-pos-3 {
        top: 480px !important;
        left: 0px !important;
        right: auto !important;
    }

    .card-pos-4 {
        top: 480px !important;
        right: 0px !important;
        left: auto !important;
    }

    .testimonial-bg-panel {
        padding: 35px 25px 50px 25px !important;
    }

    .review-card {
        width: 100% !important;
        max-width: 540px !important;
        height: auto !important;
        min-height: 250px !important;
        margin: 0 auto !important;
    }

    .review-thumb-icon {
        top: 20px !important;
        right: 25px !important;
        width: 90px !important;
    }

    .clients-swiper-prev {
        left: 5px !important;
    }

    .clients-swiper-next {
        right: 5px !important;
    }

    .cta-floating-object {
        display: block !important;
        left: -100px !important;
        top: -100px !important;
        width: 300px !important;
        height: 380px !important;
        opacity: 0.85 !important;
    }

    .cta-bg-img {
        max-width: 480px !important;
        opacity: 0.4 !important;
    }
}

@media (max-width: 767.98px) {
    .why-composition-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 2rem;
    }

    .why-floating-card {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        width: 100%;
        margin-bottom: 16px;
    }

    .why-worker-wrapper {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        height: 450px;
        margin: 20px auto 24px auto !important;
        order: 1;
    }

    .why-worker-img {
        max-height: 100%;
        object-fit: contain;
    }

    .why-cta-wrapper {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 20px;
        width: 100%;
        text-align: center;
        order: 6;
    }

    .card-pos-1 {
        order: 2;
    }

    .card-pos-2 {
        order: 3;
    }

    .card-pos-3 {
        order: 4;
    }

    .card-pos-4 {
        order: 5;
    }

    .dec-object-left,
    .dec-object-right {
        display: none;
    }

    .testimonial-bg-panel {
        padding: 30px 15px 45px 15px !important;
        border-radius: 24px !important;
    }

    .review-card {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 240px !important;
        padding: 24px 16px 32px 16px !important;
        margin: 0 auto !important;
    }

    .review-main-text {
        font-size: 1.1rem !important;
        line-height: 1.35 !important;
    }

    .review-sub-text {
        font-size: 0.88rem !important;
        line-height: 1.4 !important;
        margin-bottom: 20px !important;
    }

    .review-thumb-icon {
        top: 15px !important;
        right: 15px !important;
        width: 75px !important;
    }

    .clients-swiper-prev {
        left: 0px !important;
    }

    .clients-swiper-next {
        right: 0px !important;
    }

    .cta-floating-object {
        display: none !important;
    }

    .cta-bg-img {
        max-width: 85% !important;
        height: auto !important;
        opacity: 0.15 !important;
    }
}

/* ==========================================================================
   Industries We Serve Section - Art-Directed Screenshot Matched CSS
   ========================================================================== */

.industries-section {
    position: relative;
    background-color: #f7f7f6;
    background-image: url('../images/home/industries-we-serve-bg.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding-top: 0;
    padding-bottom: 0;
    color: #333333;
    overflow: hidden;
    z-index: 1;
}

/* Background Translucent Waves Overlay */
.industries-bg-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.wave-layer {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
}

.wave-layer.wave-1 {
    top: 15%;
    left: -12%;
    width: 125%;
    height: 520px;
    background: radial-gradient(ellipse at 30% 50%, rgba(200, 200, 200, 0.4) 0%, rgba(230, 230, 230, 0.2) 45%, transparent 70%);
    transform: rotate(-4deg);
    filter: blur(28px);
}

.wave-layer.wave-2 {
    top: 45%;
    right: -15%;
    width: 130%;
    height: 560px;
    background: radial-gradient(ellipse at 70% 50%, rgba(195, 195, 195, 0.38) 0%, rgba(225, 225, 225, 0.18) 50%, transparent 75%);
    transform: rotate(5deg);
    filter: blur(32px);
}

.wave-layer.wave-3 {
    top: 75%;
    left: -15%;
    width: 130%;
    height: 540px;
    background: radial-gradient(ellipse at 40% 50%, rgba(200, 200, 200, 0.38) 0%, rgba(230, 230, 230, 0.2) 48%, transparent 70%);
    transform: rotate(-3deg);
    filter: blur(28px);
}

/* Metallic Decorative Strips */
.industries-metallic-strip {
    position: relative;
    width: 100%;
    line-height: 0;
    z-index: 10;
}

.industries-metallic-strip.top-strip {
    margin-bottom: 4rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.industries-metallic-strip.bottom-strip {
    margin-top: 4.5rem;
}

.bottom-red-accent {
    width: 100%;
    height: 80px;
    background: linear-gradient(180deg, #c8102e 0%, #7e0013 70%, #50000b 100%);
    box-shadow: inset 0 4px 14px rgba(0, 0, 0, 0.45);
    margin-top: -2px;
}

/* Intro Header Area */
.industries-intro-row {
    margin-bottom: 4.5rem;
}

.industries-main-title {
    font-size: clamp(2.3rem, 3.4vw, 2.85rem);
    font-weight: 300;
    color: #333333;
    margin-bottom: 0.85rem;
    letter-spacing: -0.01em;
}

.industries-main-subtitle {
    font-size: clamp(1.05rem, 1.35vw, 1.2rem);
    color: #555555;
    line-height: 1.6;
    font-weight: 400;
}

.text-red-highlight {
    color: #df1738;
    font-weight: 500;
}

/* Industry Compositions Height & Spacing */
.industries-comp-row {
    margin-bottom: 6.5rem;
}

.industries-comp-row:last-of-type {
    margin-bottom: 3.5rem;
}

/* Large Profile Visual Column & Image Scaling (NO MIX-BLEND-MODE / NO FILTERS / NO WHITE PANELS) */
.large-profile-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 620px;
    text-align: center;
    background: transparent;
    overflow: visible;
}

.large-profile-img {
    width: 100%;
    object-fit: contain;
    object-position: center;
    position: relative;
    z-index: 5;
    background: transparent;
    transition: transform 0.4s ease;
}

.architectural-img {
    max-height: 660px;
    max-width: 620px;
    margin-left: -2%;
    margin-top: 15px;
}

.industrial-img {
    max-height: 600px;
    max-width: 580px;
    margin-left: -50px;
    /* Shift Industrial image 50px towards the left */
    margin-top: 10px;
}

.electrical-img {
    max-height: 620px;
    max-width: 600px;
    margin-left: -2%;
    margin-top: -15px;
}

.large-profile-wrapper:hover .large-profile-img {
    transform: translateY(-5px);
}

/* Single Floor Shadow beneath Cutout Images (No duplicate shadow strips) */
.profile-floor-shadow {
    position: absolute;
    bottom: -18px;
    left: 8%;
    width: 84%;
    height: 28px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    filter: blur(12px);
    z-index: 2;
    pointer-events: none;
}

/* Headings & Red Dots */
.industry-header-group {
    margin-bottom: 1.6rem;
}

.industry-title-wrapper {
    display: inline-flex;
    align-items: center;
    position: relative;
    gap: 12px;
    margin-bottom: 0.6rem;
}

.red-dot {
    width: 10px;
    height: 10px;
    background-color: #df1738;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(223, 23, 56, 0.4);
}

.industry-title {
    font-size: clamp(2.3rem, 3.3vw, 2.75rem);
    color: #df1738;
    font-weight: 400;
    margin-bottom: 0;
    display: inline-block;
}

.industry-desc {
    font-size: 0.98rem;
    color: #555555;
    line-height: 1.58;
    max-width: 490px;
    margin-bottom: 1.8rem;
}

/* Move Industrial Content Group ~90px Right Toward Center */
.industrial-content-col {
    padding-left: 90px;
}

/* Extended Connector Line SVGs */
.connector-svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 44px;
    pointer-events: none;
    z-index: 6;
}

.connector-architectural {
    right: 100%;
    margin-right: -8px;
    width: 270px;
}

.connector-industrial {
    left: 100%;
    margin-left: -8px;
    width: 270px;
}

.connector-electrical {
    right: 100%;
    margin-right: -8px;
    width: 270px;
}

/* Product 5-Card Mosaic Grid (Enlarged Cards & 35-50% Larger Thumbnails) */
.product-mosaic-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 590px;
    width: 100%;
}

/* Product Cards */
.product-card {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    min-height: 88px;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.product-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.09);
    transform: translateY(-3px);
}

.product-card.card-span-full {
    grid-column: span 2;
}

.card-text-wrapper {
    flex: 1;
    padding-right: 12px;
}

.card-label {
    font-size: 0.98rem;
    font-weight: 500;
    color: #333333;
    line-height: 1.3;
    display: block;
}

/* 35–50% Enlarged Thumbnail Container */
.card-img-wrapper {
    width: 104px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Active Selected Brand-Red Card */
.product-card.card-active {
    background-color: #df1738;
    border-color: #df1738;
    box-shadow: 0 6px 22px rgba(223, 23, 56, 0.38);
}

.product-card.card-active .card-label {
    color: #ffffff;
    font-weight: 600;
}

.product-card.card-active:hover {
    background-color: #c8102e;
    border-color: #c8102e;
}

/* Explore Products Button */
.explore-products-row {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.btn-explore-products {
    background-color: #df1738;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    padding: 13px 44px;
    border-radius: 50px;
    box-shadow: 0 6px 22px rgba(223, 23, 56, 0.38);
    text-decoration: none;
    display: inline-block;
    border: none;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
}

.btn-explore-products:hover {
    background-color: #c8102e;
    color: #ffffff;
    box-shadow: 0 9px 28px rgba(223, 23, 56, 0.52);
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 1199px) {

    .architectural-img,
    .industrial-img,
    .electrical-img {
        max-height: 440px;
        margin-left: 0;
        margin-right: 0;
        margin-top: 0;
    }

    .connector-svg {
        display: none;
    }

    .industrial-content-col {
        padding-left: 0;
    }
}

@media (max-width: 991px) {
    .industries-comp-row {
        margin-bottom: 4.5rem;
    }

    .large-profile-wrapper {
        max-width: 440px;
        margin-bottom: 2rem;
    }

    .architectural-img,
    .industrial-img,
    .electrical-img {
        max-height: 360px;
    }

    .product-mosaic-grid {
        max-width: 100%;
    }

    .industry-desc {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .hero-headline-red {
        font-size: clamp(1.65rem, 6vw, 2.1rem);
    }

    .hero-headline-white {
        font-size: clamp(1.5rem, 5.4vw, 1.95rem);
    }

    .industries-main-title {
        font-size: 1.95rem;
    }

    .industries-comp-row {
        margin-bottom: 3.5rem;
    }

    .architectural-img,
    .industrial-img,
    .electrical-img {
        max-height: 270px;
    }

    .product-card {
        min-height: 68px;
        padding: 10px 14px;
    }

    .card-label {
        font-size: 0.84rem;
    }

    .card-img-wrapper {
        width: 72px;
        height: 50px;
    }
}

/* --------------------------------------------------------------------------
   16. Back to Top Floating Button
   -------------------------------------------------------------------------- */
.back-to-top-btn {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ff2a2a;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    box-shadow: 0 10px 30px rgba(255, 42, 42, 0.5);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, background-color 0.3s ease;
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.back-to-top-btn:hover {
    background-color: #e61e1e;
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 14px 40px rgba(255, 42, 42, 0.85);
}

.back-to-top-btn:active {
    transform: translateY(-2px) scale(0.98);
}

@media (max-width: 767px) {
    .back-to-top-btn {
        bottom: 25px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

/* --------------------------------------------------------------------------
   Footer External Styling (Zero Inline CSS)
   -------------------------------------------------------------------------- */
.main-footer {
    overflow-x: hidden;
}

.footer-bg-layer {
    background: url('../images/footer-bg.png') center/cover no-repeat;
    opacity: 1;
}

.footer-logo-badge {
    margin-left: -50vw;
    padding-left: 50vw;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.footer-logo-img {
    width: 240px;
    height: auto;
}

.footer-text-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
    padding-right: 20px;
}

.footer-v-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.25);
}

.footer-heading {
    color: #ff2a2a;
    font-size: 1.15rem;
}

.footer-contact-link {
    font-size: 0.95rem;
}

.footer-address-text {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-social-img {
    width: 40px;
    height: 40px;
}

.footer-bottom-bar {
    font-size: 0.9rem;
}

.footer-dev-link {
    color: #ff2a2a;
}

/* Breadcrumbs Custom Styling */
.breadcrumb-item a {
    color: #ff2a2a;
    transition: var(--transition-fast);
}
.breadcrumb-item a:hover {
    color: #ffffff;
    opacity: 0.9;
}
.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.6) !important;
}
.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.3) !important;
}

.footer-sitemap-link {
    transition: var(--transition-fast);
}
.footer-sitemap-link:hover {
    color: #ff2a2a !important;
}