       /* Reset & Background Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Sofia Pro';
}

body{
    overflow-x: hidden;
}


/* start Off Menu */
/* Trigger Button Styling */
        .menu-trigger-container {
            display: none;
        }

        .menu-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            background-color: #1a1a1a;
            color: #ffffff;
            border: none;
            padding: 12px 20px;
            font-size: 16px;
            font-weight: 500;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease;
        }

        .menu-btn:hover {
            background-color: #333333;
            transform: translateY(-2px);
        }

        .menu-btn i {
            font-size: 18px;
        }

        /* Off-Canvas Sidebar Styling */
        .off-canvas {
            position: fixed;
            top: 0;
            left: -300px; /* Default me screen se bahar hidden rahega */
            width: 300px;
            height: 100vh;
            background-color: #ffffff;
            box-shadow: 4px 0 15px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            /* Cubic-bezier se slide animation bohot premium lagti hai */
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            padding: 40px 24px;
            display: flex;
            flex-direction: column;
        }

        /* Jab JS se 'open' class add hogi to menu slide in hoga */
        .off-canvas.open {
            transform: translateX(300px);
        }

        /* Close Button Styling */
        .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 30px;
            color: #888;
            cursor: pointer;
            transition: color 0.2s ease;
        }

        .close-btn:hover {
            color: #1a1a1a;
        }

        /* Navigation Links */
        .off-canvas-nav {
            margin-top: 40px;
        }

        .off-canvas-nav ul {
            list-style: none;
        }

        .off-canvas-nav ul li {
            margin-bottom: 15px;
        }

        .off-canvas-nav ul li a {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
            color: #444444;
            font-size: 18px;
            font-weight: 500;
            padding: 12px 15px;
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .off-canvas-nav ul li a i {
            font-size: 16px;
            color: #777;
            transition: color 0.3s ease;
        }

        /* Hover Effects */
        .off-canvas-nav ul li a:hover {
            background-color: #f0f4f8;
            color: #0076ff;
        }

        .off-canvas-nav ul li a:hover i {
            color: #0076ff;
        }

        /* Dark Overlay Backdrop */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.4);
            z-index: 999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }

        .menu-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

/* end off menu */


span.logo-text img {
    width: 200px;
}

