
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

        :root {
            --primary-orange: #f58220;
            --accent-red: #d11212;
            --dark-bg: #0f172a;
            /* Deep Slate - Very Professional */
            --nav-text: #e2e8f0;
            --btn-depth: #b35d10;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        /* --- Non-Sticky Header --- */
        .main-header {
            position: absolute;
            /* Scroll ke saath upar jayega */
            top: 0;
            left: 0;
            width: 100%;
            background: var(--dark-bg);
            padding: 15px 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .nav-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        /* --- Logo Area --- */
        .logo-box {
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo-box img {
            height: 45px;
            filter: drop-shadow(0 0 5px rgba(245, 130, 32, 0.2));
        }

        /* --- Desktop Menu --- */
        .menu-wrapper {
            display: flex;
            align-items: center;
            list-style: none;
            gap: 35px;
        }

        .menu-link {
            text-decoration: none;
            color: var(--nav-text);
            font-size: 14.5px;
            font-weight: 500;
            letter-spacing: 0.2px;
            transition: all 0.3s ease;
            padding: 8px 0;
            position: relative;
        }

        .menu-link:hover {
            color: var(--primary-orange);
        }

        .menu-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary-orange);
            transition: 0.3s;
            transform: translateX(-50%);
        }

        .menu-link:hover::after {
            width: 100%;
        }

        /* --- Coming Soon Mini Badge --- */
        .mini-badge {
            font-size: 8px;
            background: var(--accent-red);
            color: #fff;
            padding: 2px 6px;
            border-radius: 3px;
            font-weight: 700;
            margin-left: 6px;
            text-transform: uppercase;
            position: absolute;
            top: -5px;
            right: -35px;
        }

        /* --- 3D Professional Button --- */
        .contact-btn-3d {
            background: linear-gradient(180deg, var(--primary-orange) 0%, #e67610 100%);
            color: #fff;
            padding: 12px 26px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 13px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 0px var(--btn-depth);
            transition: all 0.1s;
        }

        .contact-btn-3d:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 0px var(--btn-depth);
        }

        .contact-btn-3d:active {
            transform: translateY(3px);
            box-shadow: 0 1px 0px var(--btn-depth);
        }

        /* --- Hamburger Menu --- */
        .mobile-icon {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 6px;
        }

        .mobile-icon div {
            width: 28px;
            height: 3px;
            background: #fff;
            border-radius: 5px;
        }

        /* --- Responsive --- */
        @media (max-width: 1024px) {
            .menu-wrapper {
                position: fixed;
                top: 0;
                right: -100%;
                width: 300px;
                height: 100vh;
                background: #1a2235;
                flex-direction: column;
                padding-top: 100px;
                transition: 0.5s;
                box-shadow: -15px 0 50px rgba(0, 0, 0, 0.5);
            }

            .menu-wrapper.show {
                right: 0;
            }

            .mobile-icon {
                display: flex;
            }

            .contact-btn-3d {
                margin-top: 20px;
            }
        }

        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap');

        :root {
            --vip-orange: #f58220;
            --vip-red: #d11212;
            --bg-white: #ffffff;
            --bg-light: #f7f7f7;
            --glass-dark: rgba(0, 0, 0, 0.06);
            --text-dark: #111111;
            --text-muted: #666666;
            --border-light: rgba(0, 0, 0, 0.08);
            --shadow-soft: rgba(0, 0, 0, 0.1);
        }

        .vip-showcase {
            position: relative;
            background-color: var(--bg-white);
            min-height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            padding: 100px 5% 80px 5%;
            overflow: hidden;
            font-family: 'Poppins', sans-serif;
        }

        .grid-overlay {
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(0, 0, 0, 0.06) 1px, transparent 1px);
            background-size: 40px 40px;
            z-index: 1;
        }

        .ambient-glow-top {
            position: absolute;
            top: -10%;
            right: -5%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(245, 130, 32, 0.10) 0%, transparent 70%);
            z-index: 1;
        }

        .ambient-glow-bottom {
            position: absolute;
            bottom: -10%;
            left: -5%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(209, 18, 18, 0.06) 0%, transparent 70%);
            z-index: 1;
        }

        .hero-wrapper {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 40px;
            position: relative;
            z-index: 10;
            width: 100%;
        }

        .vip-tag {
            display: inline-flex;
            align-items: center;
            background: rgba(245, 130, 32, 0.08);
            border: 1px solid rgba(245, 130, 32, 0.25);
            padding: 6px 15px;
            border-radius: 50px;
            color: var(--vip-orange);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1.5px;
            margin-bottom: 25px;
        }

        .gold-pulse {
            width: 8px;
            height: 8px;
            background: var(--vip-orange);
            border-radius: 50%;
            margin-right: 10px;
            box-shadow: 0 0 10px var(--vip-orange);
            animation: pulse-ring 2s infinite;
        }

        .main-title {
            font-size: clamp(34px, 5vw, 62px);
            color: var(--text-dark);
            font-weight: 800;
            line-height: 1.08;
            margin-bottom: 25px;
        }

        .main-title span {
            background: linear-gradient(90deg, var(--vip-orange), var(--vip-red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .main-description {
            font-size: 17px;
            color: var(--text-muted);
            line-height: 1.75;
            margin-bottom: 45px;
            max-width: 540px;
        }

        .cta-group {
            display: flex;
            gap: 20px;
            align-items: center;
            margin-bottom: 55px;
        }

        .btn-primary-3d {
            background: linear-gradient(180deg, var(--vip-orange), #e67610);
            color: white;
            text-decoration: none;
            padding: 15px 32px;
            border-radius: 14px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Poppins', sans-serif;
            font-size: 15px;
            box-shadow: 0 6px 0px #b35d10, 0 15px 30px rgba(245, 130, 32, 0.25);
            transition: 0.1s;
        }

        .btn-primary-3d:active {
            transform: translateY(4px);
            box-shadow: 0 2px 0px #b35d10;
        }

        /* Right Side Visual */
        .hero-visual-box {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .perspective-container {
            position: relative;
            width: 100%;
            height: 520px;
            perspective: 2000px;
            transform-style: preserve-3d;
        }

        .central-core {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
        }

        .core-ring {
            width: 220px;
            height: 220px;
            border-radius: 50%;
            border: 2px solid rgba(245, 130, 32, 0.2);
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 60px rgba(245, 130, 32, 0.1);
            animation: ring-pulse 3s ease-in-out infinite;
        }

        .logo-placeholder {
            font-size: 32px;
            font-weight: 800;
            background: linear-gradient(90deg, var(--vip-orange), var(--vip-red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 4px 20px rgba(245, 130, 32, 0.2));
            animation: floating 4s ease-in-out infinite;
            padding: 40px;
            white-space: nowrap;
        }

        .service-float-card {
            position: absolute;
            background: #ffffff;
            backdrop-filter: blur(15px);
            border: 1px solid var(--border-light);
            padding: 18px;
            border-radius: 20px;
            width: 230px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
            animation: card-float 6s ease-in-out infinite;
        }

        .sc-icon {
            font-size: 26px;
            background: rgba(245, 130, 32, 0.08);
            padding: 10px;
            border-radius: 12px;
            border: 1px solid rgba(245, 130, 32, 0.12);
        }

        .sc-info h5 {
            color: var(--text-dark);
            margin: 0 0 2px 0;
            font-size: 14px;
            font-weight: 700;
        }

        .sc-info span {
            color: var(--text-muted);
            font-size: 12px;
        }

        .sc-1 {
            top: 10%;
            right: 0;
            animation-delay: 0s;
        }

        .sc-3 {
            bottom: 12%;
            right: 30px;
            animation-delay: 4s;
        }

        .stat-bubble {
            position: absolute;
            background: var(--text-dark);
            color: white;
            padding: 8px 18px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .sb-1 {
            top: 5%;
            left: 10%;
            animation: floating 5s infinite;
        }

        .sb-2 {
            bottom: 15%;
            left: 0%;
            animation: floating 4.5s infinite reverse;
        }

        /* Store Links */
        .trust-footer {
            border-top: 1px solid var(--border-light);
            padding-top: 28px;
        }

        .platform-labels {
            color: #aaa;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2px;
            margin-bottom: 14px;
        }

        .store-links {
            display: flex;
            gap: 15px;
        }

        .store-icon {
            height: 36px;
          
            /*filter: grayscale(1) opacity(0.5);*/
        }

        .store-icon {
            filter: grayscale(0) opacity(1);
            transform: translateY(-3px);
        }

        /* Keyframes */
        @keyframes pulse-ring {
            0% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(245, 130, 32, 0.6);
            }

            70% {
                transform: scale(1);
                box-shadow: 0 0 0 10px rgba(245, 130, 32, 0);
            }

            100% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(245, 130, 32, 0);
            }
        }

        @keyframes ring-pulse {

            0%,
            100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.5;
            }

            50% {
                transform: translate(-50%, -50%) scale(1.08);
                opacity: 1;
            }
        }

        @keyframes floating {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-14px);
            }
        }

        @keyframes card-float {

            0%,
            100% {
                transform: translateZ(50px) rotateY(-8deg) translateY(0);
            }

            50% {
                transform: translateZ(100px) rotateY(5deg) translateY(-20px);
            }
        }

        @media (max-width: 1024px) {
            .hero-wrapper {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content-box {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .cta-group {
                justify-content: center;
            }

            .store-links {
                justify-content: center;
            }
        }
   
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap');

        .trusted-brands-section {
            --jet-orange: #f58220;
            --jet-red: #d11212;
            --text-dark: #111111;
            background-color: #ffffff;
            padding: 80px 0;
            width: 100%;
            overflow: hidden;
            position: relative;
            font-family: 'Poppins', sans-serif;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .section-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Heading Style */
        .brand-header {
            text-align: center;
            margin-bottom: 50px;
            z-index: 2;
        }

        .brand-header .label {
            color: var(--jet-orange);
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: block;
            margin-bottom: 10px;
        }

        .brand-header h2 {
            color: var(--text-dark);
            font-size: clamp(24px, 5vw, 38px);
            font-weight: 800;
            line-height: 1.2;
        }

        .brand-header h2 span {
            background: linear-gradient(90deg, var(--jet-orange), var(--jet-red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .brand-divider {
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--jet-orange), var(--jet-red));
            border-radius: 10px;
            margin: 15px auto 0;
        }

        /* Slider Wrapper */
        .brand-slider {
            width: 100%;
            position: relative;
            mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
        }

        .brand-track {
            display: flex;
            width: calc(250px * 10);
            /* Adjust based on logo count */
            animation: scrollBrands 30s linear infinite;
        }

        html {
            scroll-behavior: smooth;
        }

        .brand-item {
            width: 250px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 40px;
            flex-shrink: 0;
        }

        .brand-item img {
            max-width: 130px;
            max-height: 50px;
            /*filter: grayscale(1) opacity(0.3);*/
            transition: all 0.4s ease;
        }

        .brand-item img {
            filter: grayscale(0) opacity(1);
            transform: scale(1.1);
        }

        /* Animation */
        @keyframes scrollBrands {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(calc(-250px * 5));
            }
        }

        /* Stop on Hover */
        .brand-slider:hover .brand-track {
            animation-play-state: paused;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .trusted-brands-section {
                padding: 50px 0;
            }

            .brand-header {
                margin-bottom: 30px;
            }

            .brand-item {
                width: 180px;
                padding: 0 25px;
            }

            .brand-item img {
                max-width: 100px;
            }

            @keyframes scrollBrands {
                0% {
                    transform: translateX(0);
                }

                100% {
                    transform: translateX(calc(-180px * 5));
                }
            }
        }
   
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

        .web-ecosystem-vip {
            --jet-orange: #f58220;
            --jet-red: #d11212;
            --primary-gradient: linear-gradient(135deg, #f58220 0%, #d11212 100%);
            --bg-light: #ffffff;
            --text-main: #1a1a1a;

            background-color: var(--bg-light);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
            font-family: 'Poppins', sans-serif;
        }

        /* Subtle Background Decoration */
        .web-ecosystem-vip::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(245, 130, 32, 0.05) 0%, transparent 70%);
            z-index: 0;
        }

        .eco-container {
            max-width: 1250px;
            margin: 0 auto;
            padding: 0 25px;
            position: relative;
            z-index: 1;
        }

        /* HEADER SECTION */
        .ecosystem-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 70px;
        }

        .badge-label {
            color: var(--jet-orange);
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            display: inline-block;
            margin-bottom: 15px;
            padding: 5px 15px;
            background: rgba(245, 130, 32, 0.1);
            border-radius: 50px;
        }

        .main-title {
            font-size: clamp(30px, 5vw, 45px);
            font-weight: 800;
            color: var(--text-main);
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .main-title span {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .sub-title {
            color: #666;
            font-size: 16px;
            line-height: 1.6;
        }

        .title-divider {
            width: 80px;
            height: 5px;
            background: var(--primary-gradient);
            margin: 25px auto 0;
            border-radius: 10px;
        }

        /* ECOSYSTEM GRID */
        .ecosystem-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .eco-card {
            background: #fff;
            border-radius: 24px;
            border: 1px solid rgba(0, 0, 0, 0.06);
            padding: 30px;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            display: flex;
            flex-direction: column;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
        }

        /* Active/Live Card Special Styling */
        .eco-card.active {
            border-color: rgba(245, 130, 32, 0.2);
            box-shadow: 0 20px 40px rgba(245, 130, 32, 0.08);
        }

        .eco-card.active:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(245, 130, 32, 0.15);
        }

        .card-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
        }

        .card-head h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-main);
        }

        /* Status Labels */
        .status-live {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            color: #2ecc71;
            background: rgba(46, 204, 113, 0.1);
            padding: 4px 12px;
            border-radius: 50px;
        }

        .pulse {
            width: 8px;
            height: 8px;
            background: #2ecc71;
            border-radius: 50%;
            box-shadow: 0 0 0 rgba(46, 204, 113, 0.4);
            animation: pulse-green 2s infinite;
        }

        @keyframes pulse-green {
            0% {
                box-shadow: 0 0 0 0px rgba(46, 204, 113, 0.7);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
            }

            100% {
                box-shadow: 0 0 0 0px rgba(46, 204, 113, 0);
            }
        }

        .tag-soon {
            font-size: 12px;
            font-weight: 600;
            color: #888;
            background: #f0f0f0;
            padding: 4px 12px;
            border-radius: 50px;
        }

        /* MOCKUP WINDOW - Bada size */
        .mockup-window {
            background: #f8f9fa;
            border-radius: 12px;
            border: 1px solid #eee;
            overflow: hidden;
            margin-bottom: 25px;
            flex-grow: 1;
        }

        .mockup-top {
            background: #eee;
            padding: 8px 15px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .mock-dots {
            display: flex;
            gap: 5px;
        }

        .mock-dots span {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #ccc;
        }

        .mock-url {
            font-size: 10px;
            color: #999;
            background: #fff;
            padding: 2px 10px;
            border-radius: 4px;
            flex-grow: 1;
            text-align: center;
            font-family: monospace;
        }

        .mockup-body {
            height: 220px;
            /* Bada height */
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: #fafafa;
        }

        .mock-img {
            width: auto;
            height: 100%;
            object-fit: cover;
            /* Image puri fit aur bari dikhegi */
            transition: 0.5s ease;
        }

        .locked {
            filter: grayscale(1);
            opacity: 0.6;
        }

        .lock-icon {
            font-size: 30px;
            opacity: 0.3;
        }

        /* FOOTER */
        .card-footer p {
            font-size: 14px;
            color: #666;
            margin-bottom: 20px;
            min-height: 42px;
        }

        .launch-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--primary-gradient);
            color: white;
            text-decoration: none;
            padding: 12px 24px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 600;
            transition: 0.3s;
            width: 100%;
            justify-content: center;
        }

        .launch-btn:hover {
            transform: scale(1.02);
            filter: brightness(1.1);
        }

        .phase-text {
            font-size: 13px;
            font-weight: 600;
            color: #999;
            text-align: center;
            padding: 10px;
            border: 1px dashed #ddd;
            border-radius: 12px;
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .ecosystem-row {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .web-ecosystem-vip {
                padding: 60px 0;
            }

            .ecosystem-row {
                grid-template-columns: 1fr;
            }

            .mockup-body {
                height: 180px;
            }
        }
   
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

        .premium-ecosystem {
            --jet-orange: #f58220;
            --jet-red: #d11212;
            --text-main: #111111;
            --text-light: #666666;
            --card-bg: #ffffff;

            background-color: #fafafa;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
            font-family: 'Poppins', sans-serif;
        }

        /* Ambient Background Glows */
        .premium-ecosystem::before,
        .premium-ecosystem::after {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            filter: blur(100px);
            z-index: 0;
            pointer-events: none;
        }

        .premium-ecosystem::before {
            background: rgba(245, 130, 32, 0.05);
            top: -10%;
            left: -10%;
        }

        .premium-ecosystem::after {
            background: rgba(209, 18, 18, 0.04);
            bottom: -10%;
            right: -10%;
        }

        .eco-container {
            max-width: 1250px;
            margin: 0 auto;
            padding: 0 25px;
            position: relative;
            z-index: 1;
        }

        /* Section Header */
        .eco-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 70px;
        }

        .eco-badge {
            display: inline-block;
            background: linear-gradient(90deg, rgba(245, 130, 32, 0.1), rgba(209, 18, 18, 0.1));
            color: var(--jet-orange);
            padding: 8px 22px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
            border: 1px solid rgba(245, 130, 32, 0.2);
        }

        .eco-title {
            font-size: clamp(28px, 5vw, 42px);
            font-weight: 800;
            color: var(--text-main);
            line-height: 1.2;
            margin-bottom: 15px;
        }

        .eco-title span {
            background: linear-gradient(90deg, var(--jet-orange), var(--jet-red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .eco-divider {
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--jet-orange), var(--jet-red));
            margin: 20px auto;
            border-radius: 10px;
        }

        /* Pillars Grid */
        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .pillar-card {
            background: var(--card-bg);
            padding: 40px 30px;
            border-radius: 24px;
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
        }

        .pillar-card:hover {
            transform: translateY(-12px) scale(1.02);
            border-color: var(--jet-orange);
            box-shadow: 0 25px 50px rgba(245, 130, 32, 0.1);
        }

        /* Icon Styling */
        .pillar-icon-box {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--jet-orange), var(--jet-red));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            box-shadow: 0 10px 20px rgba(245, 130, 32, 0.2);
            transition: 0.4s;
        }

        .pillar-card:hover .pillar-icon-box {
            transform: rotate(-10deg) scale(1.1);
        }

        .pillar-icon-box svg {
            width: 28px;
            height: 28px;
            stroke: #ffffff;
        }

        .pillar-card h3 {
            font-size: 19px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 12px;
            transition: 0.3s;
        }

        .pillar-card:hover h3 {
            color: var(--jet-orange);
        }

        .pillar-card p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.7;
        }

        /* Bottom Animated Strip */
        .pillar-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--jet-orange), var(--jet-red));
            transition: 0.4s ease;
            transform: translateX(-50%);
            border-radius: 10px;
        }

        .pillar-card:hover::after {
            width: 40%;
        }

        /* Responsive Breakpoints */
        @media (max-width: 1100px) {
            .pillars-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .premium-ecosystem {
                padding: 70px 0;
            }

            .pillars-grid {
                grid-template-columns: 1fr;
            }

            .eco-header {
                margin-bottom: 40px;
            }

            .pillar-card {
                padding: 35px 25px;
            }
        }
   
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

        .industries-section {
            --jet-orange: #f58220;
            --jet-red: #d11212;
            --text-dark: #1a1a1a;
            --bg-soft: #ffffff;

            background-color: var(--bg-soft);
            padding: 90px 0;
            font-family: 'Poppins', sans-serif;
            position: relative;
            overflow: hidden;
        }

        .ind-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        /* Header Styling */
        .ind-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .ind-badge {
            color: var(--jet-orange);
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: block;
            margin-bottom: 10px;
        }

        .ind-title {
            font-size: clamp(26px, 5vw, 40px);
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .ind-title span {
            background: linear-gradient(90deg, var(--jet-orange), var(--jet-red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .ind-divider {
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--jet-orange), var(--jet-red));
            margin: 0 auto;
            border-radius: 10px;
        }

        /* Grid Layout */
        .ind-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }

        .ind-card {
            background: #fff;
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: 20px;
            padding: 35px 20px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .ind-card:hover {
            transform: translateY(-10px);
            border-color: var(--jet-orange);
            box-shadow: 0 20px 40px rgba(245, 130, 32, 0.1);
        }

        /* Icon Container */
        .ind-icon-wrapper {
            width: 70px;
            height: 70px;
            background: #fdf2e9;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: all 0.4s ease;
        }

        .ind-card:hover .ind-icon-wrapper {
            background: linear-gradient(135deg, var(--jet-orange), var(--jet-red));
            transform: scale(1.1);
        }

        .ind-icon-wrapper svg {
            width: 32px;
            height: 32px;
            fill: var(--jet-orange);
            transition: all 0.4s ease;
        }

        .ind-card:hover svg {
            fill: #ffffff;
        }

        .ind-card h3 {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-dark);
            margin-top: 5px;
        }

        /* Responsive Breakpoints */
        @media (max-width: 1024px) {
            .ind-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .ind-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .industries-section {
                padding: 60px 0;
            }
        }

        @media (max-width: 480px) {
            .ind-grid {
                grid-template-columns: 1fr;
            }

            .ind-card {
                padding: 30px;
            }
        }
    
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

        .benefits-section {
            --jet-orange: #f58220;
            --jet-red: #d11212;
            --text-dark: #1a1a1a;
            --text-gray: #555555;

            background: #ffffff;
            padding: 100px 0;
            font-family: 'Poppins', sans-serif;
            position: relative;
        }

        .ben-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 25px;
        }

        /* Header */
        .ben-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .ben-badge {
            background: rgba(245, 130, 32, 0.1);
            color: var(--jet-orange);
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .ben-title {
            font-size: clamp(28px, 4vw, 38px);
            font-weight: 800;
            color: var(--text-dark);
            margin-top: 15px;
        }

        .ben-title span {
            color: var(--jet-orange);
        }

        /* Benefits Grid */
        .ben-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .ben-card {
            padding: 50px 40px;
            border-radius: 30px;
            background: #fafafa;
            border: 1px solid rgba(0, 0, 0, 0.04);
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }

        .ben-card:hover {
            background: #ffffff;
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
            border-color: rgba(245, 130, 32, 0.3);
        }

        /* Icon Circle */
        .ben-icon {
            width: 70px;
            height: 70px;
            background: #fff;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            transition: 0.4s;
        }

        .ben-card:hover .ben-icon {
            background: linear-gradient(135deg, var(--jet-orange), var(--jet-red));
            transform: rotate(-5deg);
        }

        .ben-icon svg {
            width: 32px;
            height: 32px;
            stroke: var(--jet-orange);
            transition: 0.4s;
        }

        .ben-card:hover svg {
            stroke: #fff;
        }

        /* Content */
        .ben-card h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .ben-card p {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.7;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .ben-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .ben-grid {
                grid-template-columns: 1fr;
            }

            .ben-card {
                padding: 40px 30px;
            }

            .benefits-section {
                padding: 70px 0;
            }
        }

        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

        .faq-section {
            --jet-orange: #f58220;
            --jet-red: #d11212;
            --text-main: #111111;
            --text-muted: #555555;

            background-color: #ffffff;
            padding: 100px 0;
            font-family: 'Poppins', sans-serif;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 25px;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .faq-badge {
            color: var(--jet-orange);
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: inline-block;
            margin-bottom: 12px;
            border-bottom: 2px solid var(--jet-orange);
        }

        .faq-title {
            font-size: clamp(30px, 5vw, 40px);
            font-weight: 800;
            color: var(--text-main);
            letter-spacing: -0.5px;
        }

        .faq-title span {
            background: linear-gradient(90deg, var(--jet-orange), var(--jet-red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Modern Accordion */
        .faq-wrapper {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .faq-item {
            background: #fafafa;
            border: 1px solid rgba(0, 0, 0, 0.05);
            border-radius: 20px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-item:hover {
            background: #ffffff;
            border-color: var(--jet-orange);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
        }

        .faq-input {
            display: none;
        }

        .faq-label {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 35px;
            cursor: pointer;
            font-weight: 600;
            font-size: 18px;
            color: var(--text-main);
        }

        .faq-icon-box {
            width: 32px;
            height: 32px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            position: relative;
        }

        .faq-icon-box::before,
        .faq-icon-box::after {
            content: '';
            position: absolute;
            background: var(--jet-orange);
            transition: all 0.3s ease;
        }

        .faq-icon-box::before {
            width: 12px;
            height: 2px;
        }

        .faq-icon-box::after {
            width: 2px;
            height: 12px;
        }

        /* Animation Logic */
        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 0 35px;
            opacity: 0;
        }

        .faq-input:checked~.faq-content {
            max-height: 500px;
            padding: 0 35px 30px;
            opacity: 1;
        }

        .faq-input:checked~.faq-label .faq-icon-box {
            background: var(--jet-orange);
            transform: rotate(135deg);
        }

        .faq-input:checked~.faq-label .faq-icon-box::before,
        .faq-input:checked~.faq-label .faq-icon-box::after {
            background: #ffffff;
        }

        .faq-content p {
            color: var(--text-muted);
            line-height: 1.8;
            font-size: 16px;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            padding-top: 15px;
        }

        @media (max-width: 768px) {
            .faq-label {
                padding: 20px 25px;
                font-size: 16px;
            }

            .faq-content {
                padding: 0 25px;
            }

            .faq-input:checked~.faq-content {
                padding: 0 25px 25px;
            }
        }
    

   
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

        .services-jet-footer {
            --accent-orange: #f58220;
            --accent-red: #d11212;
            --text-color: #555555;
            --heading-color: #1a1a1a;

            /* Background color from the provided image/style */
            background-color: #f4f0f8;
            padding: 80px 0 40px;
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
        }

        .sj-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 25px;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
            gap: 40px;
        }

        /* Branding Column */
        .sj-brand-col .logo {
            font-size: 32px;
            font-weight: 700;
            color: var(--accent-orange);
            margin-bottom: 20px;
            display: inline-block;
            position: relative;
        }

        .sj-brand-col .logo::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--accent-red);
        }

        .sj-brand-col p {
            font-size: 14px;
            line-height: 1.8;
            max-width: 320px;
        }

        /* Column Headings */
        .sj-col h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--heading-color);
            margin-bottom: 30px;
        }

        /* List Items */
        .sj-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .sj-list li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            font-size: 15px;
            transition: 0.3s;
        }

        /* Arrow Icon for Community */
        .sj-list li .arrow {
            color: var(--accent-orange);
            margin-right: 10px;
            font-size: 12px;
            font-weight: bold;
        }

        .sj-list li a {
            text-decoration: none;
            color: var(--text-color);
            transition: 0.3s;
        }

        .sj-list li a:hover {
            color: var(--accent-orange);
        }

        /* Contact Items */
        .sj-contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 18px;
            font-size: 15px;
        }

        .sj-contact-item svg {
            width: 18px;
            height: 18px;
            stroke: var(--accent-orange);
            fill: none;
        }

        /* Social Icons - Offical Colors applied */
        .sj-socials {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .sj-socials a {
            transition: transform 0.3s ease, color 0.3s ease;
            color: #555555;
            /* Default gray as in the image */
        }

        .sj-socials a:hover {
            transform: scale(1.1);
            /* Subtle lift on hover */
        }

        /* Official Colors on Hover */
        .sj-socials .facebook:hover {
            color: #1877F2;
        }

        .sj-socials .twitter:hover {
            color: #1DA1F2;
        }

        .sj-socials .instagram:hover {
            color: #E4405F;
        }

        .sj-socials .youtube:hover {
            color: #FF0000;
        }

        /* Coming Soon Labels */
        .coming-soon {
            font-style: italic;
            opacity: 0.6;
            font-size: 14px;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .sj-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .sj-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .sj-brand-col p,
            .sj-list li,
            .sj-contact-item {
                justify-content: center;
                margin-left: auto;
                margin-right: auto;
            }

            .sj-socials {
                justify-content: center;
            }
        }

        .sj-socials a {
            color: #555555;
        }

        /* Default color */
        .sj-socials .facebook:hover {
            color: #1877F2;
        }

        .sj-socials .instagram:hover {
            color: #E4405F;
        }

        .sj-socials .youtube:hover {
            color: #FF0000;
        }

        .sj-socials .twitter:hover {
            color: #1DA1F2;
        }
   
   
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

        .contact-section {
            --jet-orange: #f58220;
            --jet-red: #d11212;
            --text-dark: #111111;
            --text-gray: #666666;

            padding: 100px 0;
            background-color: #fafafa;
            font-family: 'Poppins', sans-serif;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 25px;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            align-items: center;
        }

        /* Left Side: Info */
        .contact-info h2 {
            font-size: clamp(30px, 5vw, 42px);
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .contact-info h2 span {
            background: linear-gradient(90deg, var(--jet-orange), var(--jet-red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .contact-info p {
            color: var(--text-gray);
            font-size: 16px;
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }

        .info-icon {
            width: 55px;
            height: 55px;
            background: #ffffff;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            transition: 0.3s;
        }

        .info-item:hover .info-icon {
            background: linear-gradient(135deg, var(--jet-orange), var(--jet-red));
        }

        .info-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--jet-orange);
            fill: none;
            transition: 0.3s;
        }

        .info-item:hover svg {
            stroke: #ffffff;
        }

        .info-text h4 {
            font-size: 14px;
            color: var(--text-gray);
            font-weight: 500;
            margin-bottom: 3px;
        }

        .info-text p {
            font-size: 17px;
            color: var(--text-dark);
            font-weight: 700;
            margin-bottom: 0;
        }

        /* Right Side: Form */
        .contact-form-card {
            background: #ffffff;
            padding: 50px;
            border-radius: 30px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.03);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .form-control {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #f0f0f0;
            border-radius: 12px;
            font-family: inherit;
            font-size: 15px;
            transition: all 0.3s ease;
            outline: none;
        }

        .form-control:focus {
            border-color: var(--jet-orange);
            background: #fff;
            box-shadow: 0 0 15px rgba(245, 130, 32, 0.1);
        }

        textarea.form-control {
            height: 120px;
            resize: none;
        }

        .submit-btn {
            width: 100%;
            background: linear-gradient(90deg, var(--jet-orange), var(--jet-red));
            color: #ffffff;
            padding: 18px;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: 0.3s;
            margin-top: 10px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(209, 18, 18, 0.2);
            opacity: 0.95;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .contact-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .contact-info {
                text-align: center;
            }

            .info-item {
                justify-content: center;
                text-align: left;
            }
        }

        @media (max-width: 768px) {
            .contact-section {
                padding: 70px 0;
            }

            .contact-form-card {
                padding: 30px 20px;
            }
        }
  
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

        .final-cta {
            --jet-orange: #f58220;
            --jet-red: #d11212;

            padding: 100px 0;
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, var(--jet-orange) 0%, var(--jet-red) 100%);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        /* Decorative background elements */
        .final-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            filter: blur(80px);
        }

        .final-cta::after {
            content: '';
            position: absolute;
            bottom: -20%;
            right: -5%;
            width: 300px;
            height: 300px;
            background: rgba(0, 0, 0, 0.1);
            border-radius: 50%;
            filter: blur(60px);
        }

        .cta-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 25px;
            position: relative;
            z-index: 5;
        }

        .cta-content h2 {
            font-size: clamp(32px, 6vw, 52px);
            font-weight: 800;
            color: #ffffff;
            line-height: 1.1;
            margin-bottom: 25px;
            letter-spacing: -1px;
        }

        .cta-content p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 45px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        /* Buttons Styling */
        .cta-btns {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: #ffffff;
            color: var(--jet-red);
            padding: 18px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            text-decoration: none;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
            background: #fdfdfd;
        }

        .btn-secondary {
            background: transparent;
            color: #ffffff;
            padding: 18px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            border: 2px solid rgba(255, 255, 255, 0.4);
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #ffffff;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .final-cta {
                padding: 80px 0;
            }

            .cta-content h2 {
                margin-bottom: 20px;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                max-width: 300px;
            }
        }
  