/* ==========================================================================
   LOCAL FONTS MAPPING (PLUS JAKARTA SANS - FROM LOCAL FONTS FOLDER)
   ========================================================================== */

/* Light Weight - 300 */
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/static/PlusJakartaSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

/* Regular Weight - 400 */
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/static/PlusJakartaSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Medium Weight - 500 */
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/static/PlusJakartaSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

/* SemiBold Weight - 600 */
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/static/PlusJakartaSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

/* Bold Weight - 700 */
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/static/PlusJakartaSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* ExtraBold Weight - 800 */
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/static/PlusJakartaSans-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

:root {
    --gold-icons: #caa05c;        /* Client Luxury Gold */
    --bg-cream: #faf8f4;          /* Client Off-white/Cream panel background */
    --heading-black: #0b0f19;     /* Deep solid corporate black */
    --text-charcoal: #334155;     
    --topbar-bg: #0b0f19;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-charcoal);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .fw-heading {
    color: var(--heading-black) !important;
    font-weight: 700;
}
/* ==========================================================================
   SUPER SMOOTH HOVER TRANSITIONS FIXED (FOR ALL STATES)
   ========================================================================== */

/* 1. Global State elements apply smooth transition */
a, .nav-link, .btn, 
.header-icon-circle, .canvas-icon-circle,
.hero-quote-icon-circle, .hero-readmore-icon-circle, 
.social-icon-btn, .mouse-icon, .wheel-dot {
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

/* 2. Forces transition specifically on the HOVER state to prevent sudden snaps */
a:hover, .nav-link:hover, .btn:hover,
.btn-header-quote:hover, .btn-hero-quote:hover, .btn-hero-readmore:hover,
.btn-header-quote:hover .header-icon-circle,
.btn-hero-quote:hover .hero-quote-icon-circle,
.btn-hero-readmore:hover .hero-readmore-icon-circle,
.social-icon-btn:hover {
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
}
a {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

/* ==========================================================================
   DESKTOP TOP BAR & NAVBAR
   ========================================================================== */
.top-bar {
    background-color: #192324;
    font-size: 13px;
    font-weight: 500;
    padding: 11px!important;
}
.top-contacts a, .top-socials a {
    color: #cbd5e1;
}
.top-contacts a i {
    color: #dedede;
}
.top-contacts a:hover, .top-socials a:hover {
    color: #ffffff;
    /* text-decoration: solid; */
}

.main-navbar {
    background-color: #ffffff;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.01);
    padding: 4px 0;
    border-bottom: 1px solid #e2e8f0;
}
.navbar-logo {
    max-height: 74px;
}

.main-navbar .nav-link {
    color: var(--text-charcoal) !important;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 16px !important;
}
.main-navbar .nav-link:hover, .main-navbar .nav-link.active {
    color: var(--gold-icons) !important;
}

@media (min-width: 992px) {
    .row-w {
        width: 100%;
    }
}

/* Premium Hover Dropdown Menu with Cream Accent background */
.dropdown-hover {
    position: relative;
}
.dropdown-toggle-custom {
    color: var(--text-charcoal) !important;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 16px !important;
    display: inline-flex;
    align-items: center;
}
.style-arrow {
    font-size: 11px;
    transition: transform 0.3s ease;
}
.dropdown-hover:hover .style-arrow {
    transform: rotate(180deg);
    color: var(--gold-icons);
}
.dropdown-hover:hover .dropdown-toggle-custom {
    color: var(--gold-icons) !important;
}
.desktop-dropdown {
    position: absolute;
    top: 140%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #ffffff;
    min-width: 320px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.04);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    list-style: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06) !important;
}
.dropdown-hover:hover .desktop-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    top: 100%;
}
.desktop-dropdown li a {
    display: block;
    padding: 10px 14px;
    color: var(--text-charcoal);
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
}
.desktop-dropdown li a:hover {
    background-color: var(--bg-cream);
    color: var(--gold-icons);
    padding-left: 18px;
}

/* ==========================================================================
   BUTTON 1: HEADER GET A QUOTE (SEPARATE CLASS)
   ========================================================================== */
.btn-header-quote {
    background-color: #ffffff;
    border: 2px solid var(--heading-black);
    color: #000000 !important;
    border-radius: 100px;
    font-weight: 600;
    font-size: 12px;
    padding: 6px 14px !important;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.btn-header-quote .header-icon-circle {
    width: 24px;
    height: 24px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-header-quote:hover {
    background-color: var(--heading-black);
    color: #ffffff !important;
    transform: translateY(-2px);
}
.btn-header-quote:hover .header-icon-circle {
    background-color: #ffffff;
    color: #000000;
}

/* ==========================================================================
   MOBILE SIDEBAR CANVAS & ITS BUTTONS
   ========================================================================== */
.custom-toggler {
    border: none !important;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0;
}
.custom-toggler:focus {
    box-shadow: none !important;
}
.custom-toggler .toggler-icon {
    width: 24px;
    height: 2px;
    background-color: var(--heading-black);
    border-radius: 2px;
}

.mobile-sidebar {
    width: 320px !important;
    border-left: none !important;
    box-shadow: -10px 0 40px rgba(0,0,0,0.04) !important;
}
.mobile-sidebar-logo {
    max-height: 40px;
}
.mobile-nav-list li {
    margin-bottom: 6px;
}
.mobile-nav-link {
    display: block;
    padding: 12px 8px;
    color: var(--heading-black);
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
}
.mobile-nav-link:hover, .mobile-nav-link.active {
    color: var(--gold-icons);
    background-color: var(--bg-cream);
}

.mobile-sub-collapse ul li a {
    display: block;
    padding: 8px 12px;
    color: var(--text-charcoal);
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
}
.mobile-sub-collapse ul li a i {
    color: var(--gold-icons);
}
.mobile-sub-collapse ul li a:hover {
    color: var(--gold-icons);
    background-color: var(--bg-cream);
}
.mobile-dropdown-item [aria-expanded="true"] i {
    transform: rotate(180deg);
    color: var(--gold-icons) !important;
}

.btn-mobile-canvas-quote {
    background-color: var(--heading-black);
    border: 2px solid var(--heading-black);
    color: #ffffff !important;
    border-radius: 8px;
    padding: 12px 16px !important;
    font-weight: 600;
    font-size: 14px;
    width: 100%;
}
.btn-mobile-canvas-quote .canvas-icon-circle {
    color: var(--gold-icons);
}

/* Canvas Footer Styles */
.fs-7 {
    font-size: 12px;
    letter-spacing: 0.05em;
}
.sidebar-contacts a {
    color: var(--text-charcoal);
    font-size: 14px;
    font-weight: 500;
}
.sidebar-contacts a i {
    color: var(--gold-icons);
}
.social-icon-btn {
    width: 36px;
    height: 36px;
    background-color: var(--bg-cream);
    color: var(--heading-black);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 15px;
}
.social-icon-btn:hover {
    background-color: var(--gold-icons);
    color: #ffffff;
    transform: translateY(-2px);
}

/* ==========================================================================
   FULL-SCREEN LUXURY CINEMATIC HERO 
   ========================================================================== */
.hero-cinematic {
    min-height: 100vh;
    padding: 80px 0;
    background-image: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(11, 15, 25, 0.9) 0%, rgba(11, 15, 25, 0.7) 50%, rgba(11, 15, 25, 0.4) 100%);
    z-index: 1;
}

.hero-cinematic .z-3 {
    z-index: 3;
}

.hero-sub-indicator {
    color: #cbd5e1;
}
.hero-sub-indicator .indicator-line {
    width: 30px;
    height: 2px;
    background-color: var(--gold-icons);
    display: inline-block;
}
.hero-sub-indicator .indicator-text {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.hero-display-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #ffffff !important;
}

.hero-display-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #e2e8f0;
    max-width: 640px;
    font-weight: 400;
}

@media (max-width: 991.98px) {
    .hero-cinematic {
        min-height: 85vh;
        padding: 100px 0;
    }
    .hero-display-title {
        font-size: 27px;
    }
    .hero-display-desc {
        font-size: 13px;
    }
}

/* ==========================================================================
   HERO BUTTON 1: GET A QUOTE (SOLID CAPSULE - IMAGE 2 STYLE)
   ========================================================================== */
