
        /* Emergency visibility fix */
        .service-card,
        .work-item {
            opacity: 1 !important;
        }

        body {
            padding-top: 0 !important;
            margin-top: 0 !important;
        }

        /* Pause CSS animations on off-screen sections */
        .section-offscreen * {
            animation-play-state: paused !important;
        }

        /* SCROLL ANIMATION - Desktop only, with safe values */
        .nav-logo-section {
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        }

        .nav-cta-btn {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        }

        /* Large screens (1561px+) - Slide animation */
        @media (min-width: 1561px) {
            .nav-container.scrolled-down .nav-logo-section {
                transform: translateX(calc(-28vw + 120px)) !important;
            }

            .nav-container.scrolled-down .nav-cta-btn {
                transform: translateX(calc(28vw - 120px)) !important;
            }

            .nav-container.scrolled-down .nav-cta-btn:hover {
                transform: translateX(calc(28vw - 120px)) translateY(-2px) !important;
            }
        }

        /* Screens 1560px and below - NO slide animation */
        @media (max-width: 1560px) {
            .nav-container.scrolled-down .nav-logo-section {
                transform: none !important;
            }

            .nav-container.scrolled-down .nav-cta-btn {
                transform: none !important;
            }

            .nav-container.scrolled-down .nav-cta-btn:hover {
                transform: translateY(-2px) !important;
            }
        }

        /* Codenest Logo Styling */
        .nav-logo-link {
            font-family: 'Fredoka', sans-serif !important;
            color: #e22b00 !important;
            font-weight: 600 !important;
            font-size: 2rem !important;
        }

        /* Logo Image Styling */
        .nav-logo-image {
            width: 50px !important;
            height: 50px !important;
            border-radius: 50% !important;
            overflow: hidden !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            background: #e22b00 !important;
            margin-left: 12px !important;
            box-shadow: 0 2px 8px rgba(226, 43, 0, 0.3) !important;
        }

        .nav-logo-image img {
            width: 100% !important;
            height: 100% !important;
            object-fit: cover !important;
        }


        /* FIX: Center scroll to explore text */
        .hero-scroll {
            left: 50% !important;
            transform: translateX(-50%) !important;
        }

        /* Hero Background Image */
        .hero {
            background: linear-gradient(180deg, #111118 0%, #161622 50%, #111118 100%) !important;
            padding-top: 8rem !important;
            padding-bottom: 4rem !important;
            margin-top: 0 !important;
            position: relative !important;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding-top: 2rem !important;
        }

        /* Interactive Hero Background */
        .hero-interactive-bg {
            position: absolute;
            inset: 0;
            z-index: 1;
            overflow: hidden;
        }

        #heroCanvas {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
        }

        .hero-grid-pattern {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 70px 70px;
            -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
            mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
        }

        .hero-symbol {
            position: absolute;
            left: var(--x);
            top: var(--y);
            font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
            font-size: var(--fs, 1.1rem);
            font-weight: 700;
            color: rgba(226,43,0, var(--op, 0.5));
            pointer-events: none;
            animation: heroSymbolDrift var(--dur) ease-in-out infinite;
            animation-delay: var(--delay, 0s);
            text-shadow: 0 0 25px rgba(226,43,0,0.35);
        }

        @keyframes heroSymbolDrift {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            25% { transform: translateY(-18px) rotate(3deg); }
            50% { transform: translateY(8px) rotate(-2deg); }
            75% { transform: translateY(-10px) rotate(1deg); }
        }

        .hero-ring-deco {
            position: absolute;
            left: var(--x);
            top: var(--y);
            width: var(--size);
            height: var(--size);
            border: 1.5px solid rgba(255,255,255,0.15);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            animation: heroRingSpin var(--dur) linear infinite;
            animation-direction: var(--dir, normal);
        }

        .hero-ring-deco::before {
            content: '';
            position: absolute;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #e22b00;
            box-shadow: 0 0 20px rgba(226,43,0,0.8), 0 0 50px rgba(226,43,0,0.4);
            top: -4px;
            left: 50%;
            transform: translateX(-50%);
        }

        @keyframes heroRingSpin {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .hero-glow-orb {
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255,77,26,0.3) 0%, rgba(226,43,0,0.15) 40%, transparent 70%);
            pointer-events: none;
            transform: translate(-50%, -50%);
            transition: left 0.4s ease-out, top 0.4s ease-out;
            will-change: left, top;
        }

        .hero-hex {
            position: absolute;
            left: var(--x);
            top: var(--y);
            width: var(--size, 40px);
            height: var(--size, 40px);
            border: 1.5px solid rgba(255,255,255,0.15);
            transform: rotate(45deg);
            border-radius: 4px;
            animation: heroHexPulse var(--dur, 8s) ease-in-out infinite;
            animation-delay: var(--delay, 0s);
        }

        @keyframes heroHexPulse {
            0%, 100% { opacity: 0.6; transform: rotate(45deg) scale(1); }
            50% { opacity: 1; transform: rotate(45deg) scale(1.2); border-color: rgba(226,43,0,0.4); box-shadow: 0 0 15px rgba(226,43,0,0.15); }
        }

        @media (max-width: 768px) {
            .hero-symbol { font-size: 0.85rem; }
            .hero-ring-deco { display: none; }
            .hero-hex { display: none; }
            .hero-grid-pattern { background-size: 50px 50px; }
        }

        /* Featured Projects Section Background Image */
        .work {
            background-image: linear-gradient(135deg,
                    rgba(226, 43, 0, 0.88) 0%,
                    rgba(192, 36, 0, 0.85) 50%,
                    rgba(226, 43, 0, 0.88) 100%), url('images/project.png') !important;
            background-size: cover !important;
            background-position: center !important;
            background-attachment: fixed !important;
            position: relative;
        }

        /* Service Accordion Styles */
        .services-grid {
            align-items: start !important;
            grid-auto-rows: auto;
        }

        .service-card {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: auto;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .service-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0.5rem 0;
        }

        .service-header:hover {
            transform: translateX(5px);
        }

        .service-expand-icon {
            margin-left: auto;
            transition: transform 0.3s ease;
            color: var(--primary-color);
            flex-shrink: 0;
        }

        [data-service-accordion].expanded .service-expand-icon {
            transform: rotate(180deg);
        }

        .service-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease,
                padding 0.3s ease,
                margin 0.3s ease;
            opacity: 0;
            padding: 0;
            margin: 0;
        }

        [data-service-accordion].expanded .service-content {
            max-height: 500px;
            opacity: 1;
            padding: 1rem 0;
            margin-top: 0.5rem;
        }

        [data-service-accordion].collapsed .service-content {
            max-height: 0;
            opacity: 0;
            padding: 0;
            margin: 0;
        }

        [data-service-accordion].expanded {
            background: rgba(60, 45, 40, 0.96);
            border-color: var(--primary-color);
        }

        /* Prevent grid layout issues - disable hover transform on accordion cards */
        [data-service-accordion]:hover {
            transform: none !important;
        }

        [data-service-accordion] .service-header:hover {
            background: rgba(226, 43, 0, 0.02);
            border-radius: 10px;
        }

        /* Smooth grid transitions for cards below expanded ones */
        .services-grid>* {
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* ===== SERVICES SECTION NEW LOOK ===== */
        @property --svc-border-angle {
            syntax: '<angle>';
            initial-value: 0deg;
            inherits: false;
        }

        .services {
            background: linear-gradient(180deg, #0a0a14 0%, #0d0d1a 50%, #0a0a14 100%) !important;
            position: relative;
            overflow: hidden;
        }

        .services-interactive-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
        }

        #servicesCanvas {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
        }

        .services .container {
            position: relative;
            z-index: 2;
        }

        /* Floating geometric shapes */
        .services-float-shape {
            position: absolute;
            border: 1.5px solid rgba(226, 43, 0, 0.18);
            pointer-events: none;
            z-index: 1;
        }

        .services-float-shape.s-circle {
            border-radius: 50%;
            animation: svcShapeFloat 10s ease-in-out infinite;
            box-shadow: 0 0 15px rgba(226, 43, 0, 0.06);
        }

        .services-float-shape.s-diamond {
            transform: rotate(45deg);
            animation: svcShapeFloat 12s ease-in-out infinite reverse;
            box-shadow: 0 0 12px rgba(226, 43, 0, 0.05);
        }

        .services-float-shape.s-ring {
            border-radius: 50%;
            border-width: 2px;
            animation: svcShapeFloat 14s ease-in-out infinite;
            box-shadow: 0 0 18px rgba(226, 43, 0, 0.06);
        }

        @keyframes svcShapeFloat {
            0%, 100% { transform: translateY(0); opacity: 0.4; }
            50% { transform: translateY(-25px); opacity: 1; }
        }

        .services-float-shape.s-diamond {
            animation-name: svcDiamondFloat;
        }

        @keyframes svcDiamondFloat {
            0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.4; }
            50% { transform: rotate(45deg) translateY(-20px); opacity: 1; }
        }

        /* Grid layout: 3 top + 2 centered bottom */
        .services-grid {
            display: grid !important;
            grid-template-columns: repeat(6, 1fr) !important;
            gap: 1.5rem !important;
            align-items: start !important;
            grid-auto-rows: auto !important;
        }

        .service-card:nth-child(1) { grid-column: 1 / 3; }
        .service-card:nth-child(2) { grid-column: 3 / 5; }
        .service-card:nth-child(3) { grid-column: 5 / 7; }
        .service-card:nth-child(4) { grid-column: 2 / 4; }
        .service-card:nth-child(5) { grid-column: 4 / 6; }

        /* Enhanced card design */
        .service-card {
            background: rgba(55, 42, 38, 0.94) !important;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(226, 43, 0, 0.1) !important;
            border-radius: 20px !important;
            padding: 2rem 2rem 2.5rem !important;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
            height: auto !important;
            cursor: default;
        }

        /* Animated conic-gradient border */
        .service-card-border {
            position: absolute;
            inset: 0;
            border-radius: 20px;
            padding: 1px;
            background: conic-gradient(from var(--svc-border-angle), transparent 0%, transparent 60%, rgba(226,43,0,0.7) 75%, rgba(255,77,26,0.5) 85%, rgba(255,120,50,0.3) 92%, transparent 100%);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
            z-index: 3;
        }

        .service-card:hover .service-card-border {
            opacity: 1;
            animation: svcBorderSpin 3s linear infinite;
        }

        @keyframes svcBorderSpin {
            to { --svc-border-angle: 360deg; }
        }

        /* Card internal glow following mouse */
        .service-card-glow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 20px;
            background: radial-gradient(circle 200px at var(--glow-x, 50%) var(--glow-y, 50%), rgba(226,43,0,0.14) 0%, rgba(255,77,26,0.05) 40%, transparent 70%);
            pointer-events: none;
            z-index: 1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-card:hover .service-card-glow {
            opacity: 1;
        }

        /* Card hover state */
        .service-card:hover {
            transform: translateY(-6px) !important;
            border-color: rgba(226, 43, 0, 0.25) !important;
            box-shadow:
                0 25px 60px rgba(0, 0, 0, 0.4),
                0 0 40px rgba(226, 43, 0, 0.1),
                0 0 80px rgba(226, 43, 0, 0.04),
                inset 0 1px 0 rgba(255, 120, 50, 0.08) !important;
            background: rgba(65, 48, 42, 0.97) !important;
        }

        /* Number badge - hidden */
        .service-card-num {
            display: none;
        }

        /* Enhanced icon with ring */
        .service-icon {
            position: relative;
            z-index: 2;
            background: linear-gradient(135deg, rgba(226, 43, 0, 0.22), rgba(255, 77, 26, 0.12)) !important;
            border: 1px solid rgba(226, 43, 0, 0.25);
            border-radius: 16px !important;
            width: 64px !important;
            height: 64px !important;
            margin-bottom: 1.25rem !important;
            transition: all 0.4s ease;
            box-shadow: 0 0 15px rgba(226, 43, 0, 0.08);
            color: #e22b00 !important;
        }

        .service-icon svg {
            stroke: #ff6a3a !important;
            fill: none !important;
            filter: drop-shadow(0 0 5px rgba(226, 43, 0, 0.35));
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon svg {
            stroke: #fff !important;
            filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.25));
        }

        .service-card:hover .service-icon {
            background: linear-gradient(135deg, #e22b00, #ff4d1a) !important;
            border-color: rgba(255, 77, 26, 0.6);
            box-shadow: 0 0 30px rgba(226, 43, 0, 0.3), 0 0 60px rgba(226, 43, 0, 0.1);
        }

        .service-icon-ring {
            position: absolute;
            inset: -5px;
            border-radius: 20px;
            border: 1.5px solid transparent;
            border-top-color: rgba(226, 43, 0, 0.55);
            border-right-color: rgba(226, 43, 0, 0.2);
            animation: serviceRingSpin 4s linear infinite;
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

        .service-card:hover .service-icon-ring {
            opacity: 1;
        }

        @keyframes serviceRingSpin {
            to { transform: rotate(360deg); }
        }

        /* Title */
        .service-card .service-title {
            position: relative;
            z-index: 2;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            transition: color 0.3s ease;
        }

        .service-card:hover .service-title {
            color: #fff;
            text-shadow: 0 0 20px rgba(226, 43, 0, 0.15);
        }

        /* Description */
        .service-card .service-description {
            position: relative;
            z-index: 2;
            color: rgba(255, 220, 200, 0.5);
            font-size: 0.9rem;
            line-height: 1.7;
            margin-bottom: 1.25rem;
        }

        /* Service list as tags */
        .service-card .service-list {
            position: relative;
            z-index: 2;
            display: flex;
            flex-wrap: wrap;
            gap: 0.45rem;
        }

        .service-card .service-list li {
            padding: 0.3rem 0.8rem !important;
            padding-left: 0.8rem !important;
            background: rgba(226, 43, 0, 0.08);
            border: 1px solid rgba(226, 43, 0, 0.16);
            border-radius: 20px;
            font-size: 0.78rem;
            color: rgba(255, 180, 140, 0.7) !important;
            transition: all 0.3s ease;
            position: relative;
        }

        .service-card .service-list li::before {
            display: none !important;
        }

        .service-card:hover .service-list li {
            background: rgba(226, 43, 0, 0.15);
            border-color: rgba(226, 43, 0, 0.3);
            color: rgba(255, 200, 170, 0.9) !important;
            box-shadow: 0 0 10px rgba(226, 43, 0, 0.06);
        }

        /* Bottom accent bar */
        .service-card-bar {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, #e22b00, #ff4d1a, #ff7043, transparent);
            transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border-radius: 2px;
            z-index: 3;
        }

        .service-card:hover .service-card-bar {
            width: 70%;
        }

        /* ---- Collapsed state (default) ---- */
        .service-header {
            cursor: pointer !important;
            padding: 0.25rem 0 !important;
            gap: 1rem !important;
            flex-direction: row;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .service-header:hover {
            transform: none !important;
            background: rgba(226, 43, 0, 0.03) !important;
            border-radius: 12px;
        }

        /* Expand indicator (chevron via CSS) */
        .service-header::after {
            content: '';
            width: 10px;
            height: 10px;
            border-right: 2px solid rgba(226, 43, 0, 0.5);
            border-bottom: 2px solid rgba(226, 43, 0, 0.5);
            transform: rotate(45deg);
            margin-left: auto;
            flex-shrink: 0;
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.3s ease;
        }

        .service-header:hover::after {
            border-color: rgba(226, 43, 0, 0.8);
        }

        /* Hide original expand icon SVG */
        .service-expand-icon {
            display: none !important;
        }

        /* Collapsed icon: smaller, inline */
        [data-service-accordion].collapsed .service-icon,
        .service-card:not(.expanded) .service-icon {
            width: 48px !important;
            height: 48px !important;
            margin-bottom: 0 !important;
        }

        /* Collapsed content: hidden */
        .service-content {
            max-height: 0 !important;
            opacity: 0 !important;
            overflow: hidden !important;
            padding: 0 !important;
            margin: 0 !important;
            transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                        opacity 0.4s ease 0.05s,
                        padding 0.4s ease,
                        margin 0.4s ease;
        }

        [data-service-accordion].collapsed .service-content {
            max-height: 0 !important;
            opacity: 0 !important;
            padding: 0 !important;
            margin: 0 !important;
        }

        /* Collapsed card: compact */
        [data-service-accordion].collapsed,
        .service-card:not(.expanded) {
            padding: 1.25rem 1.75rem !important;
        }

        /* ---- Expanded state ---- */
        [data-service-accordion].expanded {
            padding: 2rem 2rem 2.5rem !important;
            background: rgba(60, 45, 40, 0.96) !important;
            border-color: rgba(226, 43, 0, 0.2) !important;
            box-shadow:
                0 20px 50px rgba(0, 0, 0, 0.35),
                0 0 35px rgba(226, 43, 0, 0.08) !important;
        }

        [data-service-accordion].expanded .service-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 0 !important;
            margin-bottom: 0.25rem;
        }

        [data-service-accordion].expanded .service-header::after {
            position: absolute;
            top: 0.5rem;
            right: 0;
            transform: rotate(-135deg);
            border-color: rgba(226, 43, 0, 0.7);
        }

        [data-service-accordion].expanded .service-icon {
            width: 64px !important;
            height: 64px !important;
            margin-bottom: 1.25rem !important;
        }

        [data-service-accordion].expanded .service-content {
            max-height: 500px !important;
            opacity: 1 !important;
            padding: 0.75rem 0 0 !important;
            margin: 0 !important;
            overflow: visible !important;
        }

        /* Stagger list items on expand */
        .service-content .service-list li {
            opacity: 0;
            transform: translateY(8px);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        [data-service-accordion].expanded .service-content .service-list li {
            opacity: 1;
            transform: translateY(0);
        }

        [data-service-accordion].expanded .service-content .service-list li:nth-child(1) { transition-delay: 0.12s; }
        [data-service-accordion].expanded .service-content .service-list li:nth-child(2) { transition-delay: 0.18s; }
        [data-service-accordion].expanded .service-content .service-list li:nth-child(3) { transition-delay: 0.24s; }
        [data-service-accordion].expanded .service-content .service-list li:nth-child(4) { transition-delay: 0.30s; }

        /* Expanded card shows bottom bar */
        [data-service-accordion].expanded .service-card-bar {
            width: 60%;
        }

        /* Expanded card shows icon ring */
        [data-service-accordion].expanded .service-icon-ring {
            opacity: 1;
        }

        /* Expanded card shows border glow */
        [data-service-accordion].expanded .service-card-border {
            opacity: 0.7;
            animation: svcBorderSpin 3s linear infinite;
        }

        /* Override accordion hover */
        [data-service-accordion]:hover {
            transform: translateY(-4px) !important;
        }

        [data-service-accordion].expanded:hover {
            transform: translateY(-6px) !important;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }

            .service-card:nth-child(1),
            .service-card:nth-child(2),
            .service-card:nth-child(3),
            .service-card:nth-child(4),
            .service-card:nth-child(5) {
                grid-column: auto !important;
            }

            .service-card:nth-child(5) {
                grid-column: 1 / -1 !important;
                max-width: 50%;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr !important;
                gap: 1.25rem !important;
            }

            .service-card:nth-child(5) {
                max-width: 100% !important;
            }

            .service-card-num {
                font-size: 2.5rem;
            }

            [data-service-accordion].collapsed,
            .service-card:not(.expanded) {
                padding: 1rem 1.25rem !important;
            }

            [data-service-accordion].expanded {
                padding: 1.5rem 1.5rem 2rem !important;
            }
        }

        /* Animated Scrolling Title */
        .scrolling-title-wrapper {
            width: 100%;
            overflow: hidden;
            padding: 3rem 0;
            margin-bottom: 2rem;
        }

        .scrolling-title-container {
            width: 100%;
            position: relative;
        }

        .scrolling-title-track {
            display: flex;
            width: fit-content;
            animation: scroll-left 20s linear infinite;
            will-change: transform;
        }

        .scrolling-title-item {
            display: inline-flex;
            align-items: center;
            white-space: nowrap;
            padding: 0 2rem;
        }

        .scrolling-title-text {
            font-size: clamp(3rem, 10vw, 8rem);
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: -0.02em;
            line-height: 1;
        }

        .scrolling-title-dot {
            width: clamp(1rem, 3vw, 2rem);
            height: clamp(1rem, 3vw, 2rem);
            background: var(--primary-color);
            border-radius: 50%;
            margin-left: 2rem;
            flex-shrink: 0;
        }

        @keyframes scroll-left {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* Pause animation on hover */
        .scrolling-title-wrapper:hover .scrolling-title-track {
            animation-play-state: paused;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .scrolling-title-wrapper {
                padding: 2rem 0;
            }

            .scrolling-title-item {
                padding: 0 1.5rem;
            }

            .scrolling-title-dot {
                margin-left: 1.5rem;
            }
        }

        /* Portfolio Scroll */
        .portfolio-scroll-wrapper {
            overflow-x: auto;
            overflow-y: hidden;
            width: 100%;
            position: relative;
            padding: 1rem 0 2rem;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .portfolio-scroll-wrapper::-webkit-scrollbar {
            display: none;
        }

        .portfolio-carousel::before,
        .portfolio-carousel::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 80px;
            z-index: 2;
            pointer-events: none;
        }

        .portfolio-carousel::before {
            left: 0;
            background: linear-gradient(to right, var(--dark-bg, #0a0a0a), transparent);
        }

        .portfolio-carousel::after {
            right: 0;
            background: linear-gradient(to left, var(--dark-bg, #0a0a0a), transparent);
        }

        .portfolio-grid {
            display: flex;
            gap: 2rem;
            width: max-content;
        }

        @keyframes portfolioScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .portfolio-card {
            flex: 0 0 440px;
            background: rgba(10, 10, 10, 0.85);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
            backdrop-filter: blur(16px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
            cursor: pointer;
        }

        .portfolio-card:hover {
            transform: translateY(-10px);
            border-color: rgba(255, 255, 255, 0.35);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
            background: rgba(10, 10, 10, 0.95);
        }

        .portfolio-image {
            position: relative;
            width: 100%;
            height: 260px;
            overflow: hidden;
        }

        .portfolio-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .portfolio-card:hover .portfolio-image img {
            transform: scale(1.08);
        }

        .portfolio-overlay {
            position: absolute;
            top: 1rem;
            left: 1rem;
            z-index: 2;
        }

        .portfolio-category {
            display: inline-block;
            padding: 0.4rem 1rem;
            background: rgba(226, 43, 0, 0.9);
            color: white;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            backdrop-filter: blur(5px);
        }

        .portfolio-info {
            padding: 1.75rem;
        }

        .portfolio-title {
            font-size: 1.35rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.75rem;
        }

        .portfolio-desc {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.7;
            margin-bottom: 1.25rem;
        }

        .portfolio-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .portfolio-tag {
            padding: 0.35rem 0.85rem;
            background: rgba(255, 255, 255, 0.12);
            color: rgba(255, 255, 255, 0.9);
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
            border: 1px solid rgba(255, 255, 255, 0.18);
        }

        @media (max-width: 768px) {
            .portfolio-card {
                flex: 0 0 340px;
            }

            .portfolio-carousel::before,
            .portfolio-carousel::after {
                width: 40px;
            }

            .portfolio-grid {
                animation-duration: 25s;
            }
        }

        /* Project Detail Modal */
        .project-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.75);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            padding: 2rem;
        }

        .project-modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .project-modal {
            background: #111111;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 24px;
            max-width: 920px;
            width: 100%;
            max-height: 88vh;
            overflow-y: auto;
            position: relative;
            transform: translateY(30px) scale(0.95);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 80px rgba(226, 43, 0, 0.08);
        }

        .project-modal-overlay.active .project-modal {
            transform: translateY(0) scale(1);
        }

        .project-modal::-webkit-scrollbar {
            width: 6px;
        }

        .project-modal::-webkit-scrollbar-track {
            background: transparent;
        }

        .project-modal::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.15);
            border-radius: 3px;
        }

        .project-modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: none;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(8px);
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .project-modal-close:hover {
            background: rgba(226, 43, 0, 0.8);
            transform: rotate(90deg);
        }

        .project-modal-image {
            position: relative;
            width: 100%;
            height: 240px;
            overflow: hidden;
            border-radius: 24px 24px 0 0;
        }

        .project-modal-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .project-modal-category {
            position: absolute;
            bottom: 1rem;
            left: 1.5rem;
            padding: 0.4rem 1.2rem;
            background: rgba(226, 43, 0, 0.9);
            color: white;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .project-modal-body {
            padding: 2rem;
        }

        .project-modal-title {
            font-size: 1.6rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 0.75rem;
        }

        .project-modal-desc {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.75;
            margin-bottom: 1.5rem;
        }

        .project-modal-detail {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            padding: 1rem 1.25rem;
            background: rgba(255, 255, 255, 0.04);
            border-left: 3px solid #e22b00;
            border-radius: 0 10px 10px 0;
        }

        .project-modal-features {
            margin-bottom: 1.5rem;
        }

        .project-modal-features h4 {
            font-size: 0.95rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.75rem;
        }

        .project-modal-features ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.5rem;
        }

        .project-modal-features li {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.75);
            padding: 0.5rem 0;
            padding-left: 1.25rem;
            position: relative;
        }

        .project-modal-features li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 6px;
            background: #e22b00;
            border-radius: 50%;
        }

        .project-modal-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .project-modal-tags .portfolio-tag {
            padding: 0.4rem 1rem;
            background: rgba(226, 43, 0, 0.12);
            color: #ff6b47;
            border: 1px solid rgba(226, 43, 0, 0.25);
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .project-modal-overlay {
                padding: 1rem;
                align-items: flex-end;
            }

            .project-modal {
                max-height: 90vh;
                border-radius: 20px 20px 0 0;
            }

            .project-modal-image {
                height: 180px;
                border-radius: 20px 20px 0 0;
            }

            .project-modal-body {
                padding: 1.5rem;
            }

            .project-modal-features ul {
                grid-template-columns: 1fr;
            }

            .project-modal-title {
                font-size: 1.3rem;
            }
        }

        /* Agile Methodology Popup */
        .agile-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.75);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.35s ease;
        }

        .agile-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .agile-popup {
            background: linear-gradient(160deg, #0d0d0d 0%, #1a1018 100%);
            border: 1px solid rgba(226, 43, 0, 0.15);
            border-radius: 28px;
            max-width: 780px;
            width: 100%;
            max-height: 92vh;
            overflow-y: auto;
            position: relative;
            padding: 2.5rem 2.5rem 2rem;
            transform: translateY(40px) scale(0.92);
            transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 80px rgba(226, 43, 0, 0.05);
        }

        .agile-overlay.active .agile-popup {
            transform: translateY(0) scale(1);
        }

        .agile-popup::-webkit-scrollbar { width: 5px; }
        .agile-popup::-webkit-scrollbar-thumb { background: rgba(226,43,0,0.3); border-radius: 3px; }

        .agile-close {
            position: absolute;
            top: 1.25rem;
            right: 1.25rem;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.1);
            background: rgba(255,255,255,0.05);
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 2;
        }

        .agile-close:hover {
            background: rgba(226,43,0,0.8);
            border-color: transparent;
            transform: rotate(90deg);
        }

        /* Header */
        .agile-header {
            text-align: center;
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease 0.15s;
        }

        .agile-overlay.active .agile-header {
            opacity: 1;
            transform: translateY(0);
        }

        .agile-header h2 {
            font-size: 1.65rem;
            font-weight: 800;
            color: white;
            margin-bottom: 0.5rem;
        }

        .agile-header p {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.45);
            line-height: 1.7;
            max-width: 500px;
            margin: 0 auto;
        }

        /* ---- Closed Loop Cycle ---- */
        .agile-loop {
            position: relative;
            width: 420px;
            height: 420px;
            margin: 0 auto 1.5rem;
        }

        /* SVG ring */
        .agile-ring {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
        }

        .agile-ring-bg {
            fill: none;
            stroke: rgba(255,255,255,0.06);
            stroke-width: 2;
        }

        .agile-ring-progress {
            fill: none;
            stroke: url(#agileGrad);
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-dasharray: 1068;
            stroke-dashoffset: 1068;
            transition: stroke-dashoffset 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
        }

        .agile-overlay.active .agile-ring-progress {
            stroke-dashoffset: 0;
        }

        /* Arrow marker on the ring */
        .agile-ring-arrow {
            fill: none;
            stroke: #ff4d1a;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            opacity: 0;
            transition: opacity 0.4s ease 2s;
        }

        .agile-overlay.active .agile-ring-arrow {
            opacity: 1;
        }

        /* Center label */
        .agile-loop-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            opacity: 0;
            transition: opacity 0.5s ease 0.6s;
        }

        .agile-overlay.active .agile-loop-center {
            opacity: 1;
        }

        .agile-loop-center-icon {
            width: 52px;
            height: 52px;
            margin: 0 auto 0.5rem;
            background: linear-gradient(135deg, #e22b00, #ff4d1a);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            box-shadow: 0 6px 24px rgba(226,43,0,0.35);
        }

        .agile-loop-center span {
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(255,255,255,0.4);
        }

        /* Nodes around the loop */
        .agile-node {
            position: absolute;
            width: 56px;
            height: 56px;
            margin-left: -28px;
            margin-top: -28px;
            border-radius: 50%;
            background: #161616;
            border: 2px solid rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 800;
            color: white;
            cursor: pointer;
            z-index: 3;
            opacity: 0;
            transform: scale(0);
            transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
        }

        /* Entrance: staggered pop-in */
        .agile-overlay.active .agile-node {
            opacity: 1;
            transform: scale(1);
            transition: opacity 0.5s cubic-bezier(0.34,1.56,0.64,1), transform 0.5s cubic-bezier(0.34,1.56,0.64,1), background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
            transition-delay: calc(var(--i) * 0.12s + 0.5s);
        }

        /* After entrance: no more stagger delay */
        .agile-overlay.active.entered .agile-node {
            transition-delay: 0s;
            transition-duration: 0.35s;
        }

        .agile-node.active {
            background: linear-gradient(135deg, #e22b00, #ff4d1a);
            border-color: #ff4d1a;
            box-shadow: 0 0 25px rgba(226,43,0,0.5);
            transform: scale(1.18);
        }

        .agile-node:hover {
            background: linear-gradient(135deg, #e22b00, #ff4d1a);
            border-color: #ff4d1a;
            box-shadow: 0 0 20px rgba(226,43,0,0.4);
            transform: scale(1.12);
        }

        /* Node label */
        .agile-node-label {
            position: absolute;
            white-space: nowrap;
            font-size: 0.75rem;
            font-weight: 600;
            color: rgba(255,255,255,0.5);
            transition: color 0.3s ease;
            pointer-events: none;
        }

        .agile-node:hover .agile-node-label,
        .agile-node.active .agile-node-label {
            color: #ff6b47;
        }

        /* Label directions via data attribute */
        .agile-node[data-label="top"] .agile-node-label {
            bottom: calc(100% + 8px);
            left: 50%;
            transform: translateX(-50%);
        }

        .agile-node[data-label="bottom"] .agile-node-label {
            top: calc(100% + 8px);
            left: 50%;
            transform: translateX(-50%);
        }

        .agile-node[data-label="right"] .agile-node-label {
            left: calc(100% + 10px);
            top: 50%;
            transform: translateY(-50%);
        }

        .agile-node[data-label="left"] .agile-node-label {
            right: calc(100% + 10px);
            top: 50%;
            transform: translateY(-50%);
        }

        /* Detail card below the loop */
        .agile-detail {
            text-align: center;
            min-height: 70px;
            padding: 1.25rem 1.5rem;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 16px;
            margin-bottom: 1.5rem;
            transition: opacity 0.25s ease, transform 0.25s ease;
        }

        .agile-detail h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.4rem;
        }

        .agile-detail p {
            font-size: 0.88rem;
            color: rgba(255,255,255,0.5);
            line-height: 1.65;
            max-width: 520px;
            margin: 0 auto;
        }

        /* Animated dot running along the ring — synced to 18s (6 nodes × 3s each) */
        .agile-runner {
            fill: #ff4d1a;
            filter: drop-shadow(0 0 6px rgba(226,43,0,0.6));
            opacity: 0;
            transition: opacity 0.3s ease 2s;
        }

        .agile-overlay.active .agile-runner {
            opacity: 1;
            animation: runLoop 18s linear infinite 2s;
        }

        @keyframes runLoop {
            0%   { offset-distance: 0%; }
            100% { offset-distance: 100%; }
        }

        /* Footer values */
        .agile-footer {
            opacity: 0;
            transform: translateY(15px);
            transition: all 0.5s ease 1.2s;
        }

        .agile-overlay.active .agile-footer {
            opacity: 1;
            transform: translateY(0);
        }

        .agile-values {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            justify-content: center;
        }

        .agile-value-tag {
            padding: 0.45rem 1.1rem;
            background: rgba(226,43,0,0.1);
            border: 1px solid rgba(226,43,0,0.2);
            color: #ff6b47;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        /* Mobile: stack vertically */
        @media (max-width: 768px) {
            .agile-overlay { padding: 0.75rem; }

            .agile-popup {
                padding: 2rem 1.25rem 1.5rem;
                max-height: 95vh;
                border-radius: 22px;
            }

            .agile-header h2 { font-size: 1.3rem; }
            .agile-header p { font-size: 0.82rem; }

            .agile-loop {
                width: 300px;
                height: 300px;
            }

            .agile-node {
                width: 44px;
                height: 44px;
                margin-left: -22px;
                margin-top: -22px;
                font-size: 0.7rem;
            }

            .agile-node-label { font-size: 0.6rem; }

            .agile-detail { padding: 1rem; }
            .agile-detail h4 { font-size: 0.95rem; }
            .agile-detail p { font-size: 0.8rem; }

            .agile-loop-center-icon {
                width: 42px;
                height: 42px;
                border-radius: 12px;
            }

            .agile-loop-center-icon svg { width: 22px; height: 22px; }
            .agile-loop-center span { font-size: 0.6rem; }
        }

        /* ---- QA Popup ---- */
        .qa-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.75);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.35s ease;
        }

        .qa-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .qa-popup {
            background: linear-gradient(160deg, #0d0d0d 0%, #0d1a18 100%);
            border: 1px solid rgba(34,197,94,0.15);
            border-radius: 28px;
            max-width: 700px;
            width: 100%;
            max-height: 92vh;
            overflow-y: auto;
            position: relative;
            padding: 2.5rem;
            transform: translateY(40px) scale(0.92);
            transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
            box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 60px rgba(34,197,94,0.04);
        }

        .qa-overlay.active .qa-popup {
            transform: translateY(0) scale(1);
        }

        .qa-popup::-webkit-scrollbar { width: 5px; }
        .qa-popup::-webkit-scrollbar-thumb { background: rgba(34,197,94,0.3); border-radius: 3px; }

        .qa-close {
            position: absolute;
            top: 1.25rem;
            right: 1.25rem;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.1);
            background: rgba(255,255,255,0.05);
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 2;
        }

        .qa-close:hover {
            background: rgba(34,197,94,0.8);
            border-color: transparent;
            transform: rotate(90deg);
        }

        .qa-header {
            text-align: center;
            margin-bottom: 2.5rem;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease 0.15s;
        }

        .qa-overlay.active .qa-header {
            opacity: 1;
            transform: translateY(0);
        }

        .qa-header h2 {
            font-size: 1.65rem;
            font-weight: 800;
            color: white;
            margin-bottom: 0.5rem;
        }

        .qa-header p {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.45);
            line-height: 1.7;
            max-width: 480px;
            margin: 0 auto;
        }

        /* Pipeline Track */
        .qa-pipeline {
            position: relative;
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            margin-bottom: 2rem;
        }

        .qa-pipeline-track {
            position: absolute;
            top: 23px;
            left: calc(100% / 12);
            right: calc(100% / 12);
            height: 3px;
            background: rgba(255,255,255,0.08);
            border-radius: 2px;
            z-index: 0;
        }

        .qa-pipeline-progress {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, #22c55e, #4ade80);
            border-radius: 2px;
            transition: width 0.6s cubic-bezier(0.4,0,0.2,1);
            box-shadow: 0 0 12px rgba(34,197,94,0.4);
        }

        /* Pipeline Stages */
        @keyframes qaStageIn {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .qa-stage {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-self: center;
            gap: 0.6rem;
            z-index: 1;
            cursor: pointer;
            opacity: 0;
        }

        .qa-overlay.active .qa-stage {
            animation: qaStageIn 0.4s ease forwards;
            animation-delay: calc(var(--si) * 0.1s + 0.3s);
        }

        .qa-stage-dot {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background-color: #1a1a1a;
            border: 2px solid rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.5);
            transition: background-color 0.35s ease, border-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
        }

        .qa-stage.passed .qa-stage-dot {
            background-color: #122a1a;
            border-color: #22c55e;
            color: #4ade80;
        }

        .qa-stage.active .qa-stage-dot {
            background-color: #1a9e45;
            border-color: #22c55e;
            color: white;
            box-shadow: 0 0 20px rgba(34,197,94,0.5);
            transform: scale(1.15);
        }

        .qa-stage:hover .qa-stage-dot {
            border-color: #4ade80;
            transform: scale(1.1);
        }

        .qa-stage.active:hover .qa-stage-dot {
            transform: scale(1.18);
            border-color: #22c55e;
        }

        .qa-stage-label {
            font-size: 0.68rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: rgba(255,255,255,0.35);
            transition: color 0.3s ease;
        }

        .qa-stage.active .qa-stage-label,
        .qa-stage.passed .qa-stage-label {
            color: #4ade80;
        }

        /* Detail Panel */
        .qa-detail {
            display: flex;
            align-items: flex-start;
            gap: 1.25rem;
            padding: 1.25rem 1.5rem;
            background: rgba(34,197,94,0.04);
            border: 1px solid rgba(34,197,94,0.1);
            border-radius: 16px;
            margin-bottom: 2rem;
            transition: opacity 0.25s ease, transform 0.25s ease;
        }

        .qa-detail-icon {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: linear-gradient(135deg, #16a34a, #22c55e);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .qa-detail-text h4 {
            font-size: 1.05rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.35rem;
        }

        .qa-detail-text p {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.5);
            line-height: 1.65;
        }

        /* Stats Bars */
        .qa-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(12px);
            transition: all 0.5s ease 0.6s;
        }

        .qa-overlay.active .qa-stats {
            opacity: 1;
            transform: translateY(0);
        }

        .qa-stat {
            text-align: center;
        }

        .qa-stat-bar {
            width: 100%;
            height: 6px;
            background: rgba(255,255,255,0.06);
            border-radius: 3px;
            overflow: hidden;
            margin-bottom: 0.6rem;
        }

        .qa-stat-fill {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, #22c55e, #4ade80);
            border-radius: 3px;
            transition: width 1.2s cubic-bezier(0.4,0,0.2,1) 0.8s;
        }

        .qa-overlay.active .qa-stat-fill {
            width: calc(var(--target) * 1%);
        }

        .qa-stat-value {
            display: block;
            font-size: 1.25rem;
            font-weight: 800;
            color: #4ade80;
            margin-bottom: 0.15rem;
        }

        .qa-stat-label {
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: rgba(255,255,255,0.4);
        }

        /* Footer Tools */
        .qa-footer {
            opacity: 0;
            transform: translateY(12px);
            transition: all 0.5s ease 1s;
        }

        .qa-overlay.active .qa-footer {
            opacity: 1;
            transform: translateY(0);
        }

        .qa-tools {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            justify-content: center;
        }

        .qa-tool-tag {
            padding: 0.4rem 1rem;
            background: rgba(34,197,94,0.08);
            border: 1px solid rgba(34,197,94,0.18);
            color: #4ade80;
            border-radius: 50px;
            font-size: 0.78rem;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .qa-overlay { padding: 0.75rem; }
            .qa-popup { padding: 2rem 1.25rem 1.5rem; border-radius: 22px; }
            .qa-header h2 { font-size: 1.3rem; }

            .qa-pipeline-track { top: 19px; left: calc(100% / 12); right: calc(100% / 12); }
            .qa-stage-dot { width: 38px; height: 38px; }
            .qa-stage-dot svg { width: 14px; height: 14px; }
            .qa-stage-label { font-size: 0.55rem; }

            .qa-detail { flex-direction: column; gap: 0.75rem; padding: 1rem; }
            .qa-stats { grid-template-columns: 1fr; gap: 1rem; }
        }

        /* ---- 24/7 Support Popup ---- */
        .support-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.75);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.35s ease;
        }

        .support-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .support-popup {
            background: linear-gradient(160deg, #0d0d0d 0%, #0d1218 100%);
            border: 1px solid rgba(59,130,246,0.15);
            border-radius: 28px;
            max-width: 700px;
            width: 100%;
            max-height: 92vh;
            overflow-y: auto;
            position: relative;
            padding: 2.5rem;
            transform: translateY(40px) scale(0.92);
            transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
            box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 60px rgba(59,130,246,0.04);
        }

        .support-overlay.active .support-popup {
            transform: translateY(0) scale(1);
        }

        .support-popup::-webkit-scrollbar { width: 5px; }
        .support-popup::-webkit-scrollbar-thumb { background: rgba(59,130,246,0.3); border-radius: 3px; }

        .support-close {
            position: absolute;
            top: 1.25rem;
            right: 1.25rem;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.1);
            background: rgba(255,255,255,0.05);
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 2;
        }

        .support-close:hover {
            background: rgba(59,130,246,0.8);
            border-color: transparent;
            transform: rotate(90deg);
        }

        .support-header {
            text-align: center;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease 0.15s;
        }

        .support-overlay.active .support-header {
            opacity: 1;
            transform: translateY(0);
        }

        .support-header h2 {
            font-size: 1.65rem;
            font-weight: 800;
            color: white;
            margin-bottom: 0.5rem;
        }

        .support-header p {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.45);
            line-height: 1.7;
            max-width: 480px;
            margin: 0 auto;
        }

        /* Support Channels Grid */
        .support-channels {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem;
            margin-bottom: 2rem;
        }

        @keyframes supportChannelIn {
            from { opacity: 0; transform: translateY(12px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .support-channel {
            display: flex;
            align-items: center;
            gap: 0.85rem;
            padding: 1rem 1.1rem;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 14px;
            cursor: pointer;
            position: relative;
            opacity: 0;
            transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .support-overlay.active .support-channel {
            animation: supportChannelIn 0.4s ease forwards;
            animation-delay: calc(var(--ci) * 0.1s + 0.35s);
        }

        .support-channel:hover {
            background: rgba(59,130,246,0.06);
            border-color: rgba(59,130,246,0.2);
        }

        .support-channel.active {
            background: rgba(59,130,246,0.08);
            border-color: rgba(59,130,246,0.35);
            box-shadow: 0 0 20px rgba(59,130,246,0.1);
        }

        .support-channel-icon {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            background: rgba(255,255,255,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.5);
            flex-shrink: 0;
            transition: background 0.3s ease, color 0.3s ease;
        }

        .support-channel.active .support-channel-icon {
            background: linear-gradient(135deg, #1d4ed8, #3b82f6);
            color: white;
        }

        .support-channel-info h4 {
            font-size: 0.88rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.15rem;
        }

        .support-channel-time {
            font-size: 0.72rem;
            font-weight: 600;
            color: rgba(255,255,255,0.35);
            transition: color 0.3s ease;
        }

        .support-channel.active .support-channel-time {
            color: #60a5fa;
        }

        /* Online pulse dot */
        .support-channel-pulse {
            position: absolute;
            top: 0.75rem;
            right: 0.75rem;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #22c55e;
        }

        @keyframes supportPulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
            50% { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
        }

        .support-overlay.active .support-channel-pulse {
            animation: supportPulse 2s ease-in-out infinite;
        }

        /* Detail Panel */
        .support-detail {
            display: flex;
            align-items: flex-start;
            gap: 1.25rem;
            padding: 1.25rem 1.5rem;
            background: rgba(59,130,246,0.04);
            border: 1px solid rgba(59,130,246,0.1);
            border-radius: 16px;
            margin-bottom: 2rem;
            transition: opacity 0.25s ease, transform 0.25s ease;
        }

        .support-detail-icon {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: linear-gradient(135deg, #1d4ed8, #3b82f6);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .support-detail-text h4 {
            font-size: 1.05rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.35rem;
        }

        .support-detail-text p {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.5);
            line-height: 1.65;
        }

        /* Stats */
        .support-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(12px);
            transition: all 0.5s ease 0.6s;
        }

        .support-overlay.active .support-stats {
            opacity: 1;
            transform: translateY(0);
        }

        .support-stat {
            text-align: center;
            padding: 1rem 0.5rem;
            background: rgba(59,130,246,0.04);
            border: 1px solid rgba(59,130,246,0.08);
            border-radius: 12px;
        }

        .support-stat-value {
            display: block;
            font-size: 1.3rem;
            font-weight: 800;
            color: #60a5fa;
            margin-bottom: 0.25rem;
        }

        .support-stat-label {
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: rgba(255,255,255,0.4);
        }

        /* Footer Tools */
        .support-footer {
            opacity: 0;
            transform: translateY(12px);
            transition: all 0.5s ease 1s;
        }

        .support-overlay.active .support-footer {
            opacity: 1;
            transform: translateY(0);
        }

        .support-tools {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            justify-content: center;
        }

        .support-tool-tag {
            padding: 0.4rem 1rem;
            background: rgba(59,130,246,0.08);
            border: 1px solid rgba(59,130,246,0.18);
            color: #60a5fa;
            border-radius: 50px;
            font-size: 0.78rem;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .support-overlay { padding: 0.75rem; }
            .support-popup { padding: 2rem 1.25rem 1.5rem; border-radius: 22px; }
            .support-header h2 { font-size: 1.3rem; }
            .support-channels { grid-template-columns: 1fr; }
            .support-channel-icon { width: 36px; height: 36px; }
            .support-detail { flex-direction: column; gap: 0.75rem; padding: 1rem; }
            .support-stats { grid-template-columns: 1fr; gap: 1rem; }
        }

        /* ---- Scalable Solutions Popup ---- */
        .scale-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.75);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.35s ease;
        }

        .scale-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .scale-popup {
            background: linear-gradient(160deg, #0d0d0d 0%, #140d1a 100%);
            border: 1px solid rgba(139,92,246,0.15);
            border-radius: 28px;
            max-width: 700px;
            width: 100%;
            max-height: 92vh;
            overflow-y: auto;
            position: relative;
            padding: 2.5rem;
            transform: translateY(40px) scale(0.92);
            transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
            box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 60px rgba(139,92,246,0.04);
        }

        .scale-overlay.active .scale-popup {
            transform: translateY(0) scale(1);
        }

        .scale-popup::-webkit-scrollbar { width: 5px; }
        .scale-popup::-webkit-scrollbar-thumb { background: rgba(139,92,246,0.3); border-radius: 3px; }

        .scale-close {
            position: absolute;
            top: 1.25rem;
            right: 1.25rem;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.1);
            background: rgba(255,255,255,0.05);
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 2;
        }

        .scale-close:hover {
            background: rgba(139,92,246,0.8);
            border-color: transparent;
            transform: rotate(90deg);
        }

        .scale-header {
            text-align: center;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease 0.15s;
        }

        .scale-overlay.active .scale-header {
            opacity: 1;
            transform: translateY(0);
        }

        .scale-header h2 {
            font-size: 1.65rem;
            font-weight: 800;
            color: white;
            margin-bottom: 0.5rem;
        }

        .scale-header p {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.45);
            line-height: 1.7;
            max-width: 480px;
            margin: 0 auto;
        }

        /* Growth Tiers */
        .scale-tiers {
            display: flex;
            flex-direction: column;
            gap: 0.65rem;
            margin-bottom: 2rem;
        }

        @keyframes scaleTierIn {
            from { opacity: 0; transform: translateX(-20px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .scale-tier {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.9rem 1.2rem;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 14px;
            cursor: pointer;
            position: relative;
            opacity: 0;
            overflow: hidden;
            transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .scale-overlay.active .scale-tier {
            animation: scaleTierIn 0.4s ease forwards;
            animation-delay: calc(var(--ti) * 0.12s + 0.3s);
        }

        .scale-tier:hover {
            background: rgba(139,92,246,0.06);
            border-color: rgba(139,92,246,0.2);
        }

        .scale-tier.active {
            background: rgba(139,92,246,0.08);
            border-color: rgba(139,92,246,0.35);
            box-shadow: 0 0 24px rgba(139,92,246,0.1);
        }

        /* Tier progress fill behind content */
        .scale-tier-fill {
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            width: 0%;
            background: linear-gradient(90deg, rgba(139,92,246,0.08), rgba(139,92,246,0.02));
            border-radius: 14px;
            transition: width 1s cubic-bezier(0.4,0,0.2,1);
        }

        .scale-overlay.active .scale-tier-fill {
            width: calc(var(--fill) * 1%);
            transition-delay: calc(var(--ti) * 0.12s + 0.6s);
        }

        .scale-tier-icon {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            background: rgba(255,255,255,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.5);
            flex-shrink: 0;
            position: relative;
            z-index: 1;
            transition: background 0.3s ease, color 0.3s ease;
        }

        .scale-tier.active .scale-tier-icon {
            background: linear-gradient(135deg, #6d28d9, #8b5cf6);
            color: white;
        }

        .scale-tier-info {
            flex: 1;
            position: relative;
            z-index: 1;
        }

        .scale-tier-info h4 {
            font-size: 0.9rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.1rem;
        }

        .scale-tier-meta {
            font-size: 0.72rem;
            font-weight: 600;
            color: rgba(255,255,255,0.35);
            transition: color 0.3s ease;
        }

        .scale-tier.active .scale-tier-meta {
            color: #a78bfa;
        }

        .scale-tier-badge {
            padding: 0.25rem 0.7rem;
            border-radius: 50px;
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            background: rgba(139,92,246,0.1);
            color: #a78bfa;
            border: 1px solid rgba(139,92,246,0.15);
            position: relative;
            z-index: 1;
            flex-shrink: 0;
        }

        /* Detail Panel */
        .scale-detail {
            display: flex;
            align-items: flex-start;
            gap: 1.25rem;
            padding: 1.25rem 1.5rem;
            background: rgba(139,92,246,0.04);
            border: 1px solid rgba(139,92,246,0.1);
            border-radius: 16px;
            margin-bottom: 2rem;
            transition: opacity 0.25s ease, transform 0.25s ease;
        }

        .scale-detail-icon {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: linear-gradient(135deg, #6d28d9, #8b5cf6);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .scale-detail-text h4 {
            font-size: 1.05rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.35rem;
        }

        .scale-detail-text p {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.5);
            line-height: 1.65;
        }

        /* Stats */
        .scale-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(12px);
            transition: all 0.5s ease 0.6s;
        }

        .scale-overlay.active .scale-stats {
            opacity: 1;
            transform: translateY(0);
        }

        .scale-stat {
            text-align: center;
            padding: 1rem 0.5rem;
            background: rgba(139,92,246,0.04);
            border: 1px solid rgba(139,92,246,0.08);
            border-radius: 12px;
        }

        .scale-stat-value {
            display: block;
            font-size: 1.3rem;
            font-weight: 800;
            color: #a78bfa;
            margin-bottom: 0.25rem;
        }

        .scale-stat-label {
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: rgba(255,255,255,0.4);
        }

        /* Footer Tools */
        .scale-footer {
            opacity: 0;
            transform: translateY(12px);
            transition: all 0.5s ease 1s;
        }

        .scale-overlay.active .scale-footer {
            opacity: 1;
            transform: translateY(0);
        }

        .scale-tools {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            justify-content: center;
        }

        .scale-tool-tag {
            padding: 0.4rem 1rem;
            background: rgba(139,92,246,0.08);
            border: 1px solid rgba(139,92,246,0.18);
            color: #a78bfa;
            border-radius: 50px;
            font-size: 0.78rem;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .scale-overlay { padding: 0.75rem; }
            .scale-popup { padding: 2rem 1.25rem 1.5rem; border-radius: 22px; }
            .scale-header h2 { font-size: 1.3rem; }
            .scale-tier-icon { width: 36px; height: 36px; }
            .scale-tier-badge { display: none; }
            .scale-detail { flex-direction: column; gap: 0.75rem; padding: 1rem; }
            .scale-stats { grid-template-columns: 1fr; gap: 1rem; }
        }

        /* Technology Section */
        .tech-section {
            background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
            position: relative;
            overflow: hidden;
        }

        .tech-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(226, 43, 0, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .tech-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(226, 43, 0, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .tech-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2rem;
            position: relative;
            z-index: 1;
        }

        .tech-category {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .tech-category:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--primary-color);
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(226, 43, 0, 0.15);
        }

        .tech-category-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 1.25rem;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: transform 0.3s ease;
        }

        .tech-category:hover .tech-category-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .tech-category-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1.25rem;
        }

        .tech-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            justify-content: center;
        }

        .tech-tag {
            display: inline-block;
            padding: 0.5rem 1.1rem;
            background: linear-gradient(135deg, rgba(226, 43, 0, 0.12), rgba(255, 77, 26, 0.08));
            color: var(--text-primary);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            border: 1px solid rgba(226, 43, 0, 0.2);
            transition: all 0.3s ease;
        }

        .tech-tag:hover {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border-color: transparent;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(226, 43, 0, 0.3);
        }

        /* ---- Blog Section ---- */
        .blog-section {
            background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
            position: relative;
            overflow: hidden;
        }

        .blog-section::before {
            content: '';
            position: absolute;
            top: -30%;
            left: -15%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(226,43,0,0.06) 0%, transparent 70%);
            border-radius: 50%;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.75rem;
            position: relative;
            z-index: 1;
        }

        .blog-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.35s ease;
            display: flex;
            flex-direction: column;
        }

        .blog-card:hover {
            background: rgba(255,255,255,0.06);
            border-color: rgba(226,43,0,0.25);
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 30px rgba(226,43,0,0.06);
        }

        .blog-card-header {
            padding: 1.75rem 1.75rem 0;
        }

        .blog-card-category {
            display: inline-block;
            padding: 0.3rem 0.85rem;
            background: rgba(226,43,0,0.12);
            color: var(--secondary-color);
            border-radius: 50px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 1rem;
        }

        .blog-card-title {
            font-size: 1.15rem;
            font-weight: 800;
            color: white;
            line-height: 1.45;
            margin-bottom: 0.75rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .blog-card-excerpt {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.45);
            line-height: 1.65;
            padding: 0 1.75rem;
            flex: 1;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .blog-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.25rem 1.75rem;
            margin-top: auto;
            border-top: 1px solid rgba(255,255,255,0.04);
        }

        .blog-card-meta {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 0.75rem;
            color: rgba(255,255,255,0.35);
        }

        .blog-card-meta span {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .blog-card-read {
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--secondary-color);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
        }

        .blog-card:hover .blog-card-read {
            color: white;
        }

        .blog-card-thumb {
            height: 170px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .blog-card-thumb::before {
            content: '';
            position: absolute;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: rgba(255,255,255,0.08);
            top: -30px;
            right: -20px;
            box-shadow:
                -140px 90px 0 40px rgba(255,255,255,0.04),
                -70px 30px 0 15px rgba(255,255,255,0.06);
        }

        .blog-card-thumb::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50px;
            background: linear-gradient(to top, rgba(17,17,17,0.9), transparent);
        }

        .blog-card-thumb svg {
            width: 44px;
            height: 44px;
            color: rgba(255,255,255,0.3);
            z-index: 1;
            transition: all 0.4s ease;
        }

        .blog-card:hover .blog-card-thumb svg {
            color: rgba(255,255,255,0.5);
            transform: scale(1.1);
        }

        /* Blog Modal */
        .blog-modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.8);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.35s ease;
        }

        .blog-modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .blog-modal {
            background: #111;
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 24px;
            max-width: 780px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            padding: 3rem;
            transform: translateY(30px) scale(0.95);
            transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
        }

        .blog-modal-overlay.active .blog-modal {
            transform: translateY(0) scale(1);
        }

        .blog-modal::-webkit-scrollbar { width: 5px; }
        .blog-modal::-webkit-scrollbar-thumb { background: rgba(226,43,0,0.3); border-radius: 3px; }

        .blog-modal-close {
            position: absolute;
            top: 1.25rem;
            right: 1.25rem;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.1);
            background: rgba(255,255,255,0.05);
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 2;
        }

        .blog-modal-close:hover {
            background: rgba(226,43,0,0.8);
            border-color: transparent;
            transform: rotate(90deg);
        }

        .blog-modal-hero {
            height: 240px;
            margin: -3rem -3rem 2rem;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 24px 24px 0 0;
        }

        .blog-modal-hero::before {
            content: '';
            position: absolute;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: rgba(255,255,255,0.07);
            top: -40px;
            right: -30px;
            box-shadow:
                -200px 120px 0 60px rgba(255,255,255,0.03),
                -100px 50px 0 20px rgba(255,255,255,0.05),
                80px 100px 0 40px rgba(255,255,255,0.03);
        }

        .blog-modal-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(to top, #111, transparent);
        }

        .blog-modal-hero svg {
            width: 64px;
            height: 64px;
            color: rgba(255,255,255,0.25);
            z-index: 1;
        }

        .blog-modal-category {
            display: inline-block;
            padding: 0.3rem 0.85rem;
            background: rgba(226,43,0,0.12);
            color: var(--secondary-color);
            border-radius: 50px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 1rem;
        }

        .blog-modal-title {
            font-size: 1.75rem;
            font-weight: 800;
            color: white;
            line-height: 1.35;
            margin-bottom: 1rem;
        }

        .blog-modal-meta {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            font-size: 0.8rem;
            color: rgba(255,255,255,0.4);
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }

        .blog-modal-body {
            font-size: 0.95rem;
            color: rgba(255,255,255,0.65);
            line-height: 1.85;
        }

        .blog-modal-body p {
            margin-bottom: 1.25rem;
        }

        .blog-modal-body strong {
            color: rgba(255,255,255,0.9);
            font-weight: 700;
        }

        .blog-modal-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.06);
        }

        .blog-modal-tag {
            padding: 0.3rem 0.9rem;
            background: rgba(226,43,0,0.08);
            border: 1px solid rgba(226,43,0,0.15);
            color: var(--secondary-color);
            border-radius: 50px;
            font-size: 0.72rem;
            font-weight: 600;
        }

        @media (max-width: 1024px) {
            .blog-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .blog-grid { grid-template-columns: 1fr; }
            .blog-modal { padding: 2rem 1.25rem; border-radius: 20px; }
            .blog-modal-hero { height: 180px; margin: -2rem -1.25rem 1.5rem; border-radius: 20px 20px 0 0; }
            .blog-modal-hero svg { width: 48px; height: 48px; }
            .blog-modal-title { font-size: 1.35rem; }
        }

        /* FAQ Section */
        .faq-section {
            background: linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 50%, #0a0a0a 100%);
            position: relative;
            overflow: hidden;
        }

        .faq-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(226,43,0,0.04) 0%, transparent 70%);
            pointer-events: none;
        }

        .faq-container {
            max-width: 820px;
            margin: 0 auto;
        }

        .faq-item {
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 16px;
            margin-bottom: 0.85rem;
            background: rgba(255,255,255,0.02);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: rgba(255,255,255,0.1);
            background: rgba(255,255,255,0.03);
        }

        .faq-item.active {
            border-color: rgba(226,43,0,0.25);
            background: rgba(226,43,0,0.03);
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 1.4rem 1.75rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            cursor: pointer;
            text-align: left;
            color: white;
            font-size: 1rem;
            font-weight: 600;
            line-height: 1.5;
            font-family: inherit;
        }

        .faq-question:hover {
            color: var(--secondary-color);
        }

        .faq-item.active .faq-question {
            color: var(--secondary-color);
        }

        .faq-icon {
            width: 32px;
            height: 32px;
            min-width: 32px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.35s ease;
        }

        .faq-icon svg {
            width: 14px;
            height: 14px;
            color: rgba(255,255,255,0.5);
            transition: transform 0.35s ease;
        }

        .faq-item.active .faq-icon {
            background: rgba(226,43,0,0.15);
            border-color: rgba(226,43,0,0.3);
        }

        .faq-item.active .faq-icon svg {
            color: var(--secondary-color);
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-answer-inner {
            padding: 0 1.75rem 1.5rem;
            color: rgba(255,255,255,0.55);
            font-size: 0.92rem;
            line-height: 1.85;
        }

        .faq-answer-inner p {
            margin-bottom: 0.75rem;
        }

        .faq-answer-inner p:last-child {
            margin-bottom: 0;
        }

        .faq-answer-inner strong {
            color: rgba(255,255,255,0.85);
            font-weight: 600;
        }

        .faq-cta {
            text-align: center;
            margin-top: 2.5rem;
            color: rgba(255,255,255,0.4);
            font-size: 0.88rem;
        }

        .faq-cta a {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .faq-cta a:hover {
            color: white;
        }

        @media (max-width: 768px) {
            .faq-question {
                padding: 1.15rem 1.25rem;
                font-size: 0.92rem;
                gap: 1rem;
            }
            .faq-answer-inner {
                padding: 0 1.25rem 1.25rem;
                font-size: 0.85rem;
            }
        }

        /* Floating tech background */
        .tech-floating-bg {
            position: absolute;
            inset: 0;
            overflow: hidden;
            z-index: 0;
            pointer-events: none;
        }

        .tech-floating-bg span {
            position: absolute;
            bottom: -15%;
            left: var(--x);
            font-family: 'Courier New', monospace;
            font-weight: 700;
            color: white;
            white-space: nowrap;
            opacity: 0;
            animation: techFloat var(--dur) linear infinite;
            animation-delay: var(--delay);
        }

        @keyframes techFloat {
            0% {
                transform: translateY(0) rotate(var(--rot, 0deg));
                opacity: 0;
            }
            8% { opacity: var(--op); }
            85% { opacity: var(--op); }
            100% {
                transform: translateY(calc(-100vh - 80px)) rotate(var(--rot, 0deg));
                opacity: 0;
            }
        }

        @media (max-width: 768px) {
            .tech-categories {
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
            }
            .tech-floating-bg span { font-size: 0.7rem !important; }
        }

        @media (max-width: 480px) {
            .tech-categories {
                grid-template-columns: 1fr;
            }
        }

        /* Enhanced About Section */
        .about-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }

        .feature-card {
            background: var(--dark-tertiary);
            padding: 2rem 1.5rem;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
            text-align: center;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary-color);
            box-shadow: 0 12px 30px rgba(226, 43, 0, 0.2);
        }

        .feature-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 1.25rem;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: transform 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .feature-card h4 {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .feature-card p {
            font-size: 0.875rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .feature-card-clickable {
            cursor: pointer;
            position: relative;
            border: 1px solid rgba(226, 43, 0, 0.15);
        }

        /* Always-visible arrow indicator */
        .feature-card-clickable::after {
            content: '→';
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 1rem;
            color: rgba(226, 43, 0, 0.4);
            transition: all 0.3s ease;
        }

        .feature-card-clickable:hover::after {
            color: #ff4d1a;
            transform: translateX(3px);
        }

        .feature-card-hint {
            display: inline-block;
            margin-top: 0.75rem;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--primary-color);
            opacity: 0.6;
            transform: translateY(0);
            transition: all 0.3s ease;
        }

        .feature-card-clickable:hover .feature-card-hint {
            opacity: 1;
        }

        /* Mini Stats */
        .about-stats-mini {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stat-mini {
            text-align: center;
        }

        .stat-mini-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .stat-mini-label {
            font-size: 0.875rem;
            color: var(--text-secondary);
            font-weight: 500;
        }

        /* Visual Side */
        .about-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-image-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 500px;
        }

        .about-placeholder-enhanced {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(226, 43, 0, 0.1), rgba(229, 62, 62, 0.1));
            border-radius: 30px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .about-image-main {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 30px;
            position: relative;
            z-index: 1;
        }

        /* Animated Gradient Orbs */
        .gradient-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.6;
            animation: float 8s ease-in-out infinite;
        }

        .orb-1 {
            width: 200px;
            height: 200px;
            background: var(--primary-color);
            top: 20%;
            left: 20%;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 150px;
            height: 150px;
            background: var(--secondary-color);
            bottom: 30%;
            right: 20%;
            animation-delay: 2s;
        }

        .orb-3 {
            width: 180px;
            height: 180px;
            background: #f97316;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: 4s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translate(0, 0);
            }

            25% {
                transform: translate(20px, -20px);
            }

            50% {
                transform: translate(-10px, 10px);
            }

            75% {
                transform: translate(10px, 20px);
            }
        }

        /* Floating Badges */
        .floating-badge {
            position: absolute;
            background: var(--dark-tertiary);
            padding: 0.75rem 1.25rem;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            animation: float-badge 3s ease-in-out infinite;
            z-index: 2;
        }

        .floating-badge svg {
            color: var(--primary-color);
            flex-shrink: 0;
        }

        .floating-badge span {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--text-primary);
            white-space: nowrap;
        }

        .badge-1 {
            top: 10%;
            left: -5%;
            animation-delay: 0s;
        }

        .badge-2 {
            top: 50%;
            right: -5%;
            animation-delay: 1s;
        }

        .badge-3 {
            bottom: 15%;
            left: 10%;
            animation-delay: 2s;
        }

        .badge-4 {
            top: 10%;
            right: 10%;
            animation-delay: 1.5s;
        }

        @keyframes float-badge {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-15px);
            }
        }

        /* Rupee Symbol Styling */
        .feature-icon-rupee {
            font-size: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .rupee-symbol {
            font-weight: 700;
            font-size: 2rem;
        }

        /* Responsive About Section */
        @media (max-width: 768px) {
            .about-features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }

            .about-stats-mini {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .about-image-wrapper {
                min-height: 350px;
                margin-top: 3rem;
                position: relative;
            }

            /* Mobile floating badges - smaller and positioned inside the image */
            .floating-badge {
                padding: 0.4rem 0.75rem;
                border-radius: 30px;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            }

            .floating-badge svg {
                width: 16px;
                height: 16px;
            }

            .floating-badge span {
                font-size: 0.7rem;
            }

            /* Reposition badges inside/around the image on mobile */
            .badge-1 {
                top: 5%;
                left: 5%;
            }

            .badge-2 {
                top: 5%;
                right: 5%;
                left: auto;
            }

            .badge-3 {
                bottom: 8%;
                left: 5%;
            }

            .badge-4 {
                bottom: 8%;
                right: 5%;
                top: auto;
                left: auto;
            }

            @keyframes float-badge {

                0%,
                100% {
                    transform: translateY(0);
                }

                50% {
                    transform: translateY(-8px);
                }
            }
        }

        /* Tablet view - reposition badges closer to image */
        @media (min-width: 769px) and (max-width: 1024px) {
            .floating-badge {
                padding: 0.5rem 0.75rem;
                font-size: 0.7rem;
            }

            .badge-1 {
                top: 5%;
                left: 5%;
            }

            .badge-2 {
                top: 40%;
                right: 5%;
            }

            .badge-3 {
                bottom: 20%;
                left: 5%;
            }

            .badge-4 {
                top: 5%;
                right: 5%;
            }
        }

        /* Enhanced Contact Section */
        .contact-enhanced {
            position: relative;
            overflow: hidden;
        }

        .contact-bg-decoration {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        #contactDotCanvas {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
        }

        .contact-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.3;
            animation: float 10s ease-in-out infinite;
        }

        .contact-orb-1 {
            width: 300px;
            height: 300px;
            background: var(--primary-color);
            top: -10%;
            left: -5%;
            animation-delay: 0s;
        }

        .contact-orb-2 {
            width: 250px;
            height: 250px;
            background: var(--secondary-color);
            bottom: -10%;
            right: -5%;
            animation-delay: 3s;
        }

        .contact-orb-3 {
            width: 200px;
            height: 200px;
            background: #f97316;
            top: 50%;
            right: 20%;
            animation-delay: 6s;
        }

        .contact-header-center {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
        }

        .contact-intro-text {
            font-size: 1.125rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-top: 1.5rem;
        }

        .contact-grid-enhanced {
            display: grid;
            gap: 3rem;
            position: relative;
            z-index: 1;
        }

        /* Contact Info Cards */
        .contact-info-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-bottom: 2.5rem;
        }

        .contact-card {
            background: rgba(38, 38, 42, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 2rem 1.75rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            text-align: center;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
        }

        /* Top accent bar */
        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, #e22b00, #ff4d1a, transparent);
            transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border-radius: 0 0 2px 2px;
        }

        .contact-card:hover::before {
            width: 80%;
        }

        /* Bottom glow line */
        .contact-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(226,43,0,0.3), transparent);
            transition: width 0.4s ease 0.1s;
        }

        .contact-card:hover::after {
            width: 60%;
        }

        .contact-card:hover {
            transform: translateY(-8px);
            border-color: rgba(226, 43, 0, 0.2);
            box-shadow:
                0 20px 40px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(226, 43, 0, 0.08);
            background: rgba(48, 48, 54, 0.95);
        }

        /* Clickable contact cards (email & phone) */
        .contact-card-link {
            text-decoration: none;
            display: block;
            cursor: pointer;
        }

        .contact-card-link h4,
        .contact-card-link p {
            color: inherit;
        }

        /* Label tag */
        .contact-card-label {
            display: inline-block;
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #ff4d1a;
            background: rgba(226, 43, 0, 0.08);
            border: 1px solid rgba(226, 43, 0, 0.15);
            border-radius: 20px;
            padding: 0.25rem 0.75rem;
            margin-bottom: 1.25rem;
        }

        /* Icon */
        .contact-card-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1.25rem;
            background: linear-gradient(135deg, rgba(226, 43, 0, 0.15), rgba(255, 77, 26, 0.08));
            border: 1px solid rgba(226, 43, 0, 0.2);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ff6a3a;
            transition: all 0.4s ease;
        }

        .contact-card:hover .contact-card-icon {
            background: linear-gradient(135deg, #e22b00, #ff4d1a);
            border-color: transparent;
            color: white;
            transform: scale(1.08) rotate(3deg);
            box-shadow: 0 0 25px rgba(226, 43, 0, 0.3);
        }

        .contact-card-icon svg {
            transition: all 0.3s ease;
        }

        .contact-card:hover .contact-card-icon svg {
            stroke: white;
            filter: drop-shadow(0 0 4px rgba(255,255,255,0.3));
        }

        .contact-card h4 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.6rem;
        }

        .contact-card p {
            color: rgba(255, 255, 255, 0.55);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* Action hint for clickable cards */
        .contact-card-action {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            margin-top: 1rem;
            font-size: 0.75rem;
            font-weight: 600;
            color: rgba(226, 43, 0, 0.5);
            transition: all 0.3s ease;
        }

        .contact-card-action svg {
            width: 14px;
            height: 14px;
            transition: transform 0.3s ease;
        }

        .contact-card:hover .contact-card-action {
            color: #ff4d1a;
        }

        .contact-card:hover .contact-card-action svg {
            transform: translateX(3px);
        }

        /* Enhanced Contact Form */
        .contact-form-wrapper {
            max-width: 900px;
            margin: 0 auto;
        }

        .contact-form-enhanced {
            background: var(--dark-tertiary);
            padding: 3rem;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        /* Floating label form group */
        .form-group-enhanced {
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .form-group-enhanced.full-width {
            grid-column: 1 / -1;
            margin-top: 0.75rem;
        }

        /* Floating label */
        .form-group-enhanced label {
            position: absolute;
            left: 2.75rem;
            top: 1.05rem;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-muted);
            pointer-events: none;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 2;
            background: transparent;
            padding: 0 0.3rem;
            margin-bottom: 0;
            display: block;
        }

        .form-group-enhanced.focused label,
        .form-group-enhanced.has-value label {
            top: -0.55rem;
            left: 0.85rem;
            font-size: 0.72rem;
            font-weight: 700;
            color: #ff4d1a;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            background: var(--dark-tertiary);
            padding: 0 0.4rem;
        }

        /* Input icon */
        .form-input-icon {
            position: absolute;
            left: 1rem;
            top: 0.95rem;
            width: 20px;
            height: 20px;
            color: var(--text-muted);
            z-index: 2;
            transition: color 0.3s ease;
            pointer-events: none;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .form-input-icon svg {
            width: 18px;
            height: 18px;
        }

        .form-group-enhanced.focused .form-input-icon {
            color: #ff4d1a;
        }

        /* Textarea icon alignment */
        .form-group-enhanced.full-width .form-input-icon {
            top: 1.05rem;
        }

        /* Inputs with icon padding */
        .form-group-enhanced input,
        .form-group-enhanced textarea {
            width: 100%;
            padding: 1rem 1.25rem 1rem 2.75rem;
            background: var(--dark-secondary);
            border: 2px solid rgba(255, 255, 255, 0.06);
            border-radius: 12px;
            color: var(--text-primary);
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .form-group-enhanced input::placeholder,
        .form-group-enhanced textarea::placeholder {
            color: transparent;
        }

        .form-group-enhanced.focused input::placeholder,
        .form-group-enhanced.focused textarea::placeholder {
            color: var(--text-muted);
            opacity: 0.5;
        }

        /* Focus state */
        .form-group-enhanced input:focus,
        .form-group-enhanced textarea:focus {
            outline: none;
            border-color: rgba(226, 43, 0, 0.5);
            box-shadow: 0 0 0 3px rgba(226, 43, 0, 0.1);
            background: rgba(226, 43, 0, 0.02);
        }

        .form-group-enhanced textarea {
            resize: vertical;
            min-height: 150px;
        }

        /* Animated underline */
        .form-group-enhanced .form-underline {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #e22b00, #ff4d1a, transparent);
            border-radius: 2px;
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 3;
        }

        .form-group-enhanced.focused .form-underline {
            width: 95%;
        }

        /* Offset underline above char counter on message field */
        .form-group-enhanced:has(.char-counter) .form-underline {
            bottom: 1.4rem;
        }

        /* Character counter */
        .char-counter {
            text-align: right;
            font-size: 0.72rem;
            color: var(--text-muted);
            margin-top: 0.4rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .form-group-enhanced.focused .char-counter {
            opacity: 1;
        }

        .char-counter.near-limit {
            color: #ff4d1a;
        }

        /* Submit button with pulse */
        .btn-contact-submit {
            width: 100%;
            padding: 1.25rem 2rem;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.125rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            margin-top: 1rem;
            box-shadow: 0 4px 20px rgba(226, 43, 0, 0.3);
            animation: btnPulseGlow 2.5s ease-in-out infinite;
        }

        @keyframes btnPulseGlow {
            0%, 100% { box-shadow: 0 4px 20px rgba(226, 43, 0, 0.3); }
            50% { box-shadow: 0 4px 30px rgba(226, 43, 0, 0.5), 0 0 40px rgba(226, 43, 0, 0.15); }
        }

        .btn-contact-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(226, 43, 0, 0.5);
            animation: none;
        }

        .btn-contact-submit:active {
            transform: translateY(0);
        }

        .btn-contact-submit svg {
            transition: transform 0.3s ease;
        }

        .btn-contact-submit:hover svg {
            transform: translateX(5px) rotate(5deg);
        }

        /* Success Message */
        .form-success-message {
            display: none;
            background: var(--dark-tertiary);
            padding: 3rem;
            border-radius: 24px;
            border: 2px solid var(--primary-color);
            text-align: center;
            animation: fadeInScale 0.5s ease;
        }

        .form-success-message.show {
            display: block;
        }

        .success-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            animation: bounceIn 0.6s ease;
        }

        .form-success-message h3 {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1rem;
        }

        .form-success-message p {
            font-size: 1.125rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.9);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes bounceIn {
            0% {
                transform: scale(0);
            }

            50% {
                transform: scale(1.1);
            }

            100% {
                transform: scale(1);
            }
        }

        /* Interactive Contact Enhancements */

        /* Morphing animated blobs (replace static orbs) */
        .contact-orb {
            animation: contactBlobMorph 12s ease-in-out infinite !important;
        }

        .contact-orb-1 {
            animation-duration: 14s !important;
        }

        .contact-orb-2 {
            animation-duration: 18s !important;
            animation-delay: -5s !important;
        }

        .contact-orb-3 {
            animation-duration: 16s !important;
            animation-delay: -9s !important;
        }

        @keyframes contactBlobMorph {
            0%, 100% { border-radius: 50%; transform: translate(0, 0) scale(1); }
            25% { border-radius: 40% 60% 55% 45%; transform: translate(30px, -20px) scale(1.1); }
            50% { border-radius: 55% 45% 40% 60%; transform: translate(-20px, 30px) scale(0.95); }
            75% { border-radius: 45% 55% 60% 40%; transform: translate(15px, 15px) scale(1.05); }
        }

        /* Floating communication icons */
        .contact-float-icon {
            position: absolute;
            pointer-events: none;
            z-index: 0;
            opacity: var(--op, 0.12);
            animation: contactFloatUp var(--dur, 14s) ease-in-out infinite;
            animation-delay: var(--delay, 0s);
            color: rgba(226,43,0, var(--op, 0.12));
        }

        .contact-float-icon svg {
            width: var(--size, 28px);
            height: var(--size, 28px);
        }

        @keyframes contactFloatUp {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
                opacity: var(--op, 0.12);
            }
            30% {
                transform: translateY(-25px) rotate(5deg);
                opacity: calc(var(--op, 0.12) * 1.5);
            }
            60% {
                transform: translateY(10px) rotate(-3deg);
            }
            80% {
                transform: translateY(-15px) rotate(2deg);
                opacity: var(--op, 0.12);
            }
        }

        /* Pulse rings on contact card icons */
        .contact-card-icon {
            position: relative;
        }

        .contact-card-pulse {
            position: absolute;
            inset: -8px;
            border-radius: 20px;
            border: 2px solid rgba(226,43,0,0.3);
            animation: contactPulseRing 2.5s ease-out infinite;
            pointer-events: none;
        }

        .contact-card-pulse:nth-child(2) {
            animation-delay: 0.8s;
        }

        @keyframes contactPulseRing {
            0% { transform: scale(1); opacity: 0.5; }
            100% { transform: scale(1.6); opacity: 0; }
        }

        /* 3D tilt effect container */
        .contact-card {
            transform-style: preserve-3d;
            perspective: 800px;
        }

        /* Animated border glow on form */
        .contact-form-enhanced {
            position: relative;
        }

        .contact-form-enhanced::after {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: 25px;
            background: conic-gradient(
                from var(--form-angle, 0deg),
                transparent 0%,
                rgba(226,43,0,0.4) 10%,
                transparent 20%,
                transparent 100%
            );
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .contact-form-enhanced:hover::after,
        .contact-form-enhanced:focus-within::after {
            opacity: 1;
            animation: formBorderSpin 3s linear infinite;
        }

        @keyframes formBorderSpin {
            to { --form-angle: 360deg; }
        }

        @property --form-angle {
            syntax: '<angle>';
            initial-value: 0deg;
            inherits: false;
        }

        /* Enhanced input focus glow */
        .form-group-enhanced input:focus,
        .form-group-enhanced textarea:focus {
            border-color: rgba(226,43,0,0.6) !important;
            box-shadow: 0 0 0 3px rgba(226,43,0,0.12), 0 4px 20px rgba(226,43,0,0.08) !important;
        }

        /* Responsive floating labels */
        @media (max-width: 768px) {
            .form-group-enhanced label {
                left: 2.75rem;
                font-size: 0.85rem;
            }
            .form-group-enhanced.focused label,
            .form-group-enhanced.has-value label {
                top: -0.5rem;
                left: 0.7rem;
                font-size: 0.68rem;
            }
        }

        /* Responsive Contact Section */
        @media (max-width: 992px) {
            .contact-info-cards {
                grid-template-columns: 1fr 1fr;
            }
            .contact-info-cards .contact-card:first-child {
                grid-column: 1 / -1;
                max-width: 60%;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .contact-float-icon { display: none; }
            .contact-card-pulse { display: none; }
            .contact-info-cards {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }
            .contact-info-cards .contact-card:first-child {
                max-width: 100%;
            }

            .contact-form-enhanced {
                padding: 2rem 1.5rem;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .contact-header-center {
                margin-bottom: 3rem;
            }
        }

/* ===== (was second inline <style> block, moved from body) ===== */

        /* Fixed Floating Logo - Bottom Right */
        .fixed-logo-float {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fixed-logo-float.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .logo-float-link {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(226, 43, 0, 0.95);
            border-radius: 50%;
            box-shadow: 0 8px 32px rgba(226, 43, 0, 0.3);
            transition: all 0.3s ease;
            padding: 0;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            overflow: hidden;
        }

        .logo-float-link:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 12px 40px rgba(226, 43, 0, 0.5);
            background: rgba(226, 43, 0, 1);
        }

        .logo-float-img {
            width: 120%;
            height: 120%;
            object-fit: cover;
        }

        /* Responsive for mobile */
        @media (max-width: 768px) {
            .logo-float-link {
                width: 50px;
                height: 50px;
            }
        }

        /* Hide when near footer */
        .fixed-logo-float.hide-near-footer {
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
        }

        /* WhatsApp Floating Button - Bottom Left */
        .whatsapp-float {
            position: fixed;
            bottom: 2rem;
            left: 2rem;
            z-index: 999;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, #064e3b 0%, #059669 50%, #34d399 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 16px rgba(5, 150, 105, 0.4);
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 24px rgba(5, 150, 105, 0.5);
        }
        .whatsapp-float::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: linear-gradient(135deg, #064e3b 0%, #059669 50%, #34d399 100%);
            animation: whatsappPulse 2s ease-in-out infinite;
            z-index: -1;
        }
        @keyframes whatsappPulse {
            0%, 100% { transform: scale(1); opacity: 0.4; }
            50% { transform: scale(1.35); opacity: 0; }
        }
        .whatsapp-tooltip {
            position: absolute;
            left: calc(100% + 12px);
            top: 50%;
            transform: translateY(-50%);
            background: #1a1a1a;
            color: #fff;
            font-size: 0.8rem;
            font-weight: 500;
            padding: 0.4rem 0.75rem;
            border-radius: 6px;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.25s ease;
        }
        .whatsapp-tooltip::before {
            content: '';
            position: absolute;
            right: 100%;
            top: 50%;
            transform: translateY(-50%);
            border: 5px solid transparent;
            border-right-color: #1a1a1a;
        }
        .whatsapp-float:hover .whatsapp-tooltip {
            opacity: 1;
        }

        /* Light theme tooltip */
        body.light-theme .whatsapp-tooltip {
            background: #333;
        }
        body.light-theme .whatsapp-tooltip::before {
            border-right-color: #333;
        }

        @media (max-width: 768px) {
            .whatsapp-float {
                bottom: 1.25rem;
                left: 1.25rem;
                width: 50px;
                height: 50px;
            }
            .whatsapp-tooltip { display: none; }
        }
    