@font-face {
    font-family: 'Sofia Pro';
    src: url('fonts/Sofia Pro Regular Az.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Sofia Pro';
    src: url('fonts/Sofia Pro Medium Az.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Sofia Pro';
    src: url('fonts/Sofia Pro Semi Bold Az.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Sofia Pro';
    src: url('fonts/Sofia Pro Bold Az.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Sofia Pro';
    src: url('fonts/Sofia Pro Black Az.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

body{
font-family: 'Sofia Pro', sans-serif;
}

/* Start Header Css */
.header {
    background-color: #030305; /* Super dark premium background */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow: hidden;
}

/* Header Wrapper to bond Navbar and Bottom Lines together */
.header-wrapper {
    width: 100%;
    max-width: 1550px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url(media/navigation-bar.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    padding: 21px 20px 29px;
}

/* Main Capsule Container */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Side Decorative Dots */
.side-dots {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: absolute;
    align-items: center;
}

.dots-left { left: -8px; }
.dots-right { right: -8px; }

.side-dots span {
    width: 2px;
    height: 2px;
    background-color: #bb0a14c9;
    border-radius: 50%;
}

span.center-dot {
    width: 5px;
    height: 5px;
}

/* LOGO SECTION */
.logo-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 0 0 15px;
}

.logo-box img {
    width: 200px;
}

img.header-circle-icon {
    width: 105px;
}

/* NAVIGATION LINKS */
.nav-menu {
    display: flex;
    gap: 18px;
}

.menu-item {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.2s ease;
}

.menu-item:hover {
    color: #b90c14;
}

/* Active HOME Red Line */
.menu-item.active {
    color: #b90c14;
}

.menu-item.active::after {
    content: '';
    position: absolute;
    bottom: -9px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #b90c14;
    box-shadow: 0px 0px 9px 1px #e50000;
}


a.menu-item.active::before {
    content: '';
    position: absolute;
    bottom: -13px;
    left: 42%;
    width: 13%;
    height: 7px;
    background-color: #ffffff;
    border-radius: 51px !important;
    border: 1px solid #e50000;
    box-shadow: 0px 0px 14px 4px #e50000;
    z-index: 11;
}

/* RIGHT ACTIONS (SEARCH & CTA) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0px;
}

.search-icon {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
}

.search-icon:hover {
    color: #b90c14;
}

/* LETS TALK Button */

a.talk-btn img {
    width: 16px;
    height: fit-content;
}

.talk-btn {
    background-image: linear-gradient(180deg, #ad0005 45%, #d5060b 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 12px 25px;
    border-radius: 20px;
    transition: transform 0.2s ease, background-color 0.2s;
    margin: 0 15px 0 0;
    border: 2px solid #d5060b;
    box-shadow: 0 0 10px #000;
    display: flex;
    align-items: center;
    gap: 5px;
}

.talk-btn:hover {
    background-color: #d60000;
    transform: scale(1.03);
}


/* ==========================================================================
   EXACT LOWER DECORATIVE LINES (As requested: Center Lines, Cuts, and Colors)
   ========================================================================== */

.bottom-decorative-bar {
    position: absolute;
    bottom: -1px; /* Attached precisely to the capsule's bottom border */
    width: 96%;   /* Slightly inset from the ends just like image */
    height: 12px;
    display: flex;
    align-items: flex-end;
    z-index: 1;
    pointer-events: none;
}

/* Outer Left and Right subtle red fades on corners */
.outer-line-left {
    flex: 1;
    height: 0px;
    background: linear-gradient(to right, rgba(255,0,0,0.7), rgba(255,255,255,0.2));
}

.outer-line-right {
    flex: 1;
    height: 0px;
    background: linear-gradient(to left, rgba(255,0,0,0.7), rgba(255,255,255,0.2));
}

/* Center Highlighted Section with angled drop */
.center-line-wrapper {
    display: flex;
    align-items: flex-end;
    width: 45%;
    position: relative;
    top: 10px;
}

/* White structural lines that drop down around the center */
.center-left-white {
    flex: 1;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.9);
    position: relative;
}

/* The exact angled cut step down */
.center-left-white::after {
    content: '';
    position: absolute;
    right: 99%;
    bottom: 7px;
    width: 30px;
    height: 1px;
    background-color: rgb(255 255 255);
    transform: rotate(27deg);
}

.center-right-white {
    flex: 1;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.9);
    position: relative;
}

.center-right-white::before {
    content: '';
    position: absolute;
    left: 99%;
    bottom: 6px;
    width: 30px;
    height: 1px;
    background-color: rgb(255 255 255);
    transform: rotate(-27deg);
}

/* The EXACT Solid Red Center line centered right below the menu */
.center-main-red {
    width: 120px;
    height: 1px;
    background-color: #b90c14;
    margin: 0 15px;
    box-shadow: 0px 2px 8px rgba(255, 0, 0, 0.6);
    transform: translateY(0px);
}

/* End Header Css */


/* Body section css */

.hero-banner {
    width: 100%;
    padding: 80px 20px;
    background-color: #030305;
    /* Pexels ya Unsplash se high quality dark globe image replace kar sakte hain */
    background-image: linear-gradient(to right, #030305 45%, rgba(0,0,0,0.2) 70%), url('media/header-hero.png');
    background-size: auto 110%; /* Makes the planet massive and overflowing right side */
    background-position: right center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

/* Overlay to blend the planet shadows naturally like the screenshot */
.hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 85% 50%, rgba(0, 242, 254, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

/* Inner Container Grid padding alignment */
.hero-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 0px;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 750px; /* Restricts the text content wrapper width precisely */
    display: flex;
    flex-direction: column;
}

/* TOP MINI TAGLINE */
.top-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.tag-text {
    font-size: 13px;
    font-weight: 800;
    color: #b90c14; /* Crisp primary branding red */
    letter-spacing: 1.5px;
}

.tag-red-block {
    width: 60px;
    height: 2px;
    background-color: #b90c14;
    display: inline-block;
}

/* MAIN BIG HEADING */
.main-heading {
    font-size: 60px; /* Big architectural font layout */
    font-weight: 800;
    color: #ffffff;
    line-height: 1.08;
    letter-spacing: 0.5px;
    margin-bottom: 35px;
}

.text-red {
    color: #b90c14;
}

/* DESCRIPTION WITH VERTICAL RED INDICATOR */
.desc-box {
    display: flex;
    align-items: stretch;
    gap: 15px;
    margin-bottom: 45px;
}

.left-indicator-bar {
    width: 4px;
    background-color: #b90c14;
    border-radius: 2px;
}

.sub-text {
    font-size: 20px;
    line-height: 1.6;
    color: #dedede;
    font-weight: 400;
}

/* CTA BUTTONS ROW */
.cta-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Left Solid Button */
a.btn-solid-red svg {
    width: 22px;
    margin-left: 10px;
    opacity: 0.3;
    filter: blur(0.5px);
}

.cta-actions a img {
    width: 16px;
    height: fit-content;
}

.btn-solid-red
 {
    background-image: linear-gradient(269deg, #840004 45%, #d5060b 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 18px 30px;
    border-radius: 8px;
    transition: transform 0.2s ease, background-color 0.2s;
    margin: 0 15px 0 0;
    border: 2px solid #d5060b;
    box-shadow: 0 0 10px #000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-solid-red:hover {
    background-color: #d60000;
    transform: translateY(-2px);
}

/* Right Transparent Outline Button */
a.btn-outline-white svg
 {
    width: 20px;
    height: auto;
    padding: 0 !important;
    margin-left: 10px;
    filter: brightness(0.6);
}

.btn-outline-white {
    background: transparent;
    color: #ffffff;
    border: 1.5px solid hsl(0deg 0% 100% / 20%);
    text-decoration: none;
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 20px 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background-color 0.2s, border-color 0.2s, transform 0.2s;
}

.arrow-right {
    color: #b90c14; /* Precision matching red arrow inside outline box */
    font-size: 16px;
    font-weight: bold;
}

.btn-outline-white:hover {
     background-image: linear-gradient(269deg, #840004 45%, #d5060b 100%);
    border-color: #b90c14;
    transform: translateY(-2px);
}

/* Responsive adjustments for mid-sized screens */
@media (max-width: 1024px) {
    .main-heading { font-size: 48px; }
    .hero-container { padding: 0 40px; }
    .hero-banner { background-size: auto 90%; }
}

/* Intro Section */
.intro-section {
    max-width: 820px;
    margin: 0 auto 0px auto;
    text-align: center;
}

.wrapper {
    background-color: #000;
    padding: 70px 20px;
}

.intro-section .description {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
    color: #a0a0a0;
    letter-spacing: 0.3px;
    padding-top:  10px;
}

/* Basic Page Reset */

.home-section01 {
    background-color: #000; /* Fully Black background */
    color: #fff;
    padding: 60px 20px 90px;
}

/* Framework Section Wrapper */
.framework-section {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

/* Header Text & Navigation */
.framework-header {
    max-width: 750px;
    margin: 0 auto;
}

.subtitle {
    font-size: 22px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 25px;
    line-height: 32px;
    font-weight: 600;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    border-bottom: 1px solid #222;
    padding-bottom: 10px;
}

.tab-btn {
    background: none;
    border: none;
    color: #888;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 7px 15px;
    transition: color 0.3s ease;
    position: relative;
    text-transform: uppercase;
}

.tab-btn:hover, .tab-btn.active {
    color: #fff;
}

/* Active Tab Indicator Line */
.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
}

/* Success Stories Heading */
.framework-section .section-title {
    font-size: 18px; 
}

.section-title {
    font-size: 22px;
    letter-spacing: 3px;
    margin: 40px 0;
    text-transform: uppercase;
    color: #fff;
}

/* Tabs Content Hiding/Showing Logic with Fade-in Effect */
.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Gallery layout using Flexbox */
.gallery-container {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    height: 550px; /* Layout height */
}

/* Base style for each pill/image item */
.gallery-item {
    position: relative;
    border-radius: 60px; /* Capsule shape rounding */
    overflow: hidden;
    height: 100%;
    cursor: pointer;
    /* Smooth width scaling aur transition */
    transition: flex-grow 0.6s cubic-bezier(0.25, 1, 0.5, 1), 
                max-width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Default widths via flex-grow (Shuru me center wali badi dikhegi) */
.item-small {
    flex-grow: 1;
    max-width: 160px;
}

.item-large {
    flex-grow: 3;
    max-width: 700px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: none;
}

/* --- HOVER EFFECTS (Sari images ke liye same behavior) --- */

/* Jab container par hover ho, to baqi sab choti ho jayein */
.gallery-container:hover .gallery-item {
    flex-grow: 1;
    max-width: 160px; 
}

/* Jis image par hover kiya jaye, chahe wo small ho ya large, wo center jitni hi badi ho jaye */
.gallery-container .gallery-item:hover {
    flex-grow: 3;
    max-width: 700px; /* Isko aap 650px ya apne mutabik adjust kar sakte hain */
}

/* Image zoom inside container on hover */
.gallery-item:hover img {
    transform: scale(1.05);
}

/* Dark tint overlay styling */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent; /* Default halka overlay */
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Bottom me content alignment */
    padding-bottom: 30px;
    opacity: 1;
    transition: opacity 0.4s ease, background 0.4s ease;
}

/* Hover karne par overlay dark aur active ho jaye */
.gallery-item:hover .overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.7); /* Image clear dikhegi */
}

/* Bottom Center Logo styling */
.logo-text {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #fff;
    background: transparent;
    padding: 0px;
    border-radius: 0px;
    backdrop-filter: blur(0px);
    opacity: 0; /* Shuru me hide rahega */
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Hover karne par bottom logo smoothly upar aayega */
.gallery-item:hover .logo-text {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustment for tablets/mobile */
@media (max-width: 768px) {

    .gallery-container {
        flex-direction: column;
        height: auto;
    }
    .gallery-item {
        width: 100% !important;
        max-width: 100% !important;
        height: 200px;
        border-radius: 30px;
    }
}


.home-section-combine {
    background-color: #000;
}

.home-section02 {
    background-color: transparent;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 90px 40px 0 40px;
    overflow-x: hidden;
    margin-bottom: -240px;
    z-index: 1;
    position: relative;
}

.content-inner ul {
    padding-left: 20px;
    padding-bottom: 30px;
}

.content-inner ul li {
    padding-bottom: 10px;
}

/* Master Accordion Grid Layout */
.services-accordion-container {
    display: flex;
    width: 100%;
    max-width: 1400px;
    min-height: 520px;
    align-items: stretch;
    gap: 50px;
}

/* Standard Closed Tab Configuration */
.accordion-tab {
    display: flex;
    background: transparent;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
    /* Static set narrow layout for collapsed titles */
    flex: 1 0 75px; 
}

/* Clickable Title Handle area */
.tab-title-wrapper {
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 25px 0;
    width: 120px;
    cursor: pointer;
    user-select: none;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    flex-direction: column-reverse;
}

/* Vertical text settings matching screen exactly */
.tab-heading {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    font-size: 40px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #e0e0e0;
    white-space: nowrap;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.tab-number {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #555555;
    margin-bottom: 5px;
    font-style: italic;
}

/* When Tab item is hovered directly */
.tab-title-wrapper:hover .tab-heading {
    color: #ffffff;
}

/* Content Area - Hidden when closed via flex width */
.tab-content-panel {
    background-color: #ffffff;
    color: #000000;
    flex: 1;
    width: 0; /* Forces hidden state when tab flex defaults to zero */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
}

/* Inner padding container to avoid content distortion during collapse transitions */
.content-inner {
    width: 440px; /* Fixed rendering box bounds */
    padding: 60px 45px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.content-inner p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 30px;
}

/* Rounded Pill Button Style */
.find-out-more-btn {
    display: inline-flex;
    align-items: center;
    background-image: linear-gradient(269deg, #840004 45%, #d5060b 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 14px 25px;
    border-radius: 8px;
    transition: transform 0.2s ease, background-color 0.2s;
    margin: 0 15px 0 0;
    border: 2px solid #d5060b;
    box-shadow: none;
}

.find-out-more-btn .arrow {
    margin-right: 10px;
    font-size: 26px;
    margin-bottom: 5px;
}

.find-out-more-btn:hover {
    background-color: #222222;
    transform: translateY(-2px);
}

/* =========================================
   Active State Layout Adjustments (Expanded)
   ========================================= */
.accordion-tab.active {
    /* Expands box space gracefully to present text text container */
    flex: 0 0 550px; 
}

.accordion-tab.active .tab-content-panel {
    opacity: 1;
    visibility: visible;
    width: auto;
        display: grid;
    align-content: center;
}

.accordion-tab.active .tab-heading {
    color: #000000;
}

.accordion-tab.active .tab-number {
    color: #aaaaaa;
}

.accordion-tab.active .tab-title-wrapper {
    border-left: none;
    /* Blends the wrapper tab smoothly into white card panel background */
    background-color: #ffffff; 
}


.home-section03 {
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px 20px 20px;
}

/* Main Section Styling */
.stats-section {
    position: relative;
    width: 100%;
    max-width: 950px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

img.shadow-container {
    margin-bottom: -580px;
}

/* Premium Pink/Purple Glow Effect */
.glow-container {
    position: relative;
    width: 80%;
    max-width: 500px;
    display: flex;
    justify-content: center;
}

.glow-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #b90c14 50%, transparent 100%);
    position: relative;
    z-index: 2;
}

/* Intense Radial Blur Behind the Line to match screenshot */
.glow-container::before {
    content: '';
    position: absolute;
    top: -79px;
    width: 150%;
    height: 300px;
    background: radial-gradient(circle, rgb(255 0 0 / 65%) 0%, rgba(217, 70, 239, 0.05) 94%, transparent 80%);
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
}

/* Section Subtitle */

/* Stats Layout */
.stats-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    z-index: 3;
}

.stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 35px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* Remove border from the last row */
.stats-row:last-child {
    border-bottom: none;
}

/* Big Typography Numbers */
.stat-number {
    color: #ffffff;
    font-size: 90px;
    font-weight: 400;
    letter-spacing: -2px;
    line-height: 1;
    padding-left: 20px;
}

/* Descriptions Styling */
.stat-text {
    color: #ffffff;
    font-size: 44px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.5px;
    opacity: 0.95;
    padding-right: 20px;
}

/* Responsive Tweak for Small Screens */
@media (max-width: 600px) {
    .stats-row {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 30px 20px;
    }
    
    .stat-number {
        padding-left: 0;
    }

    .stat-text {
        padding-right: 0;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
}


.home-section04 {
    background-color: #000000;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 100px 24px;
}

/* Main FAQ Container Setup */
.faq-container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}

/* Heading Typography Setup */
.faq-main-title {
    font-size: 38px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.5px;
    text-align: center;
    color: #ffffff;
    margin-bottom: 75px;
}

/* Green Highlight Span Color Match */
.faq-main-title .highlight-text {
    color: #b90c14;
    font-weight: 400;
}

/* Accordion Component Tree Layout */
.faq-accordion-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    width: 100%;
}

/* Trigger Button Mechanics */
.faq-trigger {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 34px 10px;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease;
}

.faq-question {
    font-size: 21px;
    font-weight: 400;
    letter-spacing: -0.2px;
    color: #ffffff;
    padding-right: 30px;
    transition: color 0.3s ease;
}

/* Custom CSS Drawn Plus Icon Circle */
.faq-icon-circle {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s ease;
}

/* Horizontal line component of plus icon */
.faq-icon-circle::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 1px;
    background-color: #ffffff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Vertical line component of plus icon */
.faq-icon-circle::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 12px;
    background-color: #ffffff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
}

/* Hover States for Interactive Elements */
.faq-trigger:hover .faq-question {
    color: #b90c14;
}

.faq-trigger:hover .faq-icon-circle {
    border-color: #ffffff;
}

/* Sliding Body Panel Layout Container */
.faq-body-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Inner content area to keep styling clean during action transitions */
.faq-content-inner {
    padding: 0 10px 34px 10px;
}

.faq-content-inner p {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
    color: #b0b0b0;
}

/* =========================================
   Active Interactive Target Classes
   ========================================= */
.faq-item.active .faq-question {
    color: #b90c14;
}

.faq-item.active .faq-icon-circle {
    border-color: #b90c14;
    transform: rotate(180deg);
}

/* Hide the vertical line when container is open to turn '+' into '-' */
.faq-item.active .faq-icon-circle::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-icon-circle::before {
    background-color: #b90c14;
}

/* Simple viewport balancing responsive tweaks */
@media (max-width: 768px) {
    body {
        padding: 60px 16px;
    }

    .faq-main-title {
        font-size: 28px;
        margin-bottom: 50px;
    }

    .faq-trigger {
        padding: 24px 5px;
    }

    .faq-question {
        font-size: 17px;
    }

    .faq-content-inner {
        padding: 0 5px 24px 5px;
    }

    .faq-content-inner p {
        font-size: 14px;
    }
}



        .home-section05 {
            background-color: #000000;
            color: #ffffff;
        }

        /* --- TEST SECTIONS (Taaki pata chale pinning kaise kaam kar rahi hai) --- */
        .dummy-hero-section {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background: radial-gradient(circle at center, #111111 0%, #000000 100%);
            border-bottom: 1px solid #1a1a1a;
        }

        .dummy-hero-section h1 {
            font-size: 32px;
            letter-spacing: 4px;
            color: #444;
            margin-bottom: 10px;
        }

        .dummy-footer-section {
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #050505;
            font-size: 24px;
            color: #333;
            letter-spacing: 2px;
        }

        /* --- EXACT FRAMER PINNING ARCHITECTURE --- */
        
        /* Ye outer container scroll ki length banayega (Isi se slide ki speed slow/smooth hogi) */
        .framer-scroll-container {
            overflow: hidden;
            width: 100%;
            height: auto; /* 300vh ka matlab 3 full page scrolls tak screen lock rahegi */
            background-color: #000000;
        }

        /* Ye box screen par aate hi fix/lock (sticky) ho jayega */
        .framer-sticky-window {
            position: sticky;
            top: 0;
            height: 100vh;
            width: 100vw;

            display: flex;
            align-items: center;
        }

        /* Ye lamba horizontal track hai jo sliding transition chalayega */
        .framer-slider-track {
            display: flex;
            height: 100%;
            width: 300vw; /* Total width = 3 slides (3 * 100vw) */
            will-change: transform;
            /* Smooth damping bezier curved transition for premium feel */
            transition: transform 0.5s cubic-bezier(0.1, 0.7, 0.24, 1);
        }

        /* Individual Content Panels */
        .framer-slide-panel {
            width: 100vw;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0 10px 0 2%;
            flex-shrink: 0;
        }

        /* Content Flex Grid Layout */
        .slide-main-grid {
            display: flex;
            width: 100%;
            max-width: 100%;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
        }

        /* --- LEFT CONTENT COLUMN --- */
        .content-left {
            flex: 1;
            max-width: 480px;
        }

        .tagline-text {
            font-size: 16px;
            letter-spacing: 3px;
            color: #666666;
            font-weight: 600;
            display: block;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .heading-text {
            font-size: 56px;
            font-weight: 700;
            letter-spacing: -0.5px;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

       .description-text {
    font-size: 18px;
    line-height: 28px;
    color: #8e8e93;
    margin-bottom: 20px;
}

        /* Custom Bullet/Check Icons List */
        .features-bullet-list {
            list-style: none;
        }

        .features-bullet-list li {
            font-size: 16px;
            color: #cccccc;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .features-bullet-list .circle-check {
            color: #ffffff;
            font-size: 11px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            width: 20px;
            height: 20px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        /* --- RIGHT VECTOR BLUEPRINT COLUMN --- */
        .content-right {
            flex: 1.3;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .isometric-svg-artwork {
            width: 100%;
            height: auto;
            max-width: 680px;
        }

        /* --- RESPONSIVE OPTIMIZATION --- */
        @media (max-width: 968px) {
            .slide-main-grid {
                flex-direction: column;
                justify-content: center;
                text-align: center;
                gap: 40px;
            }
            
            .heading-text {
                font-size: 38px;
            }
            
            .features-bullet-list li {
                justify-content: center;
            }
        }



        .home-section06 {
            background-color: #000000;
            color: #ffffff;
           overflow: clip;
        }

        .top-spacer {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: #444;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        /* MAIN SCROLL CONTAINER - Iski height decide karti hai scroll kitna slow hoga */
        .scroll-container {
            position: relative;
            width: 100%;
            height: 350vh; 
        }

        /* STICKY TRACK - Yeh section ko viewport me lock rakhta hai */
        .sticky-track {
            position: sticky;
            top: 0;
            height: auto;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 100px 40px;
        }

        /* HEADER */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header .tagline {
            color: #b90c14; 
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 14px;
            display: inline-block;
        }

        .section-header h2 {
            font-size: 54px;
            font-weight: 700;
            letter-spacing: -1.5px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

      .section-header p {
    color: #ffffffbf;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

        /* GRID FOR THE BOXES */
        .grid-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px; 
            width: 100%;
            max-width: 100%;
            padding: 0 20px;
        }

        /* EXACT BOX OUTER CONTAINER */
        .box-wrapper {
            position: relative;
            padding: 12px; 
            /* JavaScript isko smoothly 100vh se 0 tak scroll depth ke mutabik le kar aayega */
            transform: translateY(0vh); 
            will-change: transform;
            border: 1px solid #ffffff1f;
        }

        /* ── PERFECT FRAMER CORNER BRACKETS ── */
        .corner {
            position: absolute;
            width: 12px;
            height: 12px;
            border: 2px solid #fff; 
            z-index: 5;
            pointer-events: none;
        }

        .box-wrapper:hover .corner {
    border-color: #b90c14;
}

.box-wrapper:hover .step-box {
    background-color: #b90c1429;
    border-color: #b90c14;
}

.box-wrapper:hover h3, .box-wrapper:hover p{
color: #b90c14;
}

.box-wrapper:hover .step-box .icon-box svg{
color: #b90c14;
}

        .c-tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
        .c-tr { top: 0; right: 0; border-left: 0; border-bottom: 0; }
        .c-bl { bottom: 0; left: 0; border-right: 0; border-top: 0; }
        .c-br { bottom: 0; right: 0; border-left: 0; border-top: 0; }

        /* THE INNER BOX CONTENT STYLE */
        .step-box {
            background-color: #0f0f0f; 
            border: 0px solid #141414; 
            border-radius: 2px;
            min-height: 500px;
            padding: 90px 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start; 
            text-align: center;
            height: 100%;
        }

        .icon-box {
            color: #858585;
            margin-bottom: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 40px;
        }

        .step-box h3 {
            font-size: 32px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
            color: #ffffff;
        }

      .step-box p {
    font-size: 16px;
    color: #ffffffbf;
    line-height: 1.7;
    font-weight: 400;
    max-width: 100%;
}

        /* ── ACTIVE LAUNCH STATE (GREEN GLOW) ── */
        .box-wrapper.launch-active .corner { border-color: #b90c14; }
        .box-wrapper.launch-active .step-box { background-color: #b90c1429; border-color: #b90c14; }
        .box-wrapper.launch-active .icon-box { color: #b90c14; }
        .box-wrapper.launch-active h3 { color: #b90c14; }
        .box-wrapper.launch-active p { color: #b90c14; opacity: 0.75; }

        /* RESPONSIVE FOR MOBILE */
        @media (max-width: 1024px) {
            .scroll-container { height: auto; }
            .sticky-track { position: relative; height: auto; padding: 60px 20px; }
            .grid-container { grid-template-columns: 1fr; gap: 35px; }
            .box-wrapper { transform: none !important; padding: 0; }
            .corner { display: none; } 
            .step-box { min-height: auto; padding: 40px 20px; }
            .section-header h2 { font-size: 36px; }
        }

        
     
        .home-section07{
            padding: 0;
            background-image: url(media/transparent-lines.png);
            background-size: 30%;
            background-repeat: repeat;
            background-position: center;
 /* Base creamy layout tone */
            width: 100%;
            -webkit-font-smoothing: antialiased;
overflow: clip;
        }

        /* --- STICKY TRACK CONTROLLER MATRIX ---
           Total 300vh space assign ki hai taake scroll bar active ho sake aur drag weight mile.
        */
        .scroll-container-track {
            position: relative;
            width: 100%;
            height: 300vh;
            
    background-color: #000000ad;
        }

        /* Viewport window frame locks up components tightly on scroll */
        .showcase-viewport-window {
            position: sticky;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            pointer-events: none;
        }

        .showcase-container {
            display: grid;
            grid-template-columns: 1.4fr 1fr 60px;
            align-items: center;
            width: 92%;
            max-width: 1700px;
            position: relative;
            pointer-events: auto;
        }

        /* --- VISUAL INTERACTIVE VIEWPORT --- */
        .visual-viewport {
            grid-column: 1 / 2;
            position: relative;
            width: 100%;
            height: 640px;
            display: flex;
            align-items: center;
        }

        /* Main Image Frame Cutout */
        .image-frame {
            position: absolute;
            left: 46%;
            width: 80%;
            height: 100%;
            overflow: hidden;
            box-shadow: 0 40px 80px -25px rgba(0, 0, 0, 0.18);
            background-color: #EFEDE2;
        }

        #ripple-canvas {
            width: 100%;
            height: 100%;
            display: block;
            cursor: pointer;
        }

        /* --- TYPOGRAPHY LAYER --- */
        .title-overlay {
            position: absolute;
            left: 140px;
            z-index: 10;
            pointer-events: none;
            width: 70%;
            mix-blend-mode: difference;
        }

        .mask-line {
            overflow: hidden;
            line-height: 1.05;
        }

        .text-node {
            font-size: 5.4rem;
            font-weight: 700;
            letter-spacing: -2.5px;
            color: #EFEDE2;
            display: block;
            will-change: transform;
            transform: translateY(100%);
            transition: transform 0.65s cubic-bezier(0.76, 0, 0.24, 1);
        }

        .mask-line.active .text-node {
            transform: translateY(0%);
        }

        /* --- RIGHT METADATA PANEL --- */
        .meta-container {
            padding-left: 60px;
            height: 160px; /* Fixed spacing layer bounds */
            position: relative;
            left: 40%;
            display: flex;
            align-items: center;
        }

        .meta-group {
            position: absolute;
            top: 0;
            left: 60px;
            list-style: none;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .meta-group.active {
            opacity: 1;
            pointer-events: auto;
        }

        .meta-mask {
            overflow: hidden;
            margin-bottom: 5px;
        }

        .meta-text {
            font-size: 1.15rem;
            font-weight: 500;
            color: #fff;
            display: block;
            transform: translateY(100%);
            transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .meta-group.active .meta-text {
            transform: translateY(0%);
        }

        .meta-group.active .meta-mask:nth-child(1) .meta-text { transition-delay: 0.05s; }
        .meta-group.active .meta-mask:nth-child(2) .meta-text { transition-delay: 0.1s; }
        .meta-group.active .meta-mask:nth-child(3) .meta-text { transition-delay: 0.15s; }
        .meta-group.active .meta-mask:nth-child(4) .meta-text { transition-delay: 0.2s; }

        /* --- FAR RIGHT TRACK RAIL NAVIGATION --- */
        .navigation-rail {
            display: flex;
            flex-direction: column;
            gap: 12px;
            align-items: flex-end;
            position: relative;
        }

        .sliding-pointer-line {
            width: 15px;
            height: 1px;
            background-color: #fff;
            position: absolute;
            right: 60px;
            top: 16px;
            transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
            transform: translateY(0px);
        }

        .thumb-box {
            width: 44px;
            height: 32px;
            cursor: pointer;
            overflow: hidden;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .thumb-box.active, .thumb-box:hover {
            opacity: 1;
        }

        .thumb-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Mobile Viewport Frameworks */
        @media (max-width: 1024px) {
            .scroll-container-track { height: auto !important; }
            .showcase-viewport-window { position: relative; height: auto; padding: 40px 0; pointer-events: auto; }
            .showcase-container { grid-template-columns: 1fr; gap: 40px; }
            .visual-viewport { height: 400px; }
            .image-frame { left: 0; width: 100%; }
            .title-overlay { width: 100%; mix-blend-mode: normal; text-align: center; left: 0; }
            .text-node { font-size: 3.2rem; color: #000; background: rgba(255,253,240,0.8); }
            .meta-container { padding-left: 0; display: flex; justify-content: center; left: 0; height: auto; }
            .meta-group { left: 0; text-align: center; position: relative; }
            .navigation-rail { flex-direction: row; justify-content: center; }
            .sliding-pointer-line { display: none; }
        }



.home-section08 {
    background-image: url(media/CONTATTI-BLISS-ROMA-MILANO-AGENZIA.webp);
    background-repeat: no-repeat;
    background-size: 63%;
    background-position: center right;
    background-color: #000000;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    overflow-x: hidden;
}

/* Main Main Container Split */
.form-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    width: 100%;
    max-width: 1400px;
    min-height: 650px;
    gap: 40px;
    align-items: center;
}

/* Left Form Box Custom Styling */
.form-section {
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    padding: 35px;
    backdrop-filter: blur(20px);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
    margin-bottom: 16px;
}

.form-group.margin-top {
    margin-top: 16px;
}

/* Labels & Red Asterisk */
label {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    color: #898989;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.required {
    color: #ff3333;
    font-size: 12px;
}

/* Inputs, Textarea, and Select Styles */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
textarea,
select {
width: 100%;
    background-color: #222222;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 18px 20px;
    color: #ffffff;
    font-size: 16px;
    outline: none;
    transition: all 0.2s ease;
}

input::placeholder, textarea::placeholder {
    color: #555555;
}

input:focus, textarea:focus, select:focus {
    border-color: #d5060b;
    background-color: #282828;
}

textarea {
    height: 65px;
    resize: none;
}

/* Custom Select Dropdown Arrow Replacement */
.select-wrapper {
    position: relative;
    width: 100%;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 40px;
    cursor: pointer;
    color: #cccccc;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-top-color: #666666;
    pointer-events: none;
}

/* Submit Button */
.form-section .submit-btn {
    width: 100%;
    height: auto;
    background-image: linear-gradient(269deg, #840004 45%, #d5060b 100%);
    color: #ffffff;
    border: 1px solid #d5060b;
    border-radius: 8px;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.2s ease;
}

.form-section .submit-btn:hover {
    background-image: none;
    background-color: transparent;
    border-color: #b90c14;
}

/* Privacy Checkbox Area */
.privacy-notice {
    margin-top: 20px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    position: relative;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #898989;
    user-select: none;
    padding-left: 24px;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 14px;
    width: 14px;
    background-color: transparent;
    border: 1px solid #444444;
    border-radius: 3px;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #333333;
    border-color: #666666;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 4px;
    top: 1px;
    width: 4px;
    height: 7px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container .text {
    color: #898989;
}

/* Right Side Image & Heading Layer */
.graphic-section {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    /* Is image link ko apni hand image path se replace karein */
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.text-overlay {
    position: relative;
    z-index: 2;
    padding-left: 10px;
}

.graphic-section p {
    font-size: 18px;
    line-height: 28px;
    padding-top: 10px;
    text-shadow: 0 0 10px black;
}

.sub-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #ffffff;
    display: block;
    margin-bottom: 2px;
}

.main-title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -1px;
    color: #ffffff;
    line-height: 1.1;
}

/* Responsive Handling */
@media (max-width: 900px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .graphic-section {
        grid-row: 1;
        min-height: 300px;
        background-position: center;
    }
    
    .text-overlay {
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    .main-title {
        font-size: 32px;
    }
}
/* End Body Section */




/* Start Footer */

/* Outer HUD Container */

div#footer-sec {
    background-color: #020202;
    padding: 50px 20px;
}

.footer-container {
    background-color: #020202;
    border: 1px solid rgba(255, 0, 0, 0.25);
    border-radius: 24px;
    width: 100%;
    max-width: 1500px;
    padding: 60px 50px 30px 50px;
    position: relative;
    box-shadow: inset 0 0 50px rgba(255, 0, 0, 0.03), 0 10px 40px rgba(0, 0, 0, 0.9);
    overflow: hidden;
    margin: 0 auto;
}

/* Core Main Grid Setup */
.footer-main {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1.2fr 1fr 1fr 2fr;
    gap: 30px;
    position: relative;
    z-index: 2;
}

img.footer-vector {
    margin-left: -30px;
}

.logo-area img {
    width: 270px;
}


/* Individual Columns Styles */
.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col.contact-col h3 {
    margin: 0;
}

/* Vertical grid dividers similar to image styling */
.links-col {
border-left: 1px solid rgb(65 1 1 / 67%);
    padding-left: 22px;
    height: 300px;
    margin-top: 0;
}

.fa-angle-right {
    color: #b90c14;
}

span.follow-text:after, .subscribe-box h4:after {
    content: '';
    display: block;
    width: 25px;
    height: 2px;
    background-color: #b90c14;
    margin-top: 8px;
    margin-bottom: 8px;
}

/* Title Header Styles */
.col-title {
    font-size: 18px;
    font-weight: 100;
    color: #ffffff;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    position: relative;
}

/* Red indicator line under headings */
.col-title::after {
    content: '';
    display: block;
    width: 25px;
    height: 2px;
    background-color: #b90c14;
    margin-top: 8px;
}

/* Brand Section (Col 1) Styling */
.logo-area {
    font-size: 38px;
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 12px;
}
.logo-white { color: #ffffff; }
.logo-red { color: #b90c14; }

.tagline {
    font-size: 7.5px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.8px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.tag-line-left, .tag-line-right {
    width: 10px;
    height: 1.5px;
    background-color: #b90c14;
}

.brand-desc {
    
    font-size: 16px;
    line-height: 1.6;
    color: #c4c4c4;
    margin-bottom: 30px;
    font-weight: 300 !important;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-item {
    font-size: 16px;
    font-weight: 500;
    color: #b5b5ba;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item img {
    width: 34px;
    border: 1px solid rgb(65 1 1);
    border-radius: 6px;
    padding: 6px;
    transition: border-color 0.2s;
    box-shadow: inset 0 0 6px rgb(229 0 0);
}

.feature-item img:hover {
    border-color: #b90c14;
}

.feat-icon {
    font-size: 12px;
    color: #b90c14;
    opacity: 0.8;
}

/* Navigation Lists Layout */
.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-links li a {
    color: #8e8e93;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

/* Chevron '>' generation before link text */
/*.nav-links li a::before {*/
/*    content: '>';*/
/*    color: #b90c14;*/
/*    font-size: 12px;*/
/*    margin-right: 10px;*/
/*    font-weight: bold;*/
/*}*/

.nav-links li a:hover {
    color: #b90c14;
}

.contact-icon img {
    width: 18px;
}

/* Right Contact Block Styles */
.contact-block {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-bottom: 30px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.01);
    border-bottom: 1px solid rgb(255 255 255 / 10%);
    padding: 15px 0;
    border-radius: 0;
}

.contact-icon {
    color: #b90c14;
    font-size: 16px;
    width: 32px;
    height: 32px;
    border: 1px solid #410101;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 0, 0.02);
    transition: border-color 0.2s;
    box-shadow: inset 0 0 7px rgb(229 0 0);
}

.contact-info {
    display: flex;
    flex-direction: column;
        padding-left: 5px;
}

.contact-info label {
    font-size: 14px;
    color: #8e8e93;
    font-weight: 600;
    line-height: 21px;
    margin: 0;
}

.contact-info a, .contact-info span {
    font-size: 16px;
    color: #8e8e93;
    text-decoration: none;
    font-weight: 500;
}


.contact-info a:hover{
    color: #b90c14;
}

/* Subscribe Newsletter Block Box */
.subscribe-box {
    background: rgba(255, 0, 0, 0.01);
    border: 1px solid rgb(255 0 0 / 21%);
    padding: 25px;
    border-radius: 12px;
    margin-left: -40px;
}

.subscribe-box h4 {
    font-size: 16px;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.subscribe-box p {
    font-size: 16px;
    line-height: 1.5;
    color: #77777c;
    margin-bottom: 15px;
}

.input-group {
    display: flex;
    background: #09090b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 4px;
}

.input-group input {
    background: none;
    border: none;
    padding: 8px 12px;
    color: #ffffff;
    font-size: 14px;
    width: 100%;
    outline: none;
}

.submit-btn {
    background: transparent;
    border: 1px solid #b90c14;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
        transition: border-color 0.2s;
    box-shadow: inset 0 0 7px rgb(229 0 0);
}

.submit-btn:hover{
       background: #b90c14;
    border: 1px solid #b90c14;
    color: #ffffff; 
}

/* Divider Line element */
.mid-divider {
    margin: 0px -60px 25px -60px;
    position: relative;
}

.hud-dots {
    position: absolute;
    top: -9px;
    left: 15%;
    background: #020202;
    padding: 0 10px;
    color: rgba(255, 0, 0, 0.5);
    font-size: 12px;
    letter-spacing: 2px;
}

/* BOTTOM SECTION STYLING */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.footer-bottom:before {
    content: "";
    width: 140px;
    height: 130px;
    background-image: url(media/footer-copyright-vector02.jpg);
    background-repeat: no-repeat;
    position: absolute;
    left: 170px;
}

.footer-bottom:after {
    content: "";
    width: 80px;
    height: 100px;
    background-image: url(media/footer-copyright-vector01.png);
    background-repeat: no-repeat;
    position: absolute;
    right: 230px;
}

/* Social icons layout Left side */
.bottom-left {
    align-items: center;
    gap: 15px;
    z-index: 1;
}

.follow-text {
    font-size: 16px;
    font-weight: 300 !important;
    color: #ffffff;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-box {
    width: 36px;
    height: 37px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgb(65 1 1);
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border-radius: 6px;
    font-weight: bold;
    transition: border-color 0.2s;
    box-shadow: inset 0 0 7px rgb(229 0 0);
}

.social-box:hover {
    border-color: #b90c14;
}

/* Center HUD Slogan Segment with brackets */
.bottom-center {
    position: relative;
    padding: 12px 35px;
    text-align: center;
}

.slogan-sub {
    font-size: 11px;
    color: #b90c14;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.slogan-main {
    font-size: 26px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 1px;
}

.red-glow {
    color: #b90c14;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}

/* Aesthetic tech target corner brackets */
.corner-bracket {
    position: absolute;
    width: 16px;
    height: 12px;
    border: 2px solid #b90c14;
}

.top-left { top: 0; left: 0; border-right: none; border-bottom: none; }
.top-right { top: 0; right: 0; border-left: none; border-bottom: none; }
.bottom-left { bottom: 0; left: 0; border-right: none; border-top: none; }
.bottom-right { bottom: 0; right: 0; border-left: none; border-top: none; }

/* Copyright element sizing on the right side */
.bottom-right-info p {
    text-align: left;
    font-size: 16px !important;
    color: #c4c4c4 !important;
    line-height: 23px;
}

.heart-icon {
    color: #b90c14;
}

/* Background HUD Graphic Circle Effect simulated */
.hud-circle-element {
    position: absolute;
    bottom: -90px;
    left: -70px;
    width: 240px;
    height: 240px;
    border: 2px dashed rgba(255, 0, 0, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

/* End Footer */

/* Open Trigger Button */
button#openPopupBtn {
    border: none;
    background-color: transparent;
    cursor: pointer;
}
        /* Popup Background Overlay */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.85);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            z-index: 1000;
        }

        /* Popup Active State */
        .popup-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        /* Popup Box */
.popup-box {
    background-color: #ffffff00;
    width: 90%;
    max-width: 100%;
    min-height: 100%;
    border-radius: 15px;
    padding: 25px;
    box-shadow: none;
    position: relative;
    display: flex;
    flex-direction: column;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    justify-content: center;
}

 #imageGallery {
    display: none;
}

        .popup-overlay.active .popup-box {
            transform: scale(1);
        }

        /* Close Button */
        .close-btn {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 30px;
            background: none;
            border: none;
            cursor: pointer;
            color: #fff;
        }

        .close-btn:hover {
            color: #ff0000;
        }

        /* Search Form */
        .search-form {
            display: flex;
            margin-top: 20px;
            margin-bottom: 0px;
        }

        .search-input {
            flex: 1;
            padding: 12px 20px;
            font-size: 16px;
            border: 2px solid #ddd;
            border-radius: 25px 0 0 25px;
            outline: none;
            transition: border-color 0.3s;
        }

        .search-input:focus {
            border-color: #b90c14;
        }

        .search-submit-btn {
    background-image: linear-gradient(269deg, #840004 45%, #d5060b 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 18px 30px;
    border-radius: 8px;
    transition: transform 0.2s ease, background-color 0.2s;
    margin: 0 15px 0 0;
    border: 2px solid #d5060b;
    cursor: pointer;
        }

      .search-submit-btn:hover {
    background-color: #d60000;
    transform: translateY(-2px);
}

        /* Image Results Grid */
        .gallery {
            overflow-y: auto;
            flex: 1;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 15px;
            padding-right: 5px;
        }

        .gallery img {
            width: 100%;
            height: 140px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: transform 0.2s;
        }

        .gallery img:hover {
            transform: scale(1.05);
        }

        /* Loading text */
        .status-text {
            text-align: center;
            color: #666;
            font-style: italic;
            margin-top: 20px;
        }


        <!--Mobile Responsive-->
/* ==========================================================================
   BLACK OX PREMIUM ULTRA-FLUID RESPONSIVE ENGINE (1400px HYPER ENGINE)
   ========================================================================== */

/* --- GLOBAL HARD CONTAINMENT RESET: Kills All Horizontal Layout Breaking --- */
html, body {
    max-width: 100% !important;
    overflow-x: hidden !important;
    position: relative !important;
}

/* Forceful Overflow Lockdown on All Sections to Prevent Hidden Padding/Margin Bleeding */
.header, .hero-banner, .wrapper, .home-section01, .home-section-combine,
.home-section02, .home-section03, .home-section04, .home-section05, .home-section06,
.framer-scroll-container, .scroll-container, .footer {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* --- 1. CRITICAL 1400px EXTRA-LARGE SCREEN BREAKPOINT (NAV & FOOTER BREAK) --- */
@media (max-width: 1400px) {
    .stats-section {
    overflow: hidden;
}

.content-right img {
    width: 800px;
}

.services-accordion-container {
    gap: 40px;
}

    /* Hide Desktop Navigation Completely Before It Touches Items */
    .nav-menu, 
    .bottom-decorative-bar,
    .side-dots {
        display: none !important;
    }

    /* Activate Off-Canvas Sidebar Trigger Menu */
    .menu-trigger-container {
        display: flex !important;
        align-items: center;
        justify-content: center;
        z-index: 1001 !important;
        cursor: pointer;
    }

    /* Fixed Sidebar Layout Positioning Overrides */
    .off-canvas {
        position: fixed !important;
        top: 0 !important;
        bottom: 0 !important;
        left: -320px !important; /* Base offset setup */
        width: 320px !important;
        max-width: 85vw !important;
        height: 100vh !important;
        z-index: 99999 !important;
        overflow-y: auto !important;
        background-color: #030305 !important; /* Premium Dark Background override */
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.7);
    }
    
    .off-canvas.open {
        transform: translateX(320px) !important;
    }

    .off-canvas-nav ul li a {
        color: #ffffff !important;
    }
    .off-canvas-nav ul li a:hover {
        background-color: rgba(185, 12, 20, 0.15) !important;
        color: #b90c14 !important;
    }

    /* Clean Compact Navbar Wrapper Capsule */
    .header-wrapper {
        background-image: none !important; /* Kill the long asset stretch row */
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 14px !important;
        padding: 15px 24px !important;
        max-width: 95% !important;
        margin: 0 auto !important;
    }
    .logo-box {
        padding: 0 !important;
    }
    .logo-box img {
        width: 160px !important;
        height: auto !important;
    }

    /* --- FOOTER 1400px BREAKDOWN MECHANISM --- */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* Breaks the single row row into balanced rows */
        gap: 40px !important;
        width: 100% !important;
    }
    .footer-brand-section {
        grid-column: span 2 !important; /* Gives upper full breathing room */
        text-align: center !important;
        margin-bottom: 20px;
    }
    .footer-brand-section img {
        margin: 0 auto !important;
    }
    
    /* Hero Banner Scaling Optimization */
    .hero-banner {
        background-size: cover !important;
        background-position: center !important;
        padding: 100px 0 !important;
    }
    .hero-container {
        padding: 0 5% !important;
    }
}

/* --- 2. 1000px ADVANCED OVERLAP SHIELD & GRID BLOCK LEVEL ADJUSTMENTS --- */
@media (max-width: 1100px) {
    .footer-main {
    display: block;
}


.links-col {
    border-left: none;
    padding-left: 0;
    height: auto;
    margin-top: 60px;
}

.footer-col {
    margin-top: 60px;
}

.subscribe-box {
    margin-left: 0;
    margin-bottom: 40px;
}


.footer-bottom {
    display: block;
}

.bottom-center {
    margin: 80px 0;
}

.footer-bottom:before {
    left: 400px;
}

    .main-heading {
        font-size: 46px !important;
        line-height: 1.15 !important;
    }

    /* Structural Core Containment Blocks Reset */
    .framework-section, 
    .services-accordion-container, 
    .faq-container,
    .stats-section,
    .scroll-container {
        width: 92% !important;
        max-width: 92% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        overflow: hidden !important;
    }

    /* Converts Services Horizontal Custom Accordion into Stacked Vertical Panels */
    .services-accordion-container {
        flex-direction: column !important;
        min-height: auto !important;
        gap: 20px !important;
    }
    .accordion-tab {
        flex: none !important;
        width: 100% !important;
        flex-direction: column !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    .tab-title-wrapper {
        width: 100% !important;
        flex-direction: row-reverse !important;
        justify-content: space-between !important;
        padding: 18px 15px !important;
        border-left: none !important;
    }
    .tab-heading, .tab-number {
        writing-mode: horizontal-tb !important;
        transform: none !important;
        margin-bottom: 0 !important;
    }
    .tab-content-panel {
        width: 100% !important;
        display: block !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
    }
    .accordion-tab.active {
        flex: none !important;
    }
    .accordion-tab.active .tab-content-panel {
        max-height: 1000px !important;
    }
    .content-inner {
        width: 100% !important;
        padding: 30px 15px !important;
    }

    /* Disengage Unpinned GSAP/Framer Scroll Transforms from Horizontal Track to Safe Vertical Blocks */
    .framer-sticky-window {
        height: auto !important;
        position: relative !important;
        width: 100% !important;
    }
    .framer-slider-track {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        height: auto !important;
        transform: none !important;
    }
    .framer-slide-panel {
        width: 100% !important;
        height: auto !important;
        padding: 60px 0 !important;
    }
    .slide-main-grid {
        flex-direction: column !important;
        gap: 40px !important;
        text-align: center !important;
    }
    
    /* Image Overlap Shield Mechanics */
    .content-right, .image-overlap-zone, .slide-img-box, .panel-image-container {
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        margin-top: 20px !important;
    }
    .content-right img, .slide-img-box img, .panel-image-container img {
        width: 100% !important;
        height: 350px !important;
        object-fit: cover !important;
        border-radius: 12px !important;
    }
}

/* --- 3. IPAD & SMARTPHONE PORTRAIT EXTRA TUNING (<768px) --- */
@media (max-width: 768px) {
    body{
        padding: 0;
    }

        .meta-container {
        display: block;
    }

    .nav-container {
    display: block; 
    }

    .nav-actions {
    justify-content: center;
}

    .menu-trigger-container {
        margin: 20px 0;

    }

    /* Hard Mobile Padding Adjustments to Force Inside Containment Box */
    .wrapper, 
    .home-section01, 
    .home-section02, 
    .home-section04, 
    .home-section06,
    section {
        padding: 50px 16px !important;
        box-sizing: border-box !important;
    }

    /* Core Mobile Scale Framework */
    .main-heading {
        font-size: 32px !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }
    .sub-text {
        font-size: 16px !important;
    }

    /* Hero Layout Action Stacking */
    .cta-actions {
        flex-direction: column !important;
        width: 100% !important;
        gap: 15px !important;
    }
    .btn-solid-red, 
    .btn-outline-white {
        width: 100% !important;
        margin-right: 0 !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 16px 20px !important;
    }

    /* Force Grid Layouts Into Singular Clean Column Tracks */
    .stats-row,
    .footer-grid,
    .faq-main-wrapper,
    .features-inner-grid,
    .grid-container {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    /* Capsule Shaped Gallery Layout Transformation */
    .gallery-container {
        flex-direction: column !important;
        height: auto !important;
        gap: 15px !important;
    }
    .gallery-item {
        width: 100% !important;
        max-width: 100% !important;
        height: 200px !important;
        border-radius: 20px !important;
    }

    /* Stat Counters Centers */
    .stat-number {
        font-size: 52px !important;
        padding-left: 0 !important;
        text-align: center !important;
    }
    .stat-text {
        font-size: 20px !important;
        padding-right: 0 !important;
        text-align: center !important;
    }
    img.shadow-container {
        margin-bottom: -40px !important;
        width: 100% !important;
        position: relative !important;
    }

    /* Mobile Clean Centered Footer Layout Engine */
    .footer {
        padding: 50px 16px 30px 16px !important;
    }
    .footer-brand-section {
        grid-column: span 1 !important; /* Clear iPad double col span */
        text-align: center !important;
    }
    .footer-links-column {
        text-align: center !important;
        align-items: center !important;
        display: flex !important;
        flex-direction: column !important;
    }
    .footer-links-column h4::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    .footer-bottom-bar {
        flex-direction: column !important;
        gap: 15px !important;
        text-align: center !important;
        padding-top: 20px !important;
        margin-top: 30px !important;
    }
    .footer-legal-links {
        justify-content: center !important;
        gap: 15px !important;
    }
}

/* --- 4. MICRO VIEWPORTS SHIELD (Foldables & Mini Screen Devices) --- */
@media (max-width: 380px) {
    .main-heading {
        font-size: 26px !important;
    }
    .logo-box img {
        width: 130px !important;
    }
    .off-canvas {
        width: 100% !important; /* Full fluid modal span on screen tracking mini width */
    }
}
        <!--End Responsive-->