.btn-hero-quote {
    background-color: var(--heading-black);
    border: 2px solid #6c6c6c;
    color: #ffffff !important;
    border-radius: 100px;
    padding: 12px 28px !important;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.btn-hero-quote .hero-quote-icon-circle {
    width: 28px;
    height: 28px;
    background-color: #ffffff;
    color: var(--heading-black);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-hero-quote:hover {
    background-color: transparent;
    color: #ffffff !important;
    border-color: #ffffff;
    transform: translateY(-3px);
}
.btn-hero-quote:hover .hero-quote-icon-circle {
    background-color: #ffffff;
    color: var(--heading-black);
    transform: rotate(45deg);
}

/* ==========================================================================
   HERO BUTTON 2: READ MORE (GHOST LIGHT - IMAGE 3 STYLE)
   ========================================================================== */
.btn-hero-readmore {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #ffffff !important;
    border-radius: 100px;
    padding: 12px 28px !important;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.btn-hero-readmore .hero-readmore-icon-circle {
    width: 28px;
    height: 28px;
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-hero-readmore:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: var(--heading-black) !important;
    transform: translateY(-3px);
}
.btn-hero-readmore:hover .hero-readmore-icon-circle {
    background-color: var(--heading-black);
    color: #ffffff;
}

/* ==========================================================================
   ANIMATED SCROLL DOWN INDICATOR
   ========================================================================== */
.scroll-down-wrapper {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
}
.scroll-down-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}
.scroll-down-indicator:hover {
    opacity: 1;
    color: var(--gold-icons);
}

/* Mouse Frame Styling */
.mouse-icon {
    width: 26px;
    height: 42px;
    border: 2px solid #ffffff;
    border-radius: 20px;
    position: relative;
    display: flex;
    justify-content: center;
}
.scroll-down-indicator:hover .mouse-icon {
    border-color: var(--gold-icons);
}

/* Moving wheel inside mouse */
.wheel-dot {
    width: 4px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    animation: scrollWheelAnimation 1.6s infinite ease-in-out;
}
.scroll-down-indicator:hover .wheel-dot {
    background-color: var(--gold-icons);
}

/* Blinking/Bouncing Chevron Arrow below mouse */
.arrow-down-blink {
    font-size: 16px;
    animation: arrowBounceAnimation 1.6s infinite ease-in-out;
}

/* Keyframe Animations */
@keyframes scrollWheelAnimation {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(6px); opacity: 0.4; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes arrowBounceAnimation {
    0% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(4px); opacity: 1; }
    100% { transform: translateY(0); opacity: 0.5; }
}
/* ==========================================================================
   FLOATING WHATSAPP & CALL WIDGETS WITH SMOOTH PULSE ANIMATION
   ========================================================================== */
.floating-widgets-wrapper {
    position: relative;
    z-index: 9999;
}

.floating-widget-btn {
    position: fixed;
    bottom: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

/* Specific Positions */
.widget-call {
    left: 30px;
    background-color: var(--heading-black) !important;
    border: 2px solid var(--gold-icons);
}
.widget-call i {
    color: var(--gold-icons);
    font-size: 20px;
}

.widget-whatsapp {
    right: 30px;
    background-color: #25d366 !important; /* WhatsApp Green */
}

/* Luxury Hover Effects */
.floating-widget-btn:hover {
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}
.widget-call:hover {
    background-color: var(--gold-icons) !important;
}
.widget-call:hover i {
    color: #ffffff;
}

/* --- Breathing Ring Pulse Animation Styles --- */
.floating-widget-btn .pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    top: 0;
    left: 0;
    z-index: -1;
}

.widget-call .pulse-ring {
    border: 3px solid var(--gold-icons);
    animation: widgetPulseAnimation 2s infinite ease-in-out;
}

.widget-whatsapp .pulse-ring {
    border: 3px solid #25d366;
    animation: widgetPulseAnimation 2s infinite ease-in-out;
    animation-delay: 0.5s; /* Staggered effect */
}

/* Keyframe for Elegant Floating Pulse Glow */
@keyframes widgetPulseAnimation {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Mobile Screen Responsive Adjustments */
@media (max-width: 767.98px) {
    .floating-widget-btn {
        bottom: 20px;
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    .widget-call {
        left: 20px;
    }
    .widget-whatsapp {
        right: 20px;
    }
    .widget-call i {
        font-size: 18px;
    }
}
/* ==========================================================================
   ABOUT US SECTION WITH PERFECT BLOCK SEPARATION & RECTIFIED OVERLAP
   ========================================================================== */
.about-premium-section {
    padding: 55px 0 !important; /* Strict top and bottom layout spacing */
    background-color: #ffffff;
    position: relative;
    z-index: 10;
}

/* Background split panel locked to clear structural interference */
.about-bg-split-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 42%;
    height: 100%;
    background-color: var(--bg-cream) !important; /* Forces client's #faf8f4 */
    z-index: 1;
    border-bottom-left-radius: 120px;
}

@media (max-width: 991.98px) {
    .about-bg-split-panel {
        width: 100%;
        height: 45%;
        bottom: 0;
        top: auto;
        border-bottom-left-radius: 0;
        border-top-left-radius: 60px;
    }
    .about-premium-section {
        padding: 60px 0 !important;
    }
}

.about-premium-section .z-2 {
    z-index: 2;
}

/* Typography elements alignment */
.about-sub-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--gold-icons);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.about-sub-title .gold-dot {
    width: 6px;
    height: 6px;
    background-color: var(--gold-icons);
    border-radius: 50px;
}

.about-main-heading {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.15;
    /* letter-spacing: -0.02em; */
    color: var(--heading-black);
}

.about-lead-text {
    font-size: 16px;
    line-height: 1.75;
    color: var(--heading-black);
    font-weight: 500;
}

.about-body-text {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-charcoal);
}

/* Bottom layout pillar elements */
.pillar-icon-box {
    width: 42px;
    height: 42px;
    background-color: var(--bg-cream);
    border: 1px solid rgba(202, 160, 92, 0.25);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gold-icons);
    flex-shrink: 0;
}

/* Right side geometric image styling rules */
.about-image-wrapper {
    position: relative;
    z-index: 5;
    padding-left: 30px;
}
.about-image-box {
    border-radius: 30px 30px 120px 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(11, 15, 25, 0.06);
    border: 8px solid #ffffff;
}
.about-img-main {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.about-floating-badge {
    position: absolute;
    bottom: -20px;
    left: 10px;
    background: #ffffff;
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(11, 15, 25, 0.05);
    border-left: 4px solid var(--gold-icons);
}
.text-gold-accent {
    color: var(--gold-icons) !important;
}
/* ==========================================================================
   STRATEGIC CORE PANELS SECTION (REVISED STACKED LAYOUT)
   ========================================================================== */
.strategic-core-section {
    padding: 56px 0 !important; /* Strict spacing definitions to avoid overlaps */
    background-color: var(--bg-cream); /* Client's choice #faf8f4 background panel */
    border-top: 1px solid rgba(202, 160, 92, 0.15);
    border-bottom: 1px solid rgba(202, 160, 92, 0.15);
    position: relative;
    z-index: 20; /* High index ensures independent layered block */
}

.luxury-blueprint-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(202, 160, 92, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(202, 160, 92, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
}

.strategic-core-section .z-3 {
    z-index: 3;
}

/* Individual Card Structural Elements */
.strategic-panel-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px;
    border: 1px solid rgba(0, 0, 0, 0.02);
    box-shadow: 0 10px 35px rgba(11, 15, 25, 0.01);
}

/* Middle Highlights Framework (Our Mission) */
.highlight-panel {
    background-color: #192324; /* Solid matte black block representation */
    /* box-shadow: 0 25px 50px rgba(11, 15, 25, 0.15) !important; */
    border: 1px solid var(--heading-black);
}

/* Spherical Icons Layout */
.panel-icon-shield {
    width: 46px;
    height: 46px;
    background-color: var(--bg-cream);
    color: var(--gold-icons);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.highlight-panel .panel-icon-shield {
    background-color: rgba(202, 160, 92, 0.15);
    color: var(--gold-icons);
}

.panel-main-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--heading-black);
}

.panel-paragraph-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-charcoal);
}
.text-light-slate {
    color: #cbd5e1 !important;
}

/* Tick bullet configurations for What Defines Us */
.defines-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-charcoal);
}
.defines-list li:last-child {
    margin-bottom: 0;
}
.defines-list li i {
    color: var(--gold-icons);
    font-size: 18px;
    line-height: 1.2;
}

/* Fluid Hover Dynamic Operations */
.strategic-panel-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 20px 45px rgba(11, 15, 25, 0.05) !important;
}
.highlight-panel:hover {
    box-shadow: 0 30px 60px rgba(11, 15, 25, 0.25) !important;
}

@media (max-width: 991.98px) {
    .strategic-core-section {
        padding: 60px 0 !important;
    }
    .strategic-panel-card {
        padding: 30px;
    }
}
/* ==========================================================================
   STRATEGIC CARDS HOVER SMOOTHNESS RECTIFIED
   ========================================================================== */

/* Card ko default state me smooth timeline dena */
.strategic-panel-card {
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

/* Hover state par bhi same timeline force karna taaki jhatka na lage */
.strategic-panel-card:hover {
    transform: translateY(-8px) !important;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

/* Inside elements (jaise text ya icons) agar change ho rahe hon, unhe bhi smooth karna */
.strategic-panel-card *, .strategic-panel-card *:hover {
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
}
/* ==========================================================================
   ULTRA-PREMIUM STICKY ANIMATED NAVBAR ON SCROLL
   ========================================================================== */

/* Jab page top par hoga, navbar normal behave karegi */
.main-navbar {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #faf8f4;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* JS se active hone wali class jab niche scroll karenge */
.main-navbar.sticky-animated {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background-color: rgba(255, 255, 255, 0.96) !important; /* Premium glassmorphism touch */
    backdrop-filter: blur(10px) !important; /* iOS style frosted glass effect */
    box-shadow: 0 10px 30px rgba(11, 15, 25, 0.06) !important;
    padding: 10px 0 !important; /* Navbar scroll par thodi patli aur sleek ho jayegi */
    z-index: 999 !important;
    
    /* Reveal Animation: Niche se upar smoothly slide-in hoga */
    animation: navbarRevealSlide 0.5s cubic-bezier(0.25, 1, 0.9, 1) forwards;
}

/* Keyframe for Buttery Smooth Header Dropdown Entry */
@keyframes navbarRevealSlide {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/* ==========================================================================
   ULTRA-LUXURY SERVICES BLOCK WITH DYNAMIC BLURRED IMAGE MORPH
   ========================================================================== */
.premium-services-section {
    padding: 75px 0 !important;
    background-color: #ffffff;
    position: relative;
}

/* Luxury Dot-Matrix Architectural background pattern setup */
.luxury-services-pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgb(202 160 92) 1.2px, #00000000 1.2px) !important;
    background-size: 30px 30px;
    opacity: 0.6;
    z-index: 1;
}

.premium-services-section .z-3 {
    z-index: 3;
}

/* Header Elements Typography */
.services-tag-gold {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold-icons);
}
.services-main-heading {
    font-size: 40px;
    font-weight: 800;
    /* letter-spacing: -0.02em; */
    color: var(--heading-black);
}
.services-heading-bar {
    width: 60px;
    height: 3px;
    background-color: var(--gold-icons);
    border-radius: 5px;
}

/* Base Service Card Framework */
.service-luxury-card {
    background-color: var(--bg-cream) !important; /* Client choice #faf8f4 default */
    border: 1px solid rgba(202, 160, 92, 0.12);
    border-radius: 24px;
    padding: 45px 35px;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(11, 15, 25, 0.01);
}

/* Hidden image layer that reveals smoothly on hover state */
.service-hover-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    filter: blur(12px) brightness(0.4); /* Strong blur and dark tone to enhance white text readability */
    transform: scale(1.15); /* Slightly bigger to prevent white edges when blurred */
    z-index: 1;
}

/* Dark layout overlay card shield for absolute text readability */
.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 15, 25, 0) 0%, rgba(11, 15, 25, 0.75) 100%);
    opacity: 0;
    z-index: 2;
}

/* Components internal mapping */
.service-icon-sphere {
    width: 52px;
    height: 52px;
    background-color: #ffffff;
    border: 1px solid rgba(202, 160, 92, 0.2);
    color: var(--heading-black);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.service-serial-no {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: rgba(11, 15, 25, 0.15);
}

.service-card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--heading-black);
}

.service-card-desc {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--text-charcoal);
}

.service-card-footer-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: var(--gold-icons);
    z-index: 5;
}

/* ==========================================================================
   BUTTERY SMOOTH IMAGE MORPH HOVER TRANSITIONS RULES
   ========================================================================== */
.service-luxury-card, .service-hover-bg-img, .service-card-overlay,
.service-icon-sphere, .service-card-title, .service-card-desc, .service-serial-no, .service-card-footer-line {
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Parent Card Actions on Hover */
.service-luxury-card:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(202, 160, 92, 0.4);
    box-shadow: 0 30px 60px rgba(11, 15, 25, 0.25) !important;
}

/* Bring hidden image and dark layout overlay to 100% opacity smoothly */
.service-luxury-card:hover .service-hover-bg-img {
    opacity: 1;
    transform: scale(1.02) !important; /* Zooms in gently */
    filter: blur(4px) brightness(0.85);
}

.service-luxury-card:hover .service-card-overlay {
    opacity: 1;
}

/* Invert nested components when layout darkens */
.service-luxury-card:hover .service-icon-sphere {
    background-color: #ffffff;
    border-color: #ffffff;
    color: var(--gold-icons);
}

.service-luxury-card:hover .service-card-title {
    color: #ffffff !important; /* Title morphs to pure white over blurred scene */
}

.service-luxury-card:hover .service-card-desc {
    color: #e2e8f0 !important; /* Description turns light slate for perfect readability */
}

.service-luxury-card:hover .service-serial-no {
    color: var(--gold-icons);
}

.service-luxury-card:hover .service-card-footer-line {
    width: 100%;
}

/* Responsive Grid Scaling adjustments */
@media (max-width: 991.98px) {
    .premium-services-section {
        padding: 80px 0 !important;
    }
    .services-main-heading {
        font-size: 34px;
    }
    .service-luxury-card {
        padding: 35px 25px;
    }
}
/* ==========================================================================
   ULTRA-LUXURY DUAL-ROW INFINITE CLIENTS TICKER
   ========================================================================== */
.premium-clients-section {
    padding: 65px 0 !important;
    background-color: #fcfbfa;
    border-top: 1px solid rgba(202, 160, 92, 0.1);
    border-bottom: 1px solid rgba(202, 160, 92, 0.1);
}

/* Header Typography Elements */
.clients-tag-gold {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold-icons);
}
.clients-main-heading {
    font-size: 40px;
    font-weight: 800;
    /* letter-spacing: -0.02em; */
    color: var(--heading-black);
}
.clients-heading-bar {
    width: 50px;
    height: 3px;
    background-color: var(--gold-icons);
    border-radius: 5px;
}

/* Slider Master Container with Premium Edge Gradients Fade */
.luxury-logo-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1px 0;
}
.luxury-logo-slider-container::before,
.luxury-logo-slider-container::after {
    content: "";
    height: 100%;
    position: absolute;
    width: 180px;
    z-index: 5;
    pointer-events: none;
}
.luxury-logo-slider-container::before {
    left: 0;
    top: 0;
    background: linear-gradient(90deg, #fcfbfa 0%, rgba(252, 251, 250, 0) 100%);
}
.luxury-logo-slider-container::after {
    right: 0;
    top: 0;
    background: linear-gradient(270deg, #fcfbfa 0%, rgba(252, 251, 250, 0) 100%);
}

/* TRACK 1: LEFT DIRECTION ANIMATION */
.logo-slider-track-left {
    display: flex;
    /* border: 1px solid #ddd; */
    background-color: #fff;
    width: calc(240px * 12);
    animation: tickerLeftAnimation 28s linear infinite;
}

/* TRACK 2: RIGHT DIRECTION ANIMATION */
.logo-slider-track-right {
    display: flex;
    background-color: #fff;
    width: calc(240px * 12);
    animation: tickerRightAnimation 28s linear infinite;
}

/* Pause animations on any row hover */
.luxury-logo-slider-container:hover .logo-slider-track-left,
.luxury-logo-slider-container:hover .logo-slider-track-right {
    animation-play-state: paused;
}

/* Individual Brand Logo Item Structure */
.client-logo-item {
    width: 240px;
    height: 89px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
}

/* Monochrome corporate standard look */
.client-brand-img {
    max-height: 90px;
    width: auto;
    object-fit: contain;
    /* filter: grayscale(100%) opacity(0.45); */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.client-logo-item:hover .client-brand-img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.06);
}

/* ==========================================================================
   TIMELINE KEYFRAMES FOR DUAL DIRECTION MOTION
   ========================================================================== */
@keyframes tickerLeftAnimation {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-240px * 6)); }
}

@keyframes tickerRightAnimation {
    0% { transform: translateX(calc(-240px * 6)); }
    100% { transform: translateX(0); }
}

/* Responsive Overwrite */
@media (max-width: 991.98px) {
    .premium-clients-section { padding: 60px 0 !important; }
    .clients-main-heading { font-size: 32px; }
    .luxury-logo-slider-container::before, .luxury-logo-slider-container::after { width: 70px; }
    .client-logo-item { width: 180px; padding: 0 15px; }
    @keyframes tickerLeftAnimation { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-180px * 6)); } }
    @keyframes tickerRightAnimation { 0% { transform: translateX(calc(-180px * 6)); } 100% { transform: translateX(0); } }
}
/* ==========================================================================
   GROWING FASTER COUNTERS & CAPABILITIES BLOCK (DARK BRAND IDENTITY)
   ========================================================================== */
.growing-faster-section {
    padding: 74px 0 !important;
    background-color: #192324; /* Solid Deep Matte Black background */
    border-top: 1px solid rgba(202, 160, 92, 0.15);
}

/* Utilities margin-bottom reset */
.mb-6 {
    margin-bottom: 70px !important;
}

/* Header Text Styles */
.growth-tag-gold {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold-icons);
}
.growth-main-heading {
    font-size: 40px;
    font-weight: 800;
    /* letter-spacing: -0.02em; */
}
.growth-heading-bar {
    width: 60px;
    height: 3px;
    background-color: var(--gold-icons);
    border-radius: 5px;
}

/* Funfact Counter Card Designs */
.funfact-counter-card {
    background-color: rgba(255, 255, 255, 0.03); /* Extremely halke semi-transparent cards */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px 21px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.counter-icon-wrap {
    font-size: 32px;
    color: var(--gold-icons);
}

.counter-number-block {
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.01em;
}
.counter-plus {
    color: var(--gold-icons);
    margin-left: 2px;
}

.counter-label-text {
    font-size: 13px;
    font-weight: 700;
    color: #94a3b8; /* Muted Slate Slate */
    letter-spacing: 0.08em;
}

/* Counter Card Hover Interactivity */
.funfact-counter-card:hover {
    transform: translateY(-6px) !important;
    background-color: rgba(202, 160, 92, 0.06) !important;
    border-color: rgba(202, 160, 92, 0.3) !important;
}

/* Capabilities Bottom Description Blocks Structure */
.capabilities-split-row {
    border-top-color: rgba(255, 255, 255, 0.08) !important;
}

.capability-badge-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(202, 160, 92, 0.15);
    color: var(--gold-icons);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.capability-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.capability-desc {
    font-size: 15px;
    line-height: 1.75;
    color: #cbd5e1; /* Smooth grey tone text for extreme dark background contrast */
}

/* Responsive Fixes */
@media (max-width: 991.98px) {
    .growing-faster-section {
        padding: 80px 0 !important;
    }
    .growth-main-heading {
        font-size: 34px;
    }
    .counter-number-block {
        font-size: 38px;
    }
    .mb-6 {
        margin-bottom: 40px !important;
    }
}
/* ==========================================================================
   GOOGLE REVIEWS TESTIMONIALS SLIDER SECTION
   ========================================================================== */
.premium-testimonials-section {
    padding: 80px 0 !important;
    background-color: var(--bg-cream); /* Smooth alignment with off-white panel choice */
    border-top: 1px solid rgba(202, 160, 92, 0.12);
}

.premium-testimonials-section .z-3 {
    z-index: 3;
}

/* Header Text Rules */
.review-tag-gold {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold-icons);
}
.review-main-heading {
    font-size: 40px;
    font-weight: 800;
    /* letter-spacing: -0.02em; */
    color: var(--heading-black);
}
.review-heading-bar {
    width: 60px;
    height: 3px;
    background-color: var(--gold-icons);
    border-radius: 5px;
}

/* Individual Card Structural Core */
.google-review-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 10px 30px rgba(11, 15, 25, 0.01);
    min-height: 290px; /* Synchronizes height balances across fluid sliders */
    display: flex;
    flex-direction: column;
}

.user-avatar-sphere img {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    object-fit: cover;
}

.user-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--heading-black);
}
.user-designation {
    font-size: 13px;
}

/* Authentic Google Icons Setup */
.google-brand-icon i {
    font-size: 20px;
    background: linear-gradient(135deg, #4285F4 0%, #34A853 30%, #FBBC05 60%, #EA4335 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Rating Stars Section */
.review-stars-wrap i {
    color: #FBBC05; /* Google Official Star Yellow Code */
    font-size: 15px;
    margin-right: 2px;
}
.review-time-badge {
    font-size: 12px;
    color: #94a3b8;
}

.review-body-text {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-charcoal);
}

/* Custom Nav Arrow Buttons Mapping (Image 2 Capsule Theme matching) */
.slider-arrow-controls-hub button {
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border: 2px solid var(--heading-black);
    color: var(--heading-black);
    border-radius: 50px;
    margin: 0 8px;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

/* Makkhan smooth buttons transition configuration */
.google-review-card, .slider-arrow-controls-hub button {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.slider-arrow-controls-hub button:hover {
    background-color: var(--heading-black);
    color: #ffffff;
    transform: scale(1.05);
}

.google-review-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 40px rgba(11, 15, 25, 0.04) !important;
    border-color: rgba(202, 160, 92, 0.25);
}

@media (max-width: 991.98px) {
    .premium-testimonials-section { padding: 80px 0 !important; }
    .review-main-heading { font-size: 34px; }
    .google-review-card { padding: 25px; min-height: auto; }
}
/* ==========================================================================
   ULTRA-LUXURY FEATURED WORKS SLIDER STYLES
   ========================================================================== */
.premium-portfolio-section {
    padding: 70px 0 !important;
    background-color: #ffffff;
}

.premium-portfolio-section .z-3 {
    z-index: 3;
}

/* Header Utilities Typography */
.portfolio-tag-gold {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold-icons);
}
.portfolio-main-heading {
    font-size: 40px;
    font-weight: 800;
    /* letter-spacing: -0.02em; */
    color: var(--heading-black);
}
.portfolio-heading-bar {
    width: 60px;
    height: 3px;
    background-color: var(--gold-icons);
    border-radius: 5px;
}

/* Luxury Card Frame Wrapper */
.portfolio-luxury-item {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(11, 15, 25, 0.02);
}

.portfolio-image-box {
    overflow: hidden;
    background-color: var(--heading-black);
}

.portfolio-image-box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* Center Glassmorphism Plus Action Sphere */
.portfolio-hover-zoom-action {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 15, 25, 0.4); /* Dark lens mesh */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 2;
}

.zoom-icon-sphere {
    width: 55px;
    height: 55px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    color: #ffffff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transform: scale(0.7);
}

/* Bottom Metadata Box Strip Panel - iOS Blur Backdrop signature */
.portfolio-metadata-strip {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: calc(100% - 40px);
    background: rgba(11, 15, 25, 0.75); 
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    padding: 18px 24px;
    border-radius: 16px;
    z-index: 3;
}

.project-name-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.project-category-tag {
    color: #94a3b8;
    font-weight: 500;
}

/* Custom Year counter Counter pill */
.project-year-badge {
    font-size: 12px;
    font-weight: 700;
    color: var(--gold-icons);
    border: 1px solid rgba(202, 160, 92, 0.4);
    padding: 4px 12px;
    border-radius: 100px;
    background-color: rgba(202, 160, 92, 0.05);
}

/* Custom Navigation Controls */
.portfolio-arrow-controls button {
    width: 48px;
    height: 48px;
    background-color: #ffffff;
    border: 2px solid var(--heading-black);
    color: var(--heading-black);
    border-radius: 50px;
    margin-left: 10px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   BUTTERY SMOOTH SLIDER HOVER SYSTEMS INTEGRATIONS
   ========================================================================== */
.portfolio-image-box img, .portfolio-hover-zoom-action, 
.zoom-icon-sphere, .portfolio-arrow-controls button, .portfolio-metadata-strip {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Hover Operations */
.portfolio-luxury-item:hover .portfolio-image-box img {
    transform: scale(1.08);
}
.portfolio-luxury-item:hover .portfolio-hover-zoom-action {
    opacity: 1;
}
.portfolio-luxury-item:hover .zoom-icon-sphere {
    transform: scale(1);
}
.portfolio-luxury-item:hover .portfolio-metadata-strip {
    background: var(--heading-black);
    border-color: var(--gold-icons);
}
.portfolio-arrow-controls button:hover {
    background-color: var(--heading-black);
    color: #ffffff;
    transform: translateY(-2px);
}

/* ==========================================================================
   ULTRA-LUXURY LIGHTBOX ZOOM POPUP SYSTEM STYLES
   ========================================================================== */
.luxury-lightbox-modal .modal-content {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Background blur filter when popup triggers */
.luxury-lightbox-modal.modal.fade.show {
    backdrop-filter: blur(15px) brightness(0.3);
    background-color: rgba(11, 15, 25, 0.4);
    transition: all 0.4s ease-in-out;
}

.luxury-zoomed-img {
    max-height: 85vh;
    border-radius: 16px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
    border: 4px solid rgba(255, 255, 255, 0.1);
    object-fit: contain;
}

/* Floating custom close cross button */
.lightbox-close-btn {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 24px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1055;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.lightbox-close-btn:hover {
    color: var(--gold-icons);
    transform: rotate(90deg);
}

@media (max-width: 991.98px) {
    .premium-portfolio-section { padding: 80px 0 !important; }
    .portfolio-main-heading { font-size: 34px; }
    .portfolio-image-box img { height: 320px; }
    .portfolio-metadata-strip { padding: 14px 20px; bottom: 15px; left: 15px; width: calc(100% - 30px); }
}
@media (max-width: 767.98px) {
    .lightbox-close-btn { top: -45px; right: 10px; font-size: 20px; }
    .luxury-zoomed-img { max-height: 70vh; width: 92%; margin: 0 auto; }
}
/* ==========================================================================
   ULTRA-LUXURY DUAL-GRID SPLIT CONTACT US SECTION STYLES
   ========================================================================== */
.premium-contact-section {
    padding: 120px 0 !important;
    background-color: #192324; /* Deep Corporate Matte Black background base */
    /* border-top: 1px solid rgba(202, 160, 92, 0.15); */
}

.premium-contact-section .z-3 {
    z-index: 3;
}

/* Subtle architectural overlay lines inside section */
.luxury-contact-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgb(202 160 92 / 17%) 1px, transparent 1px), linear-gradient(90deg, rgb(202 160 92 / 14%) 1px, transparent 1px);
    background-size: 45px 45px;
    z-index: 1;
}

/* Left Grid Parameter Typography */
.contact-tag-gold {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold-icons);
}
.contact-main-heading {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.15;
    /* letter-spacing: -0.02em; */
}
.contact-lead-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #94a3b8; /* Muted corporate slate code */
}

/* Individual node items stacks structural tracking */
.contact-node-item {
    background-color: rgb(25 35 36 / 29%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 20px;
    border-radius: 18px;
}

.node-icon-sphere {
    width: 48px;
    height: 48px;
    background-color: rgba(202, 160, 92, 0.12);
    color: var(--gold-icons);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.node-label-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #64748b;
}

.node-link-value, .node-text-value {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.6;
}
a.node-link-value:hover {
    color: var(--gold-icons) !important;
}

/* Right Grid Form Layout Design Architectures */
.contact-lead-form-card {
    background: #ffffff; /* White card layout breaks dark room context elegantly */
    border-radius: 25px;
    padding: 36px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-form-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--heading-black);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Icon Inside Fields Group setup */
.input-with-icon-wrap {
    position: relative;
}
.input-inner-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 18px;
    z-index: 10;
}

/* Form Input Element Rules */
.premium-form-input {
    background-color: var(--bg-cream) !important; /* Forces client selection #faf8f4 background */
    border: 1px solid rgb(202 160 92 / 28%) !important;
    padding: 14px 16px 14px 48px !important; /* Allocates padding space on left for inner icon */
    border-radius: 14px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: var(--heading-black) !important;
}
.premium-form-input::placeholder {
    color: #94a3b8 !important;
}
.premium-form-input:focus {
    box-shadow: 0 0 0 4px rgba(202, 160, 92, 0.12) !important;
    border-color: var(--gold-icons) !important;
    background-color: #ffffff !important;
}

/* Custom overwrites for dropdown and textareas */
.custom-form-select {
    cursor: pointer;
    appearance: none;
}
.custom-form-textarea {
    padding-left: 20px !important; /* Removes padding rule overlay since textarea has no icon */
}

/* Math Verification Captcha Module styling */
.math-captcha-box-frame {
    background-color: var(--heading-black);
    border: 1px solid rgba(202, 160, 92, 0.2);
    /* padding: 10px!important; */
    padding-bottom: 7px!important;
    padding-top: 7px!important;
}
#mathCaptchaQuestion {
    font-family: monospace;
    font-size: 16px;
    letter-spacing: 2px;
}
.math-captcha-box-frame .premium-form-input {
    padding-left: 16px !important; /* Centers captcha text input spacing profile reset */
    padding-bottom: 10px!important;
    padding-top: 10px!important;
}

/* Submit Action Button capsule (Capsule Theme Integration) */
.btn-form-submit {
    background-color: var(--heading-black) !important;
    border: 2px solid var(--heading-black) !important;
    color: #ffffff !important;
    padding: 16px 32px !important;
    border-radius: 100px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    box-shadow: 0 15px 30px rgba(11, 15, 25, 0.15) !important;
}

/* Elements transition matrix timelines configuration */
.contact-node-item, .node-icon-sphere, .premium-form-input, 
.btn-form-submit, .submit-icon-circle {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-form-submit .submit-icon-circle {
    width: 26px;
    height: 26px;
    background-color: #ffffff;
    color: var(--heading-black);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.btn-form-submit:hover {
    background-color: transparent !important;
    color: var(--heading-black) !important;
    transform: translateY(-3px);
}
.btn-form-submit:hover .submit-icon-circle {
    background-color: var(--heading-black);
    color: #ffffff;
}

.contact-node-item:hover {
    transform: translateX(5px);
    background-color: rgba(202, 160, 92, 0.05);
    border-color: rgba(202, 160, 92, 0.25);
}
.contact-node-item:hover .node-icon-sphere {
    background-color: var(--gold-icons);
    color: #ffffff;
}

/* Responsive Structural scaling adjustments */
@media (max-width: 991.98px) {
    .premium-contact-section { padding: 80px 0 !important; }
    .contact-main-heading { font-size: 34px; }
    .contact-lead-form-card { padding: 35px 25px; border-radius: 24px; }
}
/* ==========================================================================
   ULTRA-LUXURY INVERTED LIGHT-THEME FOOTER ARCHITECTURE (#faf8f4)
   ========================================================================== */
.premium-site-footer {
    background-color: var(--bg-cream) !important; /* Forces client selection #faf8f4 background */
    padding: 69px 0 25px 0 !important;
    position: relative;
    border-top: 1px solid rgba(202, 160, 92, 0.2);
    z-index: 20;
}

.premium-site-footer .z-3 {
    z-index: 3;
}

/* Subtle architectural radial matrix pattern (Adjusted dark dot tint for light theme contrast) */
.luxury-footer-pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(11, 15, 25, 0.04) 1.2px, transparent 1.2px);
    background-size: 25px 25px;
    opacity: 0.7;
    z-index: 1;
}

/* Brand Widget Configuration */
.footer-logo-img {
    max-height: 55px;
    filter: none !important; /* Removes the dark-mode brightness invert so logo colors pop naturally */
}
.footer-brand-desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-charcoal); /* Charcoal body text for high readability over cream */
    max-width: 340px;
}

/* Rounded Social Buttons Setup */
.footer-social-channels .footer-social-btn {
    width: 38px;
    height: 38px;
    background-color: #ffffff;
    border: 1px solid rgba(202, 160, 92, 0.25);
    color: var(--heading-black);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 15px;
}

/* Link Widgets Headers */
.footer-widget-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
    position: relative;
    display: inline-block;
    color: var(--heading-black) !important;
}
.footer-widget-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--gold-icons);
    border-radius: 2px;
}

/* Nested Navigation Lists Link parameters */
.footer-links-list li {
    margin-bottom: 12px;
}
.footer-links-list li a {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-charcoal);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-links-list li a i {
    font-size: 11px;
    color: rgba(11, 15, 25, 0.3);
}

/* Contact Nodes channels mapping */
.footer-info-node {
    font-size: 14.5px;
}
.footer-node-icon {
    color: var(--gold-icons);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}
.footer-node-text, .footer-node-link {
    color: var(--text-charcoal);
    font-weight: 500;
    line-height: 1.8;
    font-size: 13.5px;
}
a.footer-node-link:hover {
    color: var(--gold-icons) !important;
}

/* ==========================================================================
   HOVER INTERACTIVITIES TRANSITIONS MATRIX TIMELINES
   ========================================================================== */
.footer-social-btn, .footer-links-list li a, 
.footer-links-list li a i, .footer-node-link, .developer-credit-anchor {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.footer-social-btn:hover {
    background-color: var(--heading-black);
    color: #ffffff;
    border-color: var(--heading-black);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(11, 15, 25, 0.15);
}

.footer-links-list li a:hover {
    color: var(--gold-icons) !important;
    padding-left: 6px; /* Smooth elegant crawl slider effect */
}
.footer-links-list li a:hover i {
    color: var(--gold-icons) !important;
}

/* Bottom Copyright Strip Parameters */
.footer-copyright-strip {
    border-top-color: rgba(11, 15, 25, 0.08) !important;
    font-size: 13.5px;
    text-align: center;
    color: #64748b;
}
.developer-credit-anchor {
    color: rgba(51, 65, 85, 0.72);
    font-weight: 700;
}
.developer-credit-anchor:hover {
    color: var(--gold-icons) !important;
}

/* Responsive Structural overrides */
@media (max-width: 991.98px) {
    .premium-site-footer { padding: 70px 0 30px 0 !important; }
    .footer-brand-desc { max-width: 100%; }
}
/* ==========================================================================
   ULTRA-LUXURY ON-LOAD TRIGGERED ENQUIRY POPUP MODAL STYLES (CLEAN VERSION)
   ========================================================================== */

/* Modern frosted background window behind popup */
.premium-onload-modal.modal.fade.show {
    backdrop-filter: blur(12px) brightness(0.4) !important;
    background-color: rgba(11, 15, 25, 0.4) !important;
    transition: all 0.5s ease-in-out;
}

.premium-onload-modal .modal-content {
    background-color: #ffffff !important;
    border: 1px solid rgba(202, 160, 92, 0.25) !important;
    border-radius: 24px !important;
    box-shadow: 0 30px 70px rgba(11, 15, 25, 0.35) !important;
}

/* Golden header strip profile overlay inside modal box */
.onload-modal-banner-strip {
    width: 100%;
    height: 6px;
    background-color: var(--gold-icons);
}

/* Minimal Top-Right Cross close hook */
.onload-modal-close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    background: transparent;
    border: none;
    color: var(--heading-black);
    font-size: 18px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1060;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.onload-modal-close-btn:hover {
    background-color: var(--bg-cream);
    color: var(--gold-icons);
    transform: rotate(90deg);
}

/* Typography elements definitions */
.onload-tag-gold {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--gold-icons);
}
.onload-main-title {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--heading-black);
}
.onload-sub-desc {
    color: var(--text-charcoal);
    font-weight: 500;
}

/* Icons within internal pop-up groups */
.popup-input-wrap {
    position: relative;
}
.input-popup-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 16px;
    z-index: 10;
}

/* Input structures customization values */
.popup-form-input {
    background-color: var(--bg-cream) !important; /* Injected #faf8f4 choice code */
    border: 1px solid rgba(202, 160, 92, 0.12) !important;
    padding: 12px 16px 12px 42px !important; /* Space buffer allocation for inner icons */
    border-radius: 10px !important;
    font-size: 12.5px !important;
    font-weight: 500 !important;
    color: var(--heading-black) !important;
}
.popup-form-input::placeholder {
    color: #94a3b8 !important;
}
.popup-form-input:focus {
    box-shadow: 0 0 0 4px rgba(202, 160, 92, 0.1) !important;
    border-color: var(--gold-icons) !important;
    background-color: #ffffff !important;
}

.custom-popup-select {
    cursor: pointer;
    appearance: none;
}
.custom-popup-textarea {
    padding-left: 16px !important; /* Spacing profile reset for message input */
}

/* Submit Action Button Core (Capsule Element layout matching) */
.btn-popup-submit {
    background-color: var(--heading-black) !important;
    border: 2px solid var(--heading-black) !important;
    color: #ffffff !important;
    padding: 14px 24px !important;
    border-radius: 100px !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    box-shadow: 0 10px 20px rgba(11, 15, 25, 0.1) !important;
}

/* Timelines transitions configs matrix arrays */
.popup-form-input, .btn-popup-submit, .onload-modal-close-btn {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-popup-submit:hover {
    background-color: transparent !important;
    color: var(--heading-black) !important;
    transform: translateY(-2px);
}

/* Extreme Mobile Screens layout responsive safety controls */
@media (max-width: 575.98px) {
    .premium-onload-modal .modal-dialog {
        margin: 15px !important;
    }
    .modal-body {
        padding: 35px 20px !important;
    }
    .onload-main-title {
        font-size: 22px;
    }
}
/* ==========================================================================
   ULTRA-PREMIUM ABOUT US INNER PAGE STYLES
   ========================================================================== */

/* Inner Hero Banner Master Framework */
.inner-hero-banner {
    padding: 140px 0 80px 0 !important;
    min-height: 320px;
}
.luxury-inner-hero-blueprint-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(202, 160, 92, 0.02) 1px, transparent 1px);
    background-size: 100% 40px;
    z-index: 2;
}

/* Breadcrumb Styling rules overrides */
.inner-custom-breadcrumb .breadcrumb-item, 
.inner-custom-breadcrumb .breadcrumb-item a {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8 !important;
    text-decoration: none;
}
.inner-custom-breadcrumb .breadcrumb-item a:hover {
    color: var(--gold-icons) !important;
}
.inner-custom-breadcrumb .breadcrumb-item.active {
    color: var(--gold-icons) !important;
}
.inner-custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: #475569 !important;
    content: var(--bs-breadcrumb-divider, "/");
}

.inner-display-title {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.inner-heading-gold-bar {
    width: 50px;
    height: 3px;
    background-color: var(--gold-icons);
    border-radius: 5px;
}

/* Corporate Introduction Node Layouts */
.about-corporate-intro-section {
    background-color: #ffffff;
    padding: 120px 0 !important;
}
.corporate-tag-gold {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold-icons);
}
.corporate-brand-title {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--heading-black);
}

/* Premium Highlight Paragraph Box */
.corporate-accent-box {
    background-color: var(--bg-cream); /* Client #faf8f4 tone identity match */
    border-left: 4px solid var(--gold-icons);
}
.corporate-accent-lead {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.65;
    color: var(--heading-black);
}

.corporate-narrative-block .narrative-p-text {
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--text-charcoal);
    text-align: justify;
}

/* Background Watermark Stamp overlay text style */
.brand-watermark-stamp {
    position: absolute;
    bottom: -60px;
    left: -10px;
    font-size: 80px;
    font-weight: 900;
    color: rgba(11, 15, 25, 0.02);
    letter-spacing: 0.05em;
    pointer-events: none;
    z-index: 1;
}

/* Manifesto Call-To-Action Banner Strip Styles */
.about-manifesto-cta-section {
    padding: 110px 0 !important;
    background-color: var(--heading-black);
}
.manifesto-dark-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(202, 160, 92, 0.05) 0%, rgba(0,0,0,0) 70%);
    z-index: 2;
}
.manifesto-badge-capsule {
    display: inline-block;
    padding: 6px 18px;
    background-color: rgba(202, 160, 92, 0.12);
    border: 1px solid rgba(202, 160, 92, 0.25);
    color: var(--gold-icons);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: 100px;
}
.manifesto-display-quote {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: -0.01em;
}
.manifesto-bar-gold {
    width: 60px;
    height: 3px;
    background-color: var(--gold-icons);
    border-radius: 5px;
}

/* Capsule Form Custom Submit trigger matching dashboard rules */
.btn-manifesto-action-quote {
    background-color: #ffffff !important;
    border: 2px solid #ffffff !important;
    color: var(--heading-black) !important;
    padding: 16px 36px !important;
    border-radius: 100px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
}
.btn-manifesto-action-quote .manifesto-icon-sphere {
    width: 26px;
    height: 26px;
    background-color: var(--heading-black);
    color: #ffffff;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Transition Matrix layers */
.btn-manifesto-action-quote, .btn-manifesto-action-quote .manifesto-icon-sphere {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-manifesto-action-quote:hover {
    background-color: var(--gold-icons) !important;
    border-color: var(--gold-icons) !important;
    color: #ffffff !important;
    transform: translateY(-4px);
}
.btn-manifesto-action-quote:hover .manifesto-icon-sphere {
    background-color: #ffffff;
    color: var(--heading-black);
    transform: rotate(45deg);
}

/* Responsive Overwrites scaling */
@media (max-width: 991.98px) {
    .inner-hero-banner { padding: 110px 0 60px 0 !important; }
    .inner-display-title { font-size: 36px; }
    .about-corporate-intro-section, .about-manifesto-cta-section { padding: 80px 0 !important; }
    .corporate-brand-title { font-size: 30px; }
    .manifesto-display-quote { font-size: 24px; line-height: 1.5; }
    .btn-manifesto-action-quote { padding: 14px 28px !important; font-size: 12px !important; }
}
/* ==========================================================================
   ULTRA-PREMIUM ABOUT US INNER PAGE STYLES
   ========================================================================== */

/* Inner Hero Banner Master Framework */
.inner-hero-banner {
    padding: 74px 0 50px 0 !important;
    min-height: 320px;
}
.luxury-inner-hero-blueprint-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(202, 160, 92, 0.02) 1px, transparent 1px);
    background-size: 100% 40px;
    z-index: 2;
}

/* Breadcrumb Styling Overrides */
.inner-custom-breadcrumb .breadcrumb-item, 
.inner-custom-breadcrumb .breadcrumb-item a {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8 !important;
    text-decoration: none;
}
.inner-custom-breadcrumb .breadcrumb-item a:hover {
    color: var(--gold-icons) !important;
}
.inner-custom-breadcrumb .breadcrumb-item.active {
    color: var(--gold-icons) !important;
}
.inner-custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: #475569 !important;
    content: "/";
}

.inner-display-title {
    font-size: 42px;
    font-weight: 800;
    /* letter-spacing: -0.02em; */
    line-height: 1.1;
}
.inner-heading-gold-bar {
    width: 50px;
    height: 3px;
    background-color: var(--gold-icons);
    border-radius: 5px;
}

/* Corporate Introduction Layouts */
.about-corporate-intro-section {
    background-color: #ffffff;
    padding: 70px 0 !important;
}
.corporate-tag-gold {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold-icons);
}
.corporate-brand-title {
    font-size: 32px;
    font-weight: 800;
    /* letter-spacing: -0.01em; */
    color: var(--heading-black);
}

/* Advanced Dynamic Floating Image Grid Setup */
.about-image-stack-wrapper {
    padding: 20px;
    z-index: 5;
}
.about-shape-accent-dots {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(var(--gold-icons) 1.5px, transparent 1.5px);
    background-size: 15px 15px;
    opacity: 0.25;
    z-index: 1;
}
.about-main-image-frame {
    position: relative;
    z-index: 3;
    border: 1px solid rgba(202, 160, 92, 0.15);
}
.about-stack-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.about-image-stack-wrapper:hover .about-stack-img {
    transform: scale(1.05);
}

/* Floating Metrics Badge Component with Smooth Animation */
.about-floating-experience-card {
    bottom: 40px;
    right: -20px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(202, 160, 92, 0.3);
    backdrop-filter: blur(12px);
    width: 260px;
    z-index: 10;
    animation: smoothFloatAnimation 4s ease-in-out infinite;
    will-change: transform;
}
.floating-icon-box-gold {
    width: 50px;
    height: 50px;
    background-color: var(--heading-black);
    color: var(--gold-icons);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.floating-card-number {
    font-size: 26px;
    font-weight: 800;
    color: var(--heading-black);
    line-height: 1;
}
.floating-card-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-charcoal);
}

/* Narrative Text Configurations */
.corporate-narrative-block .narrative-p-text {
    font-size: 15.5px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: var(--text-charcoal);
    text-align: justify;
}
.corporate-narrative-block .lead-narrative {
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-black);
    line-height: 1.7;
}

/* Manifesto Call-To-Action Layout Banner Strip */
.about-manifesto-cta-section {
    padding: 60px 0 !important;
    background-color: var(--heading-black);
}
.manifesto-dark-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgb(202 160 92 / 38%) 0%, rgb(0 0 0) 70%);
    z-index: 2;
}
.manifesto-badge-capsule {
    display: inline-block;
    padding: 6px 18px;
    background-color: rgba(202, 160, 92, 0.12);
    border: 1px solid rgba(202, 160, 92, 0.25);
    color: var(--gold-icons);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: 100px;
}
.manifesto-display-quote {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: -0.01em;
}
.manifesto-bar-gold {
    width: 60px;
    height: 3px;
    background-color: var(--gold-icons);
    border-radius: 5px;
}

/* Custom Manifesto Action Button Configuration */
.btn-manifesto-action-quote {
    background-color: #ffffff !important;
    border: 2px solid #ffffff !important;
    color: var(--heading-black) !important;
    padding: 16px 36px !important;
    border-radius: 100px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
}
.btn-manifesto-action-quote .manifesto-icon-sphere {
    width: 26px;
    height: 26px;
    background-color: var(--heading-black);
    color: #ffffff;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Universal Transition Matrices Timelines */
.btn-manifesto-action-quote, .btn-manifesto-action-quote .manifesto-icon-sphere, 
.about-stack-img, .about-floating-experience-card {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-manifesto-action-quote:hover {
    background-color: var(--gold-icons) !important;
    border-color: var(--gold-icons) !important;
    color: #ffffff !important;
    transform: translateY(-4px);
}
.btn-manifesto-action-quote:hover .manifesto-icon-sphere {
    background-color: #ffffff;
    color: var(--heading-black);
    transform: rotate(45deg);
}

/* Floating Translation Hardware Keyframe */
@keyframes smoothFloatAnimation {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

/* Responsive Structural Media Queries */
@media (max-width: 991.98px) {
    .inner-hero-banner { padding: 110px 0 60px 0 !important; }
    .inner-display-title {font-size: 26px;}
    .about-corporate-intro-section, .about-manifesto-cta-section { padding: 80px 0 !important; }
    .corporate-brand-title {font-size: 22px;}
    .manifesto-display-quote { font-size: 24px; line-height: 1.5; }
    .btn-manifesto-action-quote { padding: 14px 28px !important; font-size: 12px !important; }
}
@media (max-width: 767.98px) {
    .about-stack-img { height: 320px; }
    .about-floating-experience-card { right: 10px; bottom: -20px; width: 230px; padding: 15px !important; }
    .floating-card-number { font-size: 22px; }
}
/* ==========================================================================
   ADVANCED DYNAMIC FILTERABLE PORTFOLIO CUBIC GRID STYLES
   ========================================================================== */

/* Rounded Filter Pills Bar configuration */
.portfolio-filter-tabs-hub {
    background-color: #f8fafc !important;
    border-color: rgba(202, 160, 92, 0.12) !important;
}
.filter-trigger-btn {
    font-size: 13.5px !important;
    font-weight: 700 !important;
    color: var(--text-charcoal) !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    border: none !important;
    background: transparent !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.filter-trigger-btn:hover {
    color: var(--gold-icons) !important;
}
.filter-trigger-btn.active {
    background-color: var(--heading-black) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(11, 15, 25, 0.15) !important;
}

/* Individual Portfolio Elements Frames Core Setup */
.portfolio-filterable-node {
    transition: transform 0.4s ease, opacity 0.4s ease;
    will-change: transform, opacity;
}
.portfolio-luxury-anchor {
    text-decoration: none !important;
    display: block;
}
.portfolio-inner-card {
    background-color: var(--heading-black);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(11, 15, 25, 0.01);
}

.portfolio-grid-main-img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    display: block;
}

/* ADVANCED CINEMATIC HOVER LENS LAYER COVER OVER IMAGE */
.portfolio-grid-hover-lens {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 15, 25, 0) 40%, rgba(11, 15, 25, 0.95) 100%);
    opacity: 0;
    z-index: 5;
}

.grid-card-category-tag {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-icons);
    letter-spacing: 0.05em;
    transform: translateY(15px);
}
.grid-card-project-title {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.01em;
    transform: translateY(15px);
}

/* Central Floating Small Action Target Plus Icon Capsule Sphere */
.grid-card-zoom-trigger-bubble {
    top: 25px;
    right: 25px;
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    color: #ffffff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transform: scale(0.6);
}

/* ==========================================================================
   BUTTERY SMOOTH HOVER TRANSFORM MATRIX LAUNCHPAD
   ========================================================================== */
.portfolio-grid-main-img, .portfolio-grid-hover-lens, 
.grid-card-category-tag, .grid-card-project-title, .grid-card-zoom-trigger-bubble {
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Mouse Hover Action Direct Triggers */
.portfolio-inner-card:hover .portfolio-grid-main-img {
    transform: scale(1.08); /* Slow hardware tracking zoom */
}
.portfolio-inner-card:hover .portfolio-grid-hover-lens {
    opacity: 1;
}
.portfolio-inner-card:hover .grid-card-category-tag,
.portfolio-inner-card:hover .grid-card-project-title {
    transform: translateY(0); /* Descriptions text rolls up elegantly */
}
.portfolio-inner-card:hover .grid-card-zoom-trigger-bubble {
    transform: scale(1); /* Zoom sign expands */
}

/* GLightbox Override customization markers to keep branding luxury gold look */
.gslide-title {
    font-family: sans-serif !important;
    font-weight: 700 !important;
    color: var(--gold-icons) !important;
}
.gslide-desc {
    color: #cbd5e1 !important;
}

/* Smartphones structural responsive overrides mapping layout */
@media (max-width: 767.98px) {
    .portfolio-grid-main-img { height: 240px; }
    .portfolio-filter-tabs-hub { border-radius: 20px !important; width: 100%; padding: 10px !important; }
    .filter-trigger-btn { padding: 8px 16px !important; font-size: 12px !important; width: 48%; }
    .portfolio-grid-hover-lens { opacity: 1; background: linear-gradient(180deg, rgba(11, 15, 25, 0.1) 30%, rgba(11, 15, 25, 0.85) 100%); }
    .grid-card-category-tag, .grid-card-project-title { transform: translateY(0); }
    .grid-card-zoom-trigger-bubble { display: none; }
}
.portfolio-grid-filter-section
{
    padding-top: 50px;
    padding-bottom: 50px;
}
/* ==========================================================================
   ULTRA-LUXURY DUAL-GRID SPLIT CONTACT US SECTION STYLES
   ========================================================================== */
.premium-contact-section {
    padding: 120px 0 !important;
    background-color: var(--heading-black);
    border-top: 1px solid rgba(202, 160, 92, 0.15);
}
.premium-contact-section .z-3 {
    z-index: 3;
}

.luxury-contact-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(202, 160, 92, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(202, 160, 92, 0.015) 1px, transparent 1px);
    background-size: 45px 45px;
    z-index: 1;
}

.contact-tag-gold {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold-icons);
}
.contact-main-heading {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.contact-lead-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #94a3b8;
}

.contact-node-item {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 24px;
    border-radius: 20px;
}

.node-icon-sphere {
    width: 48px;
    height: 48px;
    background-color: rgba(202, 160, 92, 0.12);
    color: var(--gold-icons);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.node-label-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #64748b;
}

.node-link-value, .node-text-value {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    text-decoration: none;
}
a.node-link-value:hover {
    color: var(--gold-icons) !important;
}

.contact-lead-form-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-form-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--heading-black);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.input-with-icon-wrap {
    position: relative;
}
.input-inner-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 18px;
    z-index: 10;
}

.premium-form-input {
    background-color: var(--bg-cream) !important;
    border: 1px solid rgba(202, 160, 92, 0.15) !important;
    padding: 14px 16px 14px 48px !important;
    border-radius: 14px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: var(--heading-black) !important;
}
.premium-form-input::placeholder {
    color: #94a3b8 !important;
}
.premium-form-input:focus {
    box-shadow: 0 0 0 4px rgba(202, 160, 92, 0.12) !important;
    border-color: var(--gold-icons) !important;
    background-color: #ffffff !important;
}

.custom-contact-select-box {
    cursor: pointer;
    appearance: none;
}
.custom-form-textarea {
    padding-left: 20px !important;
}

.math-captcha-box-frame {
    background-color: var(--heading-black);
    border: 1px solid rgba(202, 160, 92, 0.2);
}
#mathCaptchaQuestion {
    font-family: monospace;
    font-size: 16px;
    letter-spacing: 2px;
}
.math-captcha-box-frame .premium-form-input {
    padding-left: 16px !important;
}

.btn-form-submit {
    background-color: var(--heading-black) !important;
    border: 2px solid var(--heading-black) !important;
    color: #ffffff !important;
    padding: 16px 32px !important;
    border-radius: 100px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    box-shadow: 0 15px 30px rgba(11, 15, 25, 0.15) !important;
}

.contact-node-item, .node-icon-sphere, .premium-form-input, 
.btn-form-submit, .submit-icon-circle {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-form-submit .submit-icon-circle {
    width: 26px;
    height: 26px;
    background-color: #ffffff;
    color: var(--heading-black);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.btn-form-submit:hover {
    background-color: transparent !important;
    color: var(--heading-black) !important;
    transform: translateY(-3px);
}
.btn-form-submit:hover .submit-icon-circle {
    background-color: var(--heading-black);
    color: #ffffff;
}

.contact-node-item:hover {
    transform: translateX(5px);
    background-color: rgba(202, 160, 92, 0.05);
    border-color: rgba(202, 160, 92, 0.25);
}
.contact-node-item:hover .node-icon-sphere {
    background-color: var(--gold-icons);
    color: #ffffff;
}

/* ==========================================================================
   HIGH-FIDELITY INTERACTIVE MAP OVERLAY STYLES
   ========================================================================== */
.premium-location-map-section {
    border-top: 2px solid var(--gold-icons);
    background-color: var(--heading-black);
}

/* Subtle dark lens blend effect on top of standard map */
.map-lens-overlay-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11,15,25,0.2) 0%, rgba(11,15,25,0) 100%);
    pointer-events: none;
    z-index: 2;
}

/* Responsive Structural scaling adjustments */
@media (max-width: 991.98px) {
    .premium-contact-section { padding: 80px 0 !important; }
    .contact-main-heading { font-size: 34px; }
    .contact-lead-form-card { padding: 35px 25px; border-radius: 24px; }
}
/* ==========================================================================
   PREMIUM DETAILED SERVICE PAGE SPECIFIC STYLES
   ========================================================================== */
.service-detailed-narrative-section {
    padding: 70px 0 !important;
}
.letter-spacing-1 {
    letter-spacing: 0.05em;
}

/* Premium Check list nodes setup */
.premium-check-list-nodes li i {
    font-size: 18px;
    color: var(--gold-icons) !important; /* Forces fallback compliance with theme color profiles */
}

/* INDIVIDUAL SERVICE PAGE GALLERY GRID LAYER */
.service-gallery-anchor {
    text-decoration: none !important;
    display: block;
}
.service-gallery-card {
    background-color: var(--heading-black);
}
.service-gallery-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

/* Hover lens panel layout rules */
.service-gallery-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 15, 25, 0) 50%, rgba(11, 15, 25, 0.95) 100%);
    opacity: 0;
    z-index: 5;
}

.gallery-hover-tag {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-icons);
    letter-spacing: 0.05em;
    transform: translateY(15px);
}
.gallery-hover-title {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.01em;
    transform: translateY(15px);
}

/* Floating Lightbox Zoom Icon Circle Bubble */
.gallery-zoom-icon-capsule {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 38px;
    height: 38px;
    background-color: rgba(202, 160, 92, 0.2);
    border: 1px solid rgba(202, 160, 92, 0.35);
    backdrop-filter: blur(8px);
    color: var(--gold-icons);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transform: scale(0.6);
}

/* ==========================================================================
   TRANSITION TIMELINES LAUNCHPAD FOR SERVICE MODULE
   ========================================================================== */
.service-gallery-img, .service-gallery-hover-overlay,
.gallery-hover-tag, .gallery-hover-title, .gallery-zoom-icon-capsule {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Mouse Trigger Shifts states */
.service-gallery-card:hover .service-gallery-img {
    transform: scale(1.06);
}
.service-gallery-card:hover .service-gallery-hover-overlay {
    opacity: 1;
}
.service-gallery-card:hover .gallery-hover-tag,
.service-gallery-card:hover .gallery-hover-title {
    transform: translateY(0);
}
.service-gallery-card:hover .gallery-zoom-icon-capsule {
    transform: scale(1);
    background-color: var(--gold-icons);
    color: #ffffff;
}

/* Service Bottom CTA configuration adjustment */
.service-cta-trigger-wrapper .btn-manifesto-action-quote:hover .manifesto-icon-sphere {
    background-color: var(--heading-black) !important;
    color: #ffffff !important;
}

/* Smart responsive view structural overwrites */
@media (max-width: 991.98px) {
    .service-detailed-narrative-section, .service-dedicated-gallery-section { padding: 80px 0 !important; }
    .service-features-accent-stack { padding: 30px 20px !important; }
}
@media (max-width: 767.98px) {
    .lead
    {
        font-size: 15px;
        letter-spacing: 0.3px;
    }
    .inner-custom-breadcrumb .breadcrumb-item, .inner-custom-breadcrumb .breadcrumb-item a
    {
        font-size: 10px!important;
    }
    .mobile-nav-link
    {
        padding: 7px 6px!important;
        font-size: 14px!important;
    }
    .hero-sub-indicator .indicator-text
    {
        font-size: 10px!important;
    }
    .service-gallery-img { height: 230px; }
    .service-gallery-hover-overlay { opacity: 1; background: linear-gradient(180deg, rgba(11, 15, 25, 0.1) 40%, rgba(11, 15, 25, 0.9) 100%); }
    .gallery-hover-tag, .gallery-hover-title { transform: translateY(0); }
    .gallery-zoom-icon-capsule { display: none; }
}
.service-dedicated-gallery-section
{
    padding-top: 40px;
    padding-bottom: 40px;
}
/* ==========================================================================
   TURNKEY SERVICE TIMELINE NODES SPECIFIC CUSTOM STYLE SHEETS
   ========================================================================== */

/* Step timeline tracking block metrics styles */
.turnkey-timeline-tracker {
    position: relative;
    padding-left: 5px;
}
.timeline-step-node {
    position: relative;
}

/* Vertical structural line tracking behind spheres */
.timeline-step-node:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 20px;
    width: 2px;
    height: calc(100% + 15px);
    background-image: linear-gradient(to bottom, var(--gold-icons) 50%, transparent 50%);
    background-size: 2px 8px;
    opacity: 0.5;
}

.step-badge-sphere {
    width: 42px;
    height: 42px;
    background-color: var(--heading-black);
    color: var(--gold-icons);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    border: 2px solid rgba(202, 160, 92, 0.25);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Soft transition scaling for timeline nodes interaction tracks */
.timeline-step-node {
    transition: transform 0.3s ease;
}
.service-features-accent-stack:hover .timeline-step-node:hover {
    transform: translateX(4px);
}

/* Reusing generic service styles with structural safety locks */
.service-gallery-anchor {
    text-decoration: none !important;
}
/* ==========================================================================
   RETAIL BRANDING INTERACTIVE STRIP SPECIFIC CUSTOM STYLE SHEETS
   ========================================================================== */

/* Capability card interactive blocks configuration */
.retail-capability-card {
    border-color: rgba(11, 15, 25, 0.1) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.retail-capability-card:hover {
    transform: translateY(-3px);
    border-left-color: var(--gold-icons) !important; /* Emphasizes gold accent border on active mouse tracking */
    box-shadow: 0 10px 25px rgba(11, 15, 25, 0.06);
    background-color: #ffffff !important;
}

.text-gold-accent {
    color: var(--gold-icons) !important;
}

/* Structural safeguard synchronization rules mapping templates */
.service-gallery-anchor {
    text-decoration: none !important;
}
/* ==========================================================================
   CORPORATE EVENTS CARD INTERACTION SPECIFIC CUSTOM STYLES
   ========================================================================== */
.retail-capability-card {
    border-color: rgba(11, 15, 25, 0.1) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.retail-capability-card:hover {
    transform: translateY(-3px);
    border-left-color: var(--gold-icons) !important; /* Smoothly emphasizes gold identity bar */
    box-shadow: 0 10px 25px rgba(11, 15, 25, 0.06);
    background-color: #ffffff !important;
}

.text-gold-accent {
    color: var(--gold-icons) !important;
}

.service-gallery-anchor {
    text-decoration: none !important;
}
/* ==========================================================================
   ATL & BTL BRAND ACTIVATION INTERACTION SPECIFIC STYLES
   ========================================================================== */
.retail-capability-card {
    border-color: rgba(11, 15, 25, 0.1) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.retail-capability-card:hover {
    transform: translateY(-3px);
    border-left-color: var(--gold-icons) !important; /* Forces premium gold color bar shift on mouse entry */
    box-shadow: 0 10px 25px rgba(11, 15, 25, 0.06);
    background-color: #ffffff !important;
}

.text-gold-accent {
    color: var(--gold-icons) !important;
}

.service-gallery-anchor {
    text-decoration: none !important;
}
/* ==========================================================================
   ADVANCED HARDWARE-ACCELERATED HERO CINEMATIC CAROUSEL SLIDER STYLES
   ========================================================================== */
#heroCinematicSliderMaster {
    width: 100%;
    height: 100vh; /* Keeps dynamic viewport window capture across screens */
    background-color: var(--heading-black);
}

.style-slide-frame {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Luxury Blueprint Grid background sync overlay text style */
.luxury-inner-hero-blueprint-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(202, 160, 92, 0.02) 1px, transparent 1px);
    background-size: 100% 45px;
    z-index: 2;
    pointer-events: none;
}

/* Custom Horizontal Pill Indicator Navigation Dots styling links overrides */
.luxury-slider-indicators-bar {
    bottom: 40px !important;
}
.luxury-slider-indicators-bar button {
    width: 35px !important;
    height: 4px !important;
    background-color: rgba(255, 255, 255, 0.3) !important;
    border: none !important;
    border-radius: 10px !important;
    transition: all 0.4s ease !important;
}
.luxury-slider-indicators-bar button.active {
    width: 60px !important;
    background-color: var(--gold-icons) !important;
}

/* SIDE NAVIGATION FLOATING HOVER ARROWS FRAMEWORK */
.luxury-slider-arrow-btn {
    width: 80px !important;
    opacity: 0 !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
#heroCinematicSliderMaster:hover .luxury-slider-arrow-btn {
    opacity: 1 !important; /* Arrows appear smooth on carousel boundary mouse enter tracking */
}

.slider-arrow-sphere {
    width: 52px;
    height: 52px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease !important;
}
.luxury-slider-arrow-btn:hover .slider-arrow-sphere {
    background-color: var(--gold-icons);
    border-color: var(--gold-icons);
    color: var(--heading-black);
    transform: scale(1.08);
}

/* ==========================================================================
   DYNAMIC TEXT UP-REVEAL SLIDE SWITCHING KEYFRAMES
   ========================================================================== */
.carousel-item .slider-content-animation-node > * {
    opacity: 0;
    transform: translateY(25px);
    transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.75s ease;
}

/* When carousel item active layer handles class injection */
.carousel-item.active .slider-content-animation-node > * {
    opacity: 1;
    transform: translateY(0);
}

/* Sequential Staggered Delay Intervals Matrix loops */
.carousel-item.active .slider-content-animation-node .hero-sub-indicator { transition-delay: 0.15s; }
.carousel-item.active .slider-content-animation-node .hero-display-title  { transition-delay: 0.35s; }
.carousel-item.active .slider-content-animation-node .hero-display-desc   { transition-delay: 0.55s; }
.carousel-item.active .slider-content-animation-node .flex-wrap            { transition-delay: 0.75s; }

/* Responsive adjustments for handheld mobile frames mapping devices */
@media (max-width: 767.98px) {
    .luxury-slider-indicators-bar { bottom: 30px !important; }
    .luxury-slider-indicators-bar button { width: 20px !important; }
    .luxury-slider-indicators-bar button.active { width: 40px !important; }
}
/* Custom spacing adjustment for 5 items slider indicators dots */
.luxury-slider-indicators-bar button {
    margin-right: 6px !important;
    margin-left: 6px !important;
}