﻿        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #6C5CE7;
            --primary-dark: #5B4AE4;
            --dark: #1a1a2e;
            --text: #2D3436;
            --text-light: #636E72;
            --bg: #F8F9FA;
            --white: #ffffff;
            --star-gold: #FFB800;
            --star-bg: #FFEAA7;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--bg);
            color: var(--text);
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-15px) rotate(1deg);
            }
        }

        @keyframes floatPhone {
            0%, 100% {
                transform: translateY(0) rotate(-5deg);
            }
            50% {
                transform: translateY(-10px) rotate(-3deg);
            }
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(108, 92, 231, 0.4);
            }
            50% {
                box-shadow: 0 0 0 15px rgba(108, 92, 231, 0);
            }
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--white);
            z-index: 1000;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            animation: fadeInDown 0.6s ease;
        }

        .header-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 18px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
            position: relative;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-icon svg {
            width: 40px;
            height: 40px;
        }

        .logo-text {
            font-size: 18px;
            font-weight: 600;
            color: var(--dark);
            line-height: 1.1;
        }

        .logo-text span {
            display: block;
            font-size: 13px;
            font-weight: 400;
            color: var(--text-light);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 35px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 35px;
        }

        .nav-links a {
            font-size: 15px;
            font-weight: 500;
            color: var(--text);
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 28px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-primary {
            background: var(--primary);
            color: var(--white);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
        }

        .btn-outline {
            background: transparent;
            color: var(--text);
            border: 2px solid #E0E0E0;
        }

        .btn-outline:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            min-height: 90vh;
            padding: 130px 40px 60px;
            background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 50%, #eef2ff 100%);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        /* Subtle Background Gradient */
        .hero::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(108, 92, 231, 0.06) 0%, transparent 70%);
            pointer-events: none;
            border-radius: 50%;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
            pointer-events: none;
            border-radius: 50%;
        }

        .hero-container {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            align-items: center;
            width: 100%;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            animation: fadeInLeft 0.8s ease 0.2s both;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            background: white;
            border: 1px solid rgba(108, 92, 231, 0.15);
            border-radius: 30px;
            margin-bottom: 24px;
            box-shadow: 0 4px 15px rgba(108, 92, 231, 0.08);
        }

        .hero-badge i {
            color: var(--primary);
            font-size: 14px;
        }

        .hero-badge span {
            font-size: 13px;
            font-weight: 600;
            color: var(--primary);
        }

        .hero-content h1 {
            font-size: 50px;
            font-weight: 700;
            line-height: 1.12;
            color: var(--dark);
            margin-bottom: 24px;
            letter-spacing: -1.5px;
        }

        .hero-content h1 span {
            background: linear-gradient(135deg, var(--primary), #3b82f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content p {
            font-size: 17px;
            color: var(--text-light);
            line-height: 1.75;
            margin-bottom: 35px;
            max-width: 480px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }

        .hero-buttons .btn-primary {
            padding: 16px 32px;
            font-size: 15px;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(108, 92, 231, 0.3);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .hero-buttons .btn-primary:hover {
            box-shadow: 0 12px 35px rgba(108, 92, 231, 0.4);
            transform: translateY(-2px);
        }

        .hero-buttons .btn-outline {
            padding: 14px 28px;
            font-size: 15px;
            border-radius: 12px;
            border-width: 2px;
            display: flex;
            align-items: center;
            gap: 10px;
            background: white;
        }

        /* Hero Trust Indicators */
        .hero-trust {
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
        }

        .hero-trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--text-light);
        }

        .hero-trust-item i {
            color: #22c55e;
            font-size: 16px;
        }

        /* Hero Image Section */
        .hero-image {
            position: relative;
            animation: fadeInRight 1s ease 0.4s both;
        }

        /* Trust Section - Compact */
        .trust-section {
            padding: 30px 20px;
            background: #fafbff;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }

        .trust-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .trust-title {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 20px;
        }

        .trust-badges {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        /* Facebook Badge */
        .trust-badge-fb {
            display: flex;
            align-items: center;
            gap: 12px;
            background: white;
            padding: 12px 20px;
            border-radius: 12px;
            text-decoration: none;
            border: 1px solid #e5e7eb;
            transition: all 0.3s ease;
        }

        .trust-badge-fb:hover {
            border-color: #1877F2;
            box-shadow: 0 5px 20px rgba(24, 119, 242, 0.15);
        }

        .fb-icon-box {
            width: 40px;
            height: 40px;
            background: #1877F2;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .fb-icon-box i {
            font-size: 20px;
            color: white;
        }

        .fb-info {
            text-align: left;
        }

        .fb-name-row {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .fb-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--dark);
        }

        /* Exact Facebook Blue Tick */
        .fb-blue-tick {
            width: 15px;
            height: 15px;
            flex-shrink: 0;
        }

        .fb-verified-text {
            font-size: 11px;
            color: #1877F2;
            font-weight: 500;
        }

        /* Trustpilot Badge */
        .trust-badge-tp {
            display: flex;
            align-items: center;
            gap: 12px;
            background: white;
            padding: 12px 20px;
            border-radius: 12px;
            text-decoration: none;
            border: 1px solid #e5e7eb;
            transition: all 0.3s ease;
        }

        .trust-badge-tp:hover {
            border-color: #00b67a;
            box-shadow: 0 5px 20px rgba(0, 182, 122, 0.15);
        }

        .tp-logo {
            height: 24px;
            flex-shrink: 0;
        }

        .tp-info {
            text-align: left;
        }

        .tp-stars {
            display: flex;
            gap: 2px;
            margin-bottom: 2px;
        }

        .tp-stars i {
            font-size: 12px;
            color: #00b67a;
        }

        .tp-text {
            font-size: 11px;
            color: var(--text-light);
        }

        .tp-text span {
            font-weight: 600;
            color: var(--dark);
        }

        /* Google Badge */
        .trust-badge-google {
            display: flex;
            align-items: center;
            gap: 12px;
            background: white;
            padding: 12px 20px;
            border-radius: 12px;
            text-decoration: none;
            border: 1px solid #e5e7eb;
            transition: all 0.3s ease;
        }

        .trust-badge-google:hover {
            border-color: #4285F4;
            box-shadow: 0 5px 20px rgba(66, 133, 244, 0.15);
        }

        .google-icon {
            font-size: 24px;
            flex-shrink: 0;
        }

        .google-info {
            text-align: left;
        }

        .google-stars {
            display: flex;
            gap: 2px;
            margin-bottom: 2px;
        }

        .google-stars i {
            font-size: 12px;
            color: #FBBC05;
        }

        .google-text {
            font-size: 11px;
            color: var(--text-light);
        }

        /* Mobile */
        @media (max-width: 700px) {
            .trust-badges {
                flex-direction: column;
                gap: 10px;
            }

            .trust-badge-fb,
            .trust-badge-tp,
            .trust-badge-google {
                width: 100%;
                max-width: 260px;
                justify-content: center;
                padding: 10px 16px;
            }

            .trust-badge-fb .fb-logo-circle {
                width: 32px;
                height: 32px;
            }

            .trust-badge-fb .fb-verified-text {
                font-size: 12px;
            }

            .tp-logo {
                width: 28px;
                height: 28px;
            }

            .tp-stars i, .google-stars i {
                font-size: 10px;
            }

            .tp-text, .google-text {
                font-size: 11px;
            }

            .google-icon svg {
                width: 20px;
                height: 20px;
            }
        }

        /* Device Mockups */
        .hero-image {
            position: relative;
            animation: fadeInRight 0.8s ease 0.4s both;
        }

        .devices-wrapper {
            position: relative;
            width: 100%;
            display: flex;
            justify-content: center;
        }

        /* Realistic Laptop */
        .laptop {
            position: relative;
            width: 520px;
            animation: float 6s ease-in-out infinite;
            filter: drop-shadow(0 25px 50px rgba(0,0,0,0.25));
        }

        .laptop-screen {
            background: linear-gradient(180deg, #303030 0%, #1a1a1a 100%);
            border-radius: 10px 14px 0 0;
            padding: 14px 14px 0;
            position: relative;
            border: 3px solid #222;
            border-bottom: none;
        }

        .laptop-screen::before {
            content: '';
            position: absolute;
            top: 7px;
            left: 50%;
            transform: translateX(-50%);
            width: 8px;
            height: 8px;
            background: radial-gradient(circle, #1a1a1a 40%, #0a0a0a 100%);
            border-radius: 50%;
            box-shadow: inset 0 0 2px rgba(255,255,255,0.1);
        }

        .laptop-screen-content {
            background: #0D0D12;
            border-radius: 6px 6px 0 0;
            height: 300px;
            overflow: hidden;
            position: relative;
            border: 1px solid #444;
            border-bottom: none;
        }

        /* Dashboard UI Inside Laptop */
        .dashboard {
            width: 100%;
            height: 100%;
            display: grid;
            grid-template-columns: 180px 1fr;
            background: #13131A;
        }

        .dashboard-sidebar {
            background: #1A1A24;
            padding: 14px;
            border-right: 1px solid #2A2A3C;
        }

        .sidebar-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 18px;
            padding-bottom: 14px;
            border-bottom: 1px solid #2A2A3C;
        }

        .sidebar-logo-icon {
            width: 26px;
            height: 26px;
            background: linear-gradient(135deg, #6C5CE7, #A29BFE);
            border-radius: 6px;
        }

        .sidebar-logo-text {
            font-size: 10px;
            color: #fff;
            font-weight: 600;
        }

        .sidebar-menu {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .sidebar-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 9px 12px;
            border-radius: 7px;
            font-size: 9px;
            color: #8B8B9A;
            transition: all 0.3s;
        }

        .sidebar-item.active {
            background: linear-gradient(135deg, #6C5CE7, #5B4AE4);
            color: #fff;
        }

        .sidebar-item-icon {
            width: 14px;
            height: 14px;
            background: currentColor;
            border-radius: 4px;
            opacity: 0.6;
        }

        .dashboard-main {
            padding: 14px;
            overflow: hidden;
        }

        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }

        .dashboard-title {
            font-size: 12px;
            color: #fff;
            font-weight: 600;
        }

        .dashboard-balance {
            background: #1E1E2A;
            border-radius: 10px;
            padding: 12px 14px;
            margin-bottom: 12px;
        }

        .balance-label {
            font-size: 8px;
            color: #8B8B9A;
            margin-bottom: 4px;
        }

        .balance-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .balance-amount {
            font-size: 16px;
            color: #fff;
            font-weight: 700;
        }

        .balance-btn {
            padding: 5px 12px;
            background: #6C5CE7;
            color: #fff;
            border-radius: 6px;
            font-size: 8px;
            font-weight: 600;
        }

        .dashboard-section-title {
            font-size: 10px;
            color: #fff;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .dashboard-chart {
            background: #1E1E2A;
            border-radius: 10px;
            padding: 12px;
            margin-bottom: 12px;
            height: 70px;
        }

        .chart-bars {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            height: 45px;
            gap: 6px;
            padding-top: 8px;
        }

        .chart-bar {
            flex: 1;
            background: linear-gradient(180deg, #6C5CE7 0%, #A29BFE 100%);
            border-radius: 3px 3px 0 0;
            transition: all 0.3s;
        }

        .chart-bar:nth-child(1) { height: 60%; }
        .chart-bar:nth-child(2) { height: 80%; }
        .chart-bar:nth-child(3) { height: 45%; }
        .chart-bar:nth-child(4) { height: 90%; }
        .chart-bar:nth-child(5) { height: 70%; }
        .chart-bar:nth-child(6) { height: 55%; }
        .chart-bar:nth-child(7) { height: 85%; }

        .nft-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
        }

        .nft-card {
            background: #1E1E2A;
            border-radius: 8px;
            padding: 6px;
            transition: transform 0.3s;
        }

        .nft-card:hover {
            transform: scale(1.05);
        }

        .nft-image {
            height: 40px;
            border-radius: 5px;
            margin-bottom: 5px;
            overflow: hidden;
        }

        .nft-card:nth-child(1) .nft-image {
            background: linear-gradient(135deg, #00D9FF, #00FF94);
        }

        .nft-card:nth-child(2) .nft-image {
            background: linear-gradient(135deg, #667eea, #764ba2);
        }

        .nft-card:nth-child(3) .nft-image {
            background: linear-gradient(135deg, #f093fb, #f5576c);
        }

        .nft-card:nth-child(4) .nft-image {
            background: linear-gradient(135deg, #4facfe, #00f2fe);
        }

        .nft-title {
            font-size: 7px;
            color: #fff;
            font-weight: 500;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* Realistic Laptop Base */
        .laptop-base {
            width: 100%;
            height: 14px;
            background: linear-gradient(180deg, #E8E8E8 0%, #C8C8C8 50%, #B0B0B0 100%);
            border-radius: 0 0 2px 2px;
            position: relative;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
        }

        .laptop-base::before {
            content: '';
            position: absolute;
            top: 3px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 6px;
            background: linear-gradient(180deg, #A0A0A0 0%, #888 100%);
            border-radius: 0 0 4px 4px;
        }

        .laptop-bottom {
            width: 570px;
            margin-left: -25px;
            height: 8px;
            background: linear-gradient(180deg, #D0D0D0 0%, #A8A8A8 50%, #909090 100%);
            border-radius: 0 0 10px 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.3);
        }

        /* Realistic Phone Mockup */
        .phone {
            position: absolute;
            right: -10px;
            bottom: 30px;
            width: 140px;
            animation: floatPhone 5s ease-in-out infinite;
            animation-delay: 1s;
            z-index: 10;
            filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
        }

        .phone-frame {
            background: linear-gradient(145deg, #2C2C2E 0%, #1C1C1E 50%, #0a0a0a 100%);
            border-radius: 10px;
            padding: 8px;
            border: 1px solid #3a3a3c;
            position: relative;
        }

        .phone-frame::before {
            content: '';
            position: absolute;
            top: 0;
            left: 15%;
            right: 15%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
        }

        .phone-notch {
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 45px;
            height: 16px;
            background: #000;
            border-radius: 10px;
            z-index: 10;
            box-shadow: inset 0 0 3px rgba(0,0,0,0.8);
        }

        .phone-notch::before {
            content: '';
            position: absolute;
            top: 50%;
            right: 10px;
            transform: translateY(-50%);
            width: 6px;
            height: 6px;
            background: radial-gradient(circle, #1a1a2e 30%, #0d0d12 100%);
            border-radius: 50%;
            border: 1px solid #2a2a3c;
        }

        .phone-screen {
            background: linear-gradient(180deg, #1a1a24 0%, #13131A 100%);
            border-radius: 10px;
            height: 250px;
            overflow: hidden;
            position: relative;
            border: 1px solid #2a2a2a;
        }

        .phone-content {
            padding: 22px 10px 10px;
        }

        .phone-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .phone-title {
            font-size: 9px;
            color: #fff;
            font-weight: 600;
        }

        .phone-balance {
            background: linear-gradient(135deg, #252532 0%, #1E1E2A 100%);
            border-radius: 10px;
            padding: 10px;
            margin-bottom: 10px;
            border: 1px solid #333;
        }

        .phone-balance-amount {
            font-size: 13px;
            color: #fff;
            font-weight: 700;
        }

        .phone-nft-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 6px;
        }

        .phone-nft {
            background: linear-gradient(135deg, #252532 0%, #1E1E2A 100%);
            border-radius: 10px;
            padding: 6px;
            border: 1px solid #333;
        }

        .phone-nft-image {
            height: 45px;
            border-radius: 6px;
            margin-bottom: 5px;
        }

        .phone-nft:nth-child(1) .phone-nft-image {
            background: linear-gradient(135deg, #00D9FF, #00FF94);
        }

        .phone-nft:nth-child(2) .phone-nft-image {
            background: linear-gradient(135deg, #667eea, #764ba2);
        }

        .phone-nft:nth-child(3) .phone-nft-image {
            background: linear-gradient(135deg, #f093fb, #f5576c);
        }

        .phone-nft:nth-child(4) .phone-nft-image {
            background: linear-gradient(135deg, #4facfe, #00f2fe);
        }

        .phone-nft-title {
            font-size: 6px;
            color: #fff;
            font-weight: 500;
        }

        /* ==================== */
        /* TESTIMONIALS SECTION */
        /* ==================== */
        .testimonials-section {
            background: var(--white);
            padding: 0;
            border-bottom: 4px solid var(--primary);
            overflow: hidden;
        }

        .testimonials-header {
            background: var(--bg);
            padding: 15px 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            border-bottom: 1px solid #eee;
        }

        .testimonials-header-text {
            font-size: 14px;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .testimonials-header-text i {
            color: var(--star-gold);
            font-size: 16px;
        }

        .testimonials-header-text a {
            color: var(--primary);
            font-weight: 600;
            text-decoration: underline;
            transition: color 0.3s;
        }

        .testimonials-header-text a:hover {
            color: var(--primary-dark);
        }

        .verified-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
            padding: 6px 12px;
            border-radius: 10px;
            font-size: 12px;
            font-weight: 600;
            color: #2E7D32;
        }

        .verified-badge i {
            font-size: 12px;
        }

        .testimonials-wrapper {
            position: relative;
            width: 100%;
            overflow: hidden;
            padding: 30px 0;
        }

        .testimonials-track {
            display: flex;
            gap: 30px;
            animation: scroll 35s linear infinite;
            width: max-content;
        }

        .testimonials-track:hover {
            animation-play-state: paused;
        }

        .testimonial-card {
            flex-shrink: 0;
            width: 320px;
            padding: 20px 25px;
            background: var(--white);
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid #eee;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-color: var(--primary);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .testimonial-logo {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 700;
            color: var(--white);
            overflow: hidden;
        }

        .testimonial-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-logo.bishnu {
            background: linear-gradient(135deg, #667eea, #764ba2);
        }

        .testimonial-logo.metaxwire {
            background: #0066FF;
        }

        .testimonial-logo.biochem {
            background: #1a1a2e;
            font-size: 9px;
        }

        .testimonial-logo.yugzen {
            background: linear-gradient(135deg, #f5af19, #f12711);
        }

        .testimonial-logo.techsol {
            background: linear-gradient(135deg, #11998e, #38ef7d);
        }

        .testimonial-logo.digimart {
            background: linear-gradient(135deg, #ee0979, #ff6a00);
        }

        .testimonial-info h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 4px;
        }

        .star-rating {
            display: flex;
            gap: 3px;
        }

        .star-rating i {
            font-size: 14px;
            color: var(--star-gold);
        }

        .testimonial-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .testimonial-text {
            font-size: 13px;
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 12px;
        }

        .testimonial-text-preview {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .read-more-btn {
            font-size: 13px;
            font-weight: 600;
            color: var(--primary);
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s ease;
        }

        .read-more-btn:hover {
            color: var(--primary-dark);
            gap: 8px;
        }

        .read-more-btn i {
            font-size: 11px;
            transition: transform 0.3s ease;
        }

        .read-more-btn:hover i {
            transform: translateX(3px);
        }

        /* Lightbox Modal */
        .lightbox {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .lightbox.active {
            opacity: 1;
            visibility: visible;
        }

        .lightbox-content {
            background: var(--white);
            border-radius: 10px;
            max-width: 550px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            padding: 35px;
            position: relative;
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        .lightbox.active .lightbox-content {
            transform: scale(1);
            animation: scaleIn 0.3s ease;
        }

        .lightbox-close {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--bg);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--text-light);
            transition: all 0.3s ease;
        }

        .lightbox-close:hover {
            background: var(--primary);
            color: var(--white);
        }

        .lightbox-header {
            display: flex;
            align-items: center;
            gap: 18px;
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }

        .lightbox-logo {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
            color: var(--white);
        }

        .lightbox-info h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 6px;
        }

        .lightbox-info .star-rating {
            margin-bottom: 5px;
        }

        .lightbox-info .star-rating i {
            font-size: 16px;
        }

        .lightbox-info .review-date {
            font-size: 12px;
            color: var(--text-light);
        }

        .lightbox-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 18px;
            line-height: 1.4;
        }

        .lightbox-text {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.8;
        }

        .lightbox-footer {
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid #eee;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 15px;
        }

        .review-source-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-light);
            background: var(--bg);
            padding: 8px 14px;
            border-radius: 8px;
        }

        .review-source-badge i {
            color: var(--star-gold);
            font-size: 16px;
        }

        .view-original-link {
            font-size: 13px;
            font-weight: 600;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s;
        }

        .view-original-link:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

        /* ==================== */
        /* ABOUT US SECTION */
        /* ==================== */
        .about-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, #F8F9FF 0%, #F0F4FF 50%, #FDF8FF 100%);
            position: relative;
            overflow: hidden;
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(108, 92, 231, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .about-section::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: -50px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(108, 92, 231, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-badge {
            display: inline-block;
            padding: 8px 18px;
            background: linear-gradient(135deg, rgba(108, 92, 231, 0.15) 0%, rgba(108, 92, 231, 0.05) 100%);
            color: var(--primary);
            border-radius: 10px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .about-title {
            font-size: 36px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .about-title span {
            color: var(--primary);
        }

        .about-subtitle {
            font-size: 15px;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Office Gallery - Left Map, Right Images */
        .office-gallery {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 20px;
            margin-bottom: 50px;
        }

        /* Left Side - Live Google Map */
        .gallery-map-live {
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            min-height: 300px;
            box-shadow: 0 10px 40px rgba(108, 92, 231, 0.15);
        }

        .gallery-map-live iframe {
            width: 100%;
            height: 100%;
            min-height: 300px;
            display: block;
        }

        .map-overlay-btn {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            padding: 12px 24px;
            background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
            border-radius: 10px;
            color: white;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
            transition: all 0.3s ease;
            z-index: 10;
        }

        .map-overlay-btn:hover {
            transform: translateX(-50%) translateY(-3px);
            box-shadow: 0 12px 35px rgba(108, 92, 231, 0.5);
        }

        .map-overlay-btn i {
            font-size: 16px;
        }

        /* Keep old CTA styles for fallback */
        .gallery-map-cta {
            background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 40px 30px;
            position: relative;
            overflow: hidden;
            min-height: 300px;
        }

        .gallery-map-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
            border-radius: 50%;
        }

        .gallery-map-cta::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -30%;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
            border-radius: 50%;
        }

        .gallery-map-cta i.fab {
            font-size: 50px;
            color: white;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .gallery-map-cta span {
            color: rgba(255,255,255,0.8);
            font-size: 14px;
            margin-bottom: 5px;
            position: relative;
            z-index: 1;
        }

        .gallery-map-cta strong {
            color: white;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }

        .gallery-map-cta .map-btn {
            padding: 14px 28px;
            background: rgba(255,255,255,0.2);
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 12px;
            color: white;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            position: relative;
            z-index: 1;
        }

        .gallery-map-cta .map-btn:hover {
            background: white;
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .gallery-map-cta .map-btn i {
            font-size: 16px;
        }

        /* Right Side - Images Grid */
        .gallery-images-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(2, 140px);
            gap: 15px;
        }

        .gallery-item {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            background: var(--white);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease, filter 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item:hover {
            z-index: 10;
            box-shadow: 0 20px 50px rgba(108, 92, 231, 0.2);
            transform: translateY(-5px);
        }

        /* First image spans 2 columns */
        .gallery-item:nth-child(1) {
            grid-column: span 2;
        }

        /* Overlay with label */
        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.8) 100%);
            display: flex;
            align-items: flex-end;
            padding: 15px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-label {
            color: white;
            font-size: 12px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .gallery-label i {
            font-size: 14px;
            color: var(--primary);
        }

        /* Special CTA card */
        .gallery-cta {
            background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px;
            transition: all 0.3s ease;
        }

        .gallery-cta:hover {
            transform: scale(1.02) translateY(-5px);
        }

        .gallery-cta i {
            font-size: 28px;
            color: white;
            margin-bottom: 10px;
        }

        .gallery-cta span {
            color: rgba(255,255,255,0.8);
            font-size: 11px;
            margin-bottom: 3px;
        }

        .gallery-cta strong {
            color: white;
            font-size: 14px;
        }

        .gallery-cta .cta-btn {
            margin-top: 12px;
            padding: 8px 16px;
            background: rgba(255,255,255,0.2);
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 8px;
            color: white;
            font-size: 11px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .gallery-cta .cta-btn:hover {
            background: white;
            color: var(--primary);
        }

        /* Stats Row */
        .about-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .stat-card {
            background: var(--white);
            border-radius: 16px;
            padding: 25px 20px;
            text-align: center;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--primary);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(108, 92, 231, 0.12);
        }

        .stat-card:hover::before {
            transform: scaleX(1);
        }

        .stat-icon-wrap {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(108, 92, 231, 0.05));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
        }

        .stat-icon-wrap i {
            font-size: 20px;
            color: var(--primary);
        }

        .stat-number {
            font-size: 36px;
            font-weight: 700;
            color: var(--dark);
            line-height: 1;
            display: inline;
        }

        .stat-suffix {
            font-size: 20px;
            font-weight: 600;
            color: var(--primary);
            display: inline;
        }

        .stat-range {
            font-size: 32px;
            font-weight: 700;
            color: var(--dark);
        }

        .stat-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--dark);
            margin-top: 8px;
        }

        .stat-desc {
            font-size: 12px;
            color: var(--text-light);
            margin-top: 3px;
        }

        /* Mobile Responsive for About */
        @media (max-width: 1024px) {
            .office-gallery {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .gallery-map-live {
                min-height: 250px;
            }

            .gallery-map-live iframe {
                min-height: 250px;
            }

            .gallery-map-cta {
                min-height: 200px;
                padding: 30px 25px;
            }

            .gallery-images-grid {
                grid-template-columns: repeat(3, 1fr);
                grid-template-rows: repeat(2, 120px);
            }
        }

        @media (max-width: 768px) {
            .about-section {
                padding: 40px 15px;
            }

            .section-badge {
                padding: 6px 14px;
                font-size: 10px;
                letter-spacing: 1.5px;
                margin-bottom: 10px;
            }

            .about-title {
                font-size: 24px;
            }

            .about-subtitle {
                font-size: 13px;
            }

            .gallery-map-live {
                min-height: 200px;
            }

            .gallery-map-live iframe {
                min-height: 200px;
            }

            .map-overlay-btn {
                padding: 8px 16px;
                font-size: 12px;
                bottom: 12px;
            }

            .gallery-map-cta {
                min-height: 160px;
            }

            .gallery-map-cta i.fab {
                font-size: 36px;
            }

            .gallery-map-cta strong {
                font-size: 18px;
            }

            .gallery-images-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(3, 90px);
                gap: 8px;
            }

            .gallery-item:nth-child(1) {
                grid-column: span 2;
            }

            .about-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .stat-card {
                padding: 16px 12px;
            }

            .stat-number {
                font-size: 26px;
            }

            .stat-label {
                font-size: 11px;
            }
        }

        @media (max-width: 480px) {
            .about-title {
                font-size: 22px;
            }

            .gallery-map-live {
                min-height: 200px;
            }

            .gallery-map-live iframe {
                min-height: 200px;
            }

            .map-overlay-btn {
                padding: 10px 18px;
                font-size: 12px;
            }

            .gallery-map-cta {
                min-height: 160px;
                padding: 25px 20px;
            }

            .gallery-map-cta i.fab {
                font-size: 36px;
                margin-bottom: 15px;
            }

            .gallery-map-cta strong {
                font-size: 18px;
                margin-bottom: 15px;
            }

            .gallery-map-cta .map-btn {
                padding: 12px 20px;
                font-size: 13px;
            }

            .gallery-images-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(3, 90px);
            }
        }

        .google-map-card {
            background: linear-gradient(135deg, #4285F4 0%, #2962FF 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .google-map-card .map-content {
            text-align: center;
            color: white;
            padding: 15px;
        }

        .map-content i.fab {
            font-size: 28px;
            margin-bottom: 6px;
            display: block;
        }

        .map-content span {
            font-size: 10px;
            opacity: 0.9;
            display: block;
        }

        .map-content strong {
            font-size: 14px;
            font-weight: 700;
            display: block;
            margin-bottom: 8px;
        }

        .map-btn {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 7px 14px;
            background: white;
            color: #4285F4;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .map-btn:hover {
            transform: scale(1.05);
        }

        /* Stats Section */
        .about-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }

        .stat-card {
            background: var(--white);
            padding: 18px 12px;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(108, 92, 231, 0.08);
            box-shadow: 0 4px 15px rgba(108, 92, 231, 0.06);
        }

        .stat-card:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(108, 92, 231, 0.1);
        }

        .stat-icon-wrap {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--primary), #8B7CF7);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
        }

        .stat-icon-wrap i {
            font-size: 18px;
            color: var(--white);
        }

        .stat-number {
            font-size: 28px;
            font-weight: 700;
            color: var(--dark);
            line-height: 1;
            display: inline;
        }

        .stat-suffix {
            font-size: 18px;
            font-weight: 600;
            color: var(--primary);
            display: inline;
        }

        .stat-range {
            font-size: 24px;
            font-weight: 700;
            color: var(--dark);
            line-height: 1;
        }

        .stat-label {
            font-size: 12px;
            font-weight: 600;
            color: var(--text);
            margin-top: 5px;
        }

        .stat-desc {
            font-size: 10px;
            color: var(--text-light);
            margin-top: 2px;
        }

        /* Team Section */
        .team-section {
            margin-bottom: 25px;
        }

        .team-header {
            text-align: center;
            margin-bottom: 20px;
        }

        .team-header h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 5px;
        }

        .team-header p {
            font-size: 13px;
            color: var(--text-light);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }

        .team-card {
            background: var(--bg);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .team-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(108, 92, 231, 0.1);
        }

        .team-image {
            position: relative;
            height: 140px;
            overflow: hidden;
        }

        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .team-card:hover .team-image img {
            transform: scale(1.08);
        }

        .team-social {
            position: absolute;
            top: 10px;
            right: 10px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .team-card:hover .team-social {
            opacity: 1;
        }

        .team-social a {
            width: 30px;
            height: 30px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 12px;
        }

        .team-info {
            padding: 12px;
            text-align: center;
        }

        .team-info h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 3px;
        }

        .team-role {
            display: block;
            font-size: 11px;
            color: var(--primary);
            font-weight: 500;
            margin-bottom: 5px;
        }

        .team-exp {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 10px;
            color: var(--text-light);
            background: var(--white);
            padding: 3px 8px;
            border-radius: 10px;
        }

        .team-exp i {
            font-size: 8px;
            color: var(--primary);
        }

        /* About CTA */
        .about-cta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: linear-gradient(135deg, var(--primary) 0%, #8B7CF7 50%, #A29BFE 100%);
            padding: 25px 30px;
            border-radius: 10px;
            flex-wrap: wrap;
            gap: 15px;
            position: relative;
            overflow: hidden;
        }

        .about-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            pointer-events: none;
        }

        .about-cta::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: 10%;
            width: 100px;
            height: 100px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
            pointer-events: none;
        }

        .cta-content h3 {
            font-size: 18px;
            font-weight: 700;
            color: white;
            margin-bottom: 4px;
        }

        .cta-content p {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.85);
            margin: 0;
        }

        .cta-buttons {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .cta-buttons .btn {
            padding: 10px 20px;
            font-size: 13px;
        }

        .cta-buttons .btn-outline {
            background: transparent;
            border-color: rgba(255, 255, 255, 0.4);
            color: white;
        }

        .cta-buttons .btn-outline:hover {
            background: white;
            border-color: white;
            color: var(--primary);
        }

        .cta-buttons .btn-primary {
            background: white;
            color: var(--primary);
        }

        .cta-buttons .btn i {
            margin-right: 6px;
        }

        /* ==================== */
        /* PROCESS SECTION */
        /* ==================== */
        .process-section {
            padding: 60px 20px;
            background: linear-gradient(135deg, #0a0a12 0%, #12121f 50%, #0d0d18 100%);
            position: relative;
            overflow: hidden;
        }

        .process-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(108, 92, 231, 0.08) 0%, transparent 60%);
            border-radius: 50%;
            pointer-events: none;
            animation: floatBg 15s ease-in-out infinite;
        }

        .process-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 60%);
            border-radius: 50%;
            pointer-events: none;
            animation: floatBg 12s ease-in-out infinite reverse;
        }

        @keyframes floatBg {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(30px, -30px); }
        }

        .process-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .process-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .process-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 20px;
            background: rgba(108, 92, 231, 0.15);
            border: 1px solid rgba(108, 92, 231, 0.3);
            border-radius: 10px;
            margin-bottom: 20px;
        }

        .process-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .process-badge span {
            font-size: 13px;
            font-weight: 600;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .process-title {
            font-size: 34px;
            font-weight: 700;
            color: var(--white);
            line-height: 1.3;
            max-width: 700px;
            margin: 0 auto 15px;
        }

        .process-title span {
            background: linear-gradient(135deg, var(--primary) 0%, #A29BFE 50%, #10B981 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .process-subtitle {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.6);
            max-width: 550px;
            margin: 0 auto;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            position: relative;
        }

        /* Connecting Line */
        .process-grid::before {
            content: '';
            position: absolute;
            top: 80px;
            left: 12.5%;
            right: 12.5%;
            height: 2px;
            background: linear-gradient(90deg, 
                rgba(168, 85, 247, 0.5) 0%, 
                rgba(59, 130, 246, 0.5) 33%, 
                rgba(236, 72, 153, 0.5) 66%, 
                rgba(16, 185, 129, 0.5) 100%);
            z-index: 0;
        }

        .process-card {
            background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            padding: 30px 25px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 255, 255, 0.08);
            z-index: 1;
        }

        .process-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            transition: all 0.3s ease;
        }

        .process-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.02) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .process-card:hover::after {
            opacity: 1;
        }

        .process-card:nth-child(1)::before {
            background: linear-gradient(90deg, #A855F7 0%, #7C3AED 100%);
        }

        .process-card:nth-child(2)::before {
            background: linear-gradient(90deg, #3B82F6 0%, #1D4ED8 100%);
        }

        .process-card:nth-child(3)::before {
            background: linear-gradient(90deg, #EC4899 0%, #BE185D 100%);
        }

        .process-card:nth-child(4)::before {
            background: linear-gradient(90deg, #10B981 0%, #059669 100%);
        }

        .process-card:hover {
            transform: translateY(-8px);
            border-color: rgba(255, 255, 255, 0.15);
        }

        .process-card:nth-child(1):hover {
            box-shadow: 0 20px 50px rgba(168, 85, 247, 0.2), 0 0 0 1px rgba(168, 85, 247, 0.3);
        }

        .process-card:nth-child(2):hover {
            box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2), 0 0 0 1px rgba(59, 130, 246, 0.3);
        }

        .process-card:nth-child(3):hover {
            box-shadow: 0 20px 50px rgba(236, 72, 153, 0.2), 0 0 0 1px rgba(236, 72, 153, 0.3);
        }

        .process-card:nth-child(4):hover {
            box-shadow: 0 20px 50px rgba(16, 185, 129, 0.2), 0 0 0 1px rgba(16, 185, 129, 0.3);
        }

        /* Step Number */
        .process-step {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 700;
            color: var(--white);
            opacity: 0.3;
            transition: all 0.3s ease;
        }

        .process-card:nth-child(1) .process-step { background: linear-gradient(135deg, #A855F7, #7C3AED); }
        .process-card:nth-child(2) .process-step { background: linear-gradient(135deg, #3B82F6, #1D4ED8); }
        .process-card:nth-child(3) .process-step { background: linear-gradient(135deg, #EC4899, #BE185D); }
        .process-card:nth-child(4) .process-step { background: linear-gradient(135deg, #10B981, #059669); }

        .process-card:hover .process-step {
            opacity: 1;
            transform: scale(1.1);
        }

        .process-icon {
            width: 70px;
            height: 70px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            position: relative;
            transition: all 0.4s ease;
        }

        .process-card:nth-child(1) .process-icon {
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(124, 58, 237, 0.08) 100%);
            border: 1px solid rgba(168, 85, 247, 0.2);
        }

        .process-card:nth-child(2) .process-icon {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(29, 78, 216, 0.08) 100%);
            border: 1px solid rgba(59, 130, 246, 0.2);
        }

        .process-card:nth-child(3) .process-icon {
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, rgba(190, 24, 93, 0.08) 100%);
            border: 1px solid rgba(236, 72, 153, 0.2);
        }

        .process-card:nth-child(4) .process-icon {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.08) 100%);
            border: 1px solid rgba(16, 185, 129, 0.2);
        }

        .process-card:hover .process-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .process-icon i {
            font-size: 28px;
        }

        .process-card:nth-child(1) .process-icon i { color: #A855F7; }
        .process-card:nth-child(2) .process-icon i { color: #3B82F6; }
        .process-card:nth-child(3) .process-icon i { color: #EC4899; }
        .process-card:nth-child(4) .process-icon i { color: #10B981; }

        .process-card-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 12px;
            line-height: 1.4;
            transition: color 0.3s ease;
        }

        .process-card:nth-child(1):hover .process-card-title { color: #A855F7; }
        .process-card:nth-child(2):hover .process-card-title { color: #3B82F6; }
        .process-card:nth-child(3):hover .process-card-title { color: #EC4899; }
        .process-card:nth-child(4):hover .process-card-title { color: #10B981; }

        .process-card-text {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.7;
            margin-bottom: 15px;
        }

        .process-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.4);
            transition: all 0.3s ease;
        }

        .process-link i {
            font-size: 10px;
            transition: transform 0.3s ease;
        }

        .process-card:nth-child(1):hover .process-link { color: #A855F7; }
        .process-card:nth-child(2):hover .process-link { color: #3B82F6; }
        .process-card:nth-child(3):hover .process-link { color: #EC4899; }
        .process-card:nth-child(4):hover .process-link { color: #10B981; }

        .process-card:hover .process-link i {
            transform: translateX(4px);
        }

        /* Process Mobile Styles */
        @media (max-width: 1024px) {
            .process-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-grid::before {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .process-section {
                padding: 40px 16px;
            }

            .process-header {
                margin-bottom: 35px;
            }

            .process-title {
                font-size: 24px;
            }

            .process-subtitle {
                font-size: 13px;
            }

            .process-grid {
                gap: 15px;
            }

            .process-card {
                padding: 22px 18px;
            }

            .process-step {
                width: 26px;
                height: 26px;
                font-size: 11px;
                top: 15px;
                right: 15px;
            }

            .process-icon {
                width: 55px;
                height: 55px;
                margin-bottom: 18px;
                border-radius: 10px;
            }

            .process-icon i {
                font-size: 22px;
            }

            .process-card-title {
                font-size: 15px;
                margin-bottom: 8px;
            }

            .process-card-text {
                font-size: 12px;
                line-height: 1.6;
                margin-bottom: 12px;
            }

            .process-link {
                font-size: 11px;
            }
        }

        @media (max-width: 480px) {
            .process-section {
                padding: 30px 12px;
            }

            .process-badge {
                padding: 6px 14px;
            }

            .process-badge span {
                font-size: 11px;
            }

            .process-title {
                font-size: 20px;
            }

            .process-subtitle {
                font-size: 12px;
            }

            .process-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .process-card {
                padding: 18px 15px;
            }

            .process-step {
                width: 24px;
                height: 24px;
                font-size: 10px;
                opacity: 1;
            }

            .process-icon {
                width: 48px;
                height: 48px;
                margin-bottom: 14px;
            }

            .process-icon i {
                font-size: 20px;
            }

            .process-card-title {
                font-size: 14px;
            }

            .process-card-text {
                font-size: 11px;
            }
        }

        /* ==================== */
        /* PORTFOLIO SECTION */
        /* ==================== */
        .portfolio-section {
            padding: 60px 20px;
            background: linear-gradient(180deg, #FAFBFF 0%, #F0F4FF 50%, #FAFBFF 100%);
            position: relative;
            overflow: hidden;
        }

        .portfolio-section::before {
            content: '';
            position: absolute;
            top: 10%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(108, 92, 231, 0.06) 0%, transparent 60%);
            border-radius: 50%;
            pointer-events: none;
        }

        .portfolio-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .portfolio-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 45px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .portfolio-header-left {
            max-width: 700px;
        }

        .portfolio-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 12px;
        }

        .portfolio-label::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
        }

        .portfolio-title {
            font-size: 34px;
            font-weight: 700;
            color: var(--dark);
            line-height: 1.3;
            margin-bottom: 15px;
        }

        .portfolio-title span {
            color: var(--primary);
        }

        .portfolio-subtitle {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.7;
        }

        .portfolio-header-right {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .view-all-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            border: 2px solid var(--dark);
            border-radius: 50%;
            font-size: 12px;
            font-weight: 600;
            color: var(--dark);
            transition: all 0.3s ease;
            text-align: center;
            gap: 4px;
        }

        .view-all-btn i {
            font-size: 16px;
            transform: rotate(-45deg);
            transition: transform 0.3s ease;
        }

        .view-all-btn:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--white);
        }

        .view-all-btn:hover i {
            transform: rotate(0deg);
        }

        .portfolio-nav {
            display: flex;
            gap: 10px;
        }

        .portfolio-nav-btn {
            width: 45px;
            height: 45px;
            border: 2px solid #ddd;
            border-radius: 50%;
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: var(--text-light);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .portfolio-nav-btn:hover,
        .portfolio-nav-btn.active {
            border-color: var(--primary);
            color: var(--primary);
            background: rgba(108, 92, 231, 0.05);
        }

        /* Portfolio Slider */
        .portfolio-slider {
            position: relative;
            overflow: hidden;
        }

        .portfolio-track {
            display: flex;
            gap: 25px;
            transition: transform 0.5s ease;
        }

        .portfolio-card {
            flex-shrink: 0;
            width: calc(33.333% - 17px);
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(108, 92, 231, 0.08);
            transition: all 0.4s ease;
        }

        .portfolio-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 60px rgba(108, 92, 231, 0.15);
            border-color: rgba(108, 92, 231, 0.2);
        }

        .portfolio-image {
            position: relative;
            height: 200px;
            overflow: hidden;
            background: linear-gradient(135deg, #f0f0f5 0%, #e8e8f0 100%);
        }

        .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-image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 30%, rgba(108, 92, 231, 0.9) 100%);
            opacity: 0;
            display: flex;
            align-items: flex-end;
            padding: 20px;
            transition: opacity 0.4s ease;
        }

        .portfolio-card:hover .portfolio-image-overlay {
            opacity: 1;
        }

        .portfolio-image-overlay span {
            color: var(--white);
            font-size: 13px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .portfolio-category {
            position: absolute;
            top: 15px;
            left: 15px;
            padding: 6px 14px;
            background: var(--white);
            border-radius: 10px;
            font-size: 11px;
            font-weight: 600;
            color: var(--primary);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .portfolio-content {
            padding: 25px;
        }

        .portfolio-client {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
        }

        .portfolio-client-logo {
            width: 50px;
            height: 50px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 700;
            color: var(--white);
            overflow: hidden;
        }

        .portfolio-client-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .portfolio-client-logo.gradient-1 { background: linear-gradient(135deg, #667eea, #764ba2); }
        .portfolio-client-logo.gradient-2 { background: linear-gradient(135deg, #f093fb, #f5576c); }
        .portfolio-client-logo.gradient-3 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
        .portfolio-client-logo.gradient-4 { background: linear-gradient(135deg, #43e97b, #38f9d7); }
        .portfolio-client-logo.gradient-5 { background: linear-gradient(135deg, #fa709a, #fee140); }
        .portfolio-client-logo.gradient-6 { background: linear-gradient(135deg, #a18cd1, #fbc2eb); }

        .portfolio-client-name {
            font-size: 20px;
            font-weight: 700;
            color: var(--dark);
        }

        .portfolio-desc {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .portfolio-stats {
            display: flex;
            gap: 20px;
            padding: 18px 0;
            border-top: 1px solid #f0f0f5;
            border-bottom: 1px solid #f0f0f5;
            margin-bottom: 18px;
        }

        .portfolio-stat {
            flex: 1;
            text-align: center;
        }

        .portfolio-stat-value {
            font-size: 22px;
            font-weight: 700;
            color: var(--dark);
            line-height: 1;
            margin-bottom: 4px;
        }

        .portfolio-stat-label {
            font-size: 11px;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .portfolio-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .portfolio-link i {
            font-size: 12px;
            transform: rotate(-45deg);
            transition: transform 0.3s ease;
        }

        .portfolio-link:hover {
            color: var(--primary-dark);
        }

        .portfolio-link:hover i {
            transform: rotate(0deg);
        }

        /* Portfolio Dots */
        .portfolio-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 35px;
        }

        .portfolio-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .portfolio-dot.active {
            width: 30px;
            border-radius: 5px;
            background: var(--primary);
        }

        /* Portfolio Mobile Styles */
        @media (max-width: 1024px) {
            .portfolio-card {
                width: calc(50% - 13px);
            }
        }

        @media (max-width: 768px) {
            .portfolio-section {
                padding: 40px 16px;
                overflow-x: hidden;
            }

            .portfolio-header {
                flex-direction: column;
                text-align: center;
                margin-bottom: 30px;
            }

            .portfolio-header-left {
                max-width: 100%;
            }

            .portfolio-title {
                font-size: 24px;
            }

            .portfolio-subtitle {
                font-size: 13px;
            }

            /* Hide View All and navigation buttons on mobile */
            .portfolio-header-right {
                display: none !important;
            }

            .portfolio-card {
                width: calc(100vw - 32px);
                margin: 0;
                flex-shrink: 0;
                scroll-snap-align: start;
            }

            .portfolio-track {
                gap: 16px;
                padding: 0;
                scroll-snap-type: x proximity;
                -webkit-overflow-scrolling: touch;
            }

            .portfolio-slider {
                overflow-x: auto;
                scroll-snap-type: x proximity;
                -webkit-overflow-scrolling: touch;
                padding: 0;
                margin: 0;
                padding-left: 16px;
                padding-right: 16px;
            }

            .portfolio-image {
                height: 180px;
            }

            .portfolio-content {
                padding: 20px;
            }

            .portfolio-client-logo {
                width: 45px;
                height: 45px;
            }

            .portfolio-client-name {
                font-size: 18px;
            }

            .portfolio-desc {
                font-size: 13px;
            }

            .portfolio-stats {
                gap: 15px;
                padding: 15px 0;
            }

            .portfolio-stat-value {
                font-size: 18px;
            }

            .portfolio-stat-label {
                font-size: 10px;
            }
        }

        @media (max-width: 480px) {
            .portfolio-section {
                padding: 30px 12px;
            }

            .portfolio-title {
                font-size: 20px;
            }

            .view-all-btn {
                width: 60px;
                height: 60px;
                font-size: 10px;
            }

            .portfolio-nav-btn {
                width: 36px;
                height: 36px;
                font-size: 12px;
            }

            .portfolio-card {
                width: calc(100% - 24px);
                margin: 0 12px;
            }

            .portfolio-image {
                height: 160px;
            }

            .portfolio-content {
                padding: 16px;
            }

            .portfolio-client-logo {
                width: 40px;
                height: 40px;
                border-radius: 10px;
            }

            .portfolio-client-name {
                font-size: 16px;
            }

            .portfolio-stats {
                gap: 10px;
            }

            .portfolio-stat-value {
                font-size: 16px;
            }

            .portfolio-dots {
                margin-top: 25px;
            }
        }

        /* ==================== */
        /* ==================== */
        /* ==================== */
        /* ==================== */
        /* ==================== */
        /* INDUSTRIES SECTION */
        /* ==================== */
        .industries-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, #0c0c18 0%, #13132a 50%, #0c0c18 100%);
            position: relative;
            overflow: hidden;
        }

        .industries-section::before {
            content: '';
            position: absolute;
            top: 20%;
            right: 5%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(108, 92, 231, 0.1) 0%, transparent 60%);
            border-radius: 50%;
            pointer-events: none;
        }

        .industries-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .industries-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .industries-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(162, 155, 254, 0.1));
            border: 1px solid rgba(108, 92, 231, 0.4);
            border-radius: 10px;
            margin-bottom: 18px;
        }

        .industries-badge span {
            font-size: 12px;
            font-weight: 600;
            color: #A29BFE;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .industries-title {
            font-size: 36px;
            font-weight: 700;
            color: var(--white);
            line-height: 1.3;
            margin-bottom: 15px;
        }

        .industries-title span {
            background: linear-gradient(135deg, var(--primary) 0%, #A29BFE 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .industries-subtitle {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.6);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Industry Showcase - Left Right Layout */
        .industry-showcase-wrapper {
            position: relative;
        }

        .industry-showcase-slider {
            overflow: hidden;
        }

        .industry-showcase-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .industry-showcase-item {
            flex-shrink: 0;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        /* Left Side - Main Image */
        .industry-showcase-left {
            position: relative;
            padding-bottom: 30px;
        }

        .industry-main-image {
            position: relative;
            border-radius: 16px;
            overflow: visible;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
        }

        .industry-main-image img {
            width: 100%;
            height: 480px;
            object-fit: cover;
            border-radius: 16px;
            transition: transform 0.5s ease;
        }

        .industry-showcase-item:hover .industry-main-image img {
            transform: scale(1.02);
        }

        .industry-image-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            padding: 10px 20px;
            background: var(--primary);
            border-radius: 8px;
            font-size: 12px;
            font-weight: 600;
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 2;
            box-shadow: 0 5px 20px rgba(108, 92, 231, 0.4);
        }

        /* OPTION 6: Grid Corner - Integrated in Image */
        .industry-work-samples {
            position: absolute;
            bottom: 0;
            right: 0;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3px;
            z-index: 3;
            background: rgba(0, 0, 0, 0.8);
            padding: 10px;
            border-radius: 12px 0 0 0;
        }

        .industry-work-samples::before {
            content: 'OUR WORK';
            position: absolute;
            top: -25px;
            right: 10px;
            font-size: 9px;
            font-weight: 600;
            color: var(--white);
            letter-spacing: 2px;
            background: var(--primary);
            padding: 4px 10px;
            border-radius: 4px 4px 0 0;
        }

        .work-sample-thumb {
            width: 70px;
            height: 50px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 4px;
        }

        .work-sample-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s ease;
            filter: brightness(0.9);
        }

        .work-sample-thumb:hover {
            transform: scale(1.1);
            z-index: 10;
        }

        .work-sample-thumb:hover img {
            filter: brightness(1.1);
        }

        .work-sample-more {
            display: none;
        }

        /* Lightbox */
        .lightbox-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .lightbox-overlay.active {
            display: flex;
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90vh;
        }

        .lightbox-content img {
            max-width: 100%;
            max-height: 85vh;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .lightbox-close {
            position: absolute;
            top: -50px;
            right: 0;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--white);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .lightbox-close:hover {
            background: var(--primary);
            border-color: var(--primary);
            transform: rotate(90deg);
        }

        .lightbox-caption {
            text-align: center;
            margin-top: 15px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--white);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .lightbox-nav:hover {
            background: var(--primary);
            border-color: var(--primary);
        }

        .lightbox-prev {
            left: -70px;
        }

        .lightbox-next {
            right: -70px;
        }

        @media (max-width: 768px) {
            .lightbox-nav {
                width: 40px;
                height: 40px;
                font-size: 14px;
            }

            .lightbox-prev {
                left: -50px;
            }

            .lightbox-next {
                right: -50px;
            }
        }

        /* Right Side - Content */
        .industry-showcase-right {
            padding: 20px 0;
        }

        .industry-showcase-title {
            font-size: 30px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 15px;
        }

        .industry-showcase-desc {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
            margin-bottom: 25px;
        }

        /* Services Points */
        .industry-services-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 30px;
        }

        .industry-service-point {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.85);
            transition: all 0.3s ease;
        }

        .industry-service-point:hover {
            color: var(--white);
            transform: translateX(3px);
        }

        .industry-service-point i {
            color: var(--primary);
            font-size: 12px;
        }

        /* CTA Button */
        .industry-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            background: linear-gradient(135deg, var(--primary), #7c6fef);
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            color: var(--white);
            transition: all 0.3s ease;
        }

        .industry-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(108, 92, 231, 0.4);
        }

        .industry-cta-btn i {
            font-size: 12px;
            transition: transform 0.3s ease;
        }

        .industry-cta-btn:hover i {
            transform: translateX(5px);
        }

        /* Navigation */
        .industries-showcase-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-top: 45px;
        }

        .industries-showcase-nav-btn {
            width: 50px;
            height: 50px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: rgba(255, 255, 255, 0.6);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .industries-showcase-nav-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: rgba(108, 92, 231, 0.1);
        }

        .industries-showcase-dots {
            display: flex;
            gap: 10px;
        }

        .industries-showcase-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .industries-showcase-dot.active {
            width: 35px;
            border-radius: 6px;
            background: var(--primary);
        }

        /* Mobile Styles */
        @media (max-width: 1024px) {
            .industry-showcase-item {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .industry-main-image img {
                height: 380px;
            }

            .industry-showcase-title {
                font-size: 26px;
            }

            .industry-work-samples {
                bottom: -20px;
                right: -10px;
            }

            .work-sample-thumb {
                width: 80px;
                height: 60px;
            }
        }

        @media (max-width: 768px) {
            .industries-section {
                padding: 40px 0;
                overflow: visible;
            }

            .industries-header {
                padding: 0 16px;
            }

            .industries-title {
                font-size: 24px;
            }

            .industries-subtitle {
                font-size: 13px;
            }

            /* Hide desktop slider nav buttons, keep dots */
            .industries-showcase-nav {
                justify-content: center;
            }

            .industries-showcase-nav-btn {
                display: none;
            }

            /* Make showcase horizontal scrollable */
            .industry-showcase-slider {
                overflow-x: auto;
                overflow-y: visible;
                -webkit-overflow-scrolling: touch;
                scroll-snap-type: x proximity;
                scrollbar-width: none;
                -ms-overflow-style: none;
                touch-action: pan-y pan-x;
            }

            .industry-showcase-slider::-webkit-scrollbar {
                display: none;
            }

            .industry-showcase-track {
                display: flex;
                gap: 16px;
                padding: 20px 16px;
                width: max-content;
            }

            /* Compact card design for mobile */
            .industry-showcase-item {
                flex-shrink: 0;
                width: 280px;
                display: flex;
                flex-direction: column;
                gap: 0;
                background: var(--white);
                border-radius: 16px;
                overflow: hidden;
                box-shadow: 0 10px 30px rgba(0,0,0,0.15);
                touch-action: pan-y pan-x;
            }

            .industry-showcase-left {
                padding: 0;
                position: relative;
            }

            .industry-main-image {
                border-radius: 0;
                box-shadow: none;
            }

            .industry-main-image img {
                height: 160px;
                border-radius: 0;
            }

            .industry-image-badge {
                top: 12px;
                left: 12px;
                padding: 6px 12px;
                font-size: 10px;
            }

            /* Hide work samples thumbnails on mobile */
            .industry-work-samples {
                display: none;
            }

            /* Right side content - compact */
            .industry-showcase-right {
                padding: 16px;
            }

            .industry-showcase-title {
                font-size: 16px;
                margin-bottom: 8px;
                line-height: 1.3;
                color: var(--dark);
            }

            .industry-showcase-desc {
                font-size: 12px;
                line-height: 1.5;
                margin-bottom: 12px;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
                color: var(--text-light);
            }

            .industry-services-grid {
                grid-template-columns: 1fr;
                gap: 6px;
                margin-bottom: 12px;
                max-height: 72px;
                overflow: hidden;
            }

            .industry-service-point {
                font-size: 11px;
                padding: 4px 0;
                color: var(--text);
            }

            .industry-service-point i {
                font-size: 10px;
                width: 14px;
                color: var(--primary);
            }

            .industry-cta-btn {
                padding: 10px 16px;
                font-size: 12px;
                width: 100%;
                justify-content: center;
            }

            /* Navigation dots for mobile */
            .industries-showcase-dots {
                display: flex;
                justify-content: center;
                gap: 8px;
            }

            .industries-showcase-dot {
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background: rgba(108, 92, 231, 0.3);
                border: none;
                cursor: pointer;
                transition: all 0.3s ease;
            }

            .industries-showcase-dot.active {
                background: var(--primary);
                width: 24px;
                border-radius: 4px;
            }
        }

        @media (max-width: 480px) {
            .industries-section {
                padding: 30px 0;
            }

            .industries-title {
                font-size: 20px;
            }

            .industry-showcase-item {
                width: 260px;
            }

            .industry-main-image img {
                height: 140px;
            }

            .industry-showcase-title {
                font-size: 15px;
            }

            .industry-showcase-desc {
                font-size: 11px;
                -webkit-line-clamp: 2;
            }

            .industry-services-grid {
                max-height: 80px;
                overflow: hidden;
            }
        }

        /* ==================== */
        /* TECHNOLOGIES SECTION */
        /* ==================== */
        
        /* Tech Hero - Left Right Split */
        .tech-hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 550px;
        }

        .tech-hero-content {
            background: linear-gradient(135deg, #0c0c18 0%, #1a1a2e 100%);
            padding: 80px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .tech-hero-content::before {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(108, 92, 231, 0.15) 0%, transparent 60%);
            border-radius: 50%;
        }

        .tech-hero-badge {
            display: inline-flex;
            padding: 8px 18px;
            background: rgba(108, 92, 231, 0.2);
            border: 1px solid rgba(108, 92, 231, 0.4);
            border-radius: 8px;
            margin-bottom: 20px;
            width: fit-content;
        }

        .tech-hero-badge span {
            font-size: 11px;
            font-weight: 600;
            color: #A29BFE;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .tech-hero-title {
            font-size: 40px;
            font-weight: 700;
            color: var(--white);
            line-height: 1.2;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .tech-hero-title span {
            background: linear-gradient(135deg, var(--primary) 0%, #A29BFE 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .tech-hero-desc {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }

        .tech-hero-stats {
            display: flex;
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        .tech-hero-stat {
            text-align: left;
        }

        .tech-hero-stat-value {
            font-size: 36px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .tech-hero-stat-label {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
        }

        .tech-hero-image {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #1a1a2e 0%, #0c0c18 100%);
        }

        .tech-hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.8;
        }

        .tech-hero-floating-cards {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
        }

        .tech-floating-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            width: 100%;
            max-width: 400px;
        }

        .tech-float-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            padding: 20px 15px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .tech-float-card:hover {
            background: rgba(108, 92, 231, 0.2);
            transform: translateY(-5px);
        }

        .tech-float-card i {
            font-size: 28px;
            margin-bottom: 10px;
            display: block;
        }

        .tech-float-card span {
            font-size: 12px;
            font-weight: 600;
            color: var(--white);
        }

        /* Website Types Section - Accordion Style */
        .website-types-section {
            padding: 80px 20px;
            background: var(--white);
        }

        .website-types-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .website-types-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .website-types-badge {
            display: inline-flex;
            padding: 8px 18px;
            background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(108, 92, 231, 0.05));
            border-radius: 10px;
            margin-bottom: 18px;
        }

        .website-types-badge span {
            font-size: 11px;
            font-weight: 600;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .website-types-title {
            font-size: 36px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
        }

        .website-types-title span {
            color: var(--primary);
        }

        .website-types-subtitle {
            font-size: 15px;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Accordion List */
        .website-accordion {
            display: flex;
            flex-direction: column;
        }

        .accordion-item {
            border: 1px solid #eee;
            border-radius: 16px;
            margin-bottom: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .accordion-item:hover {
            border-color: rgba(108, 92, 231, 0.3);
            box-shadow: 0 5px 20px rgba(108, 92, 231, 0.08);
        }

        .accordion-item.active {
            border-color: var(--primary);
            box-shadow: 0 8px 30px rgba(108, 92, 231, 0.12);
        }

        .accordion-header {
            display: grid;
            grid-template-columns: 70px 280px 1fr auto;
            align-items: center;
            gap: 25px;
            padding: 25px 25px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .accordion-header:hover {
            background: #fafbff;
        }

        .accordion-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            padding: 8px;
        }

        .accordion-icon svg {
            width: 100%;
            height: 100%;
        }

        .accordion-item:nth-child(1) .accordion-icon {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
        }
        .accordion-item:nth-child(2) .accordion-icon {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
        }
        .accordion-item:nth-child(3) .accordion-icon {
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(236, 72, 153, 0.05));
        }
        .accordion-item:nth-child(4) .accordion-icon {
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
        }

        .accordion-title-wrap h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 5px;
        }

        .accordion-title-wrap .price-tag {
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
        }

        .accordion-desc {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.6;
            padding-right: 40px;
        }

        .accordion-arrow {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            border: 2px solid #eee;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .accordion-arrow i {
            font-size: 16px;
            color: var(--text-light);
            transition: transform 0.3s ease;
        }

        .accordion-header:hover .accordion-arrow {
            border-color: var(--primary);
            background: var(--primary);
        }

        .accordion-header:hover .accordion-arrow i {
            color: white;
        }

        /* Expanded State */
        .accordion-item.active .accordion-header {
            background: #fafbff;
        }

        .accordion-item.active .accordion-arrow {
            border-color: var(--primary);
            background: var(--primary);
        }

        .accordion-item.active .accordion-arrow i {
            color: white;
            transform: rotate(45deg);
        }

        /* Accordion Content */
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
            background: linear-gradient(180deg, #f8faff 0%, #fff 100%);
        }

        .accordion-item.active .accordion-content {
            max-height: 800px;
        }

        .accordion-content-inner {
            padding: 30px;
            border-top: 1px solid #eee;
        }

        /* Rich Content Layout */
        .accordion-rich-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .accordion-features {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .accordion-features h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .accordion-features h4 i {
            color: var(--primary);
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px 15px;
            background: white;
            border-radius: 10px;
            border: 1px solid #eee;
        }

        .feature-item i {
            color: #22C55E;
            font-size: 14px;
            margin-top: 2px;
        }

        .feature-item span {
            font-size: 13px;
            color: var(--text-light);
            line-height: 1.5;
        }

        .accordion-illustrations {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .mini-illustration {
            background: white;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            border: 1px solid #eee;
            transition: all 0.3s ease;
        }

        .mini-illustration:hover {
            border-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(108, 92, 231, 0.1);
        }

        .mini-illustration svg {
            width: 60px;
            height: 60px;
            margin-bottom: 10px;
        }

        .mini-illustration h5 {
            font-size: 13px;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 4px;
        }

        .mini-illustration p {
            font-size: 11px;
            color: var(--text-light);
            line-height: 1.4;
        }

        /* Best For Section */
        .best-for-section {
            margin-top: 20px;
            padding: 15px 20px;
            background: linear-gradient(135deg, rgba(108, 92, 231, 0.08), rgba(108, 92, 231, 0.03));
            border-radius: 12px;
            border-left: 4px solid var(--primary);
        }

        .best-for-section h4 {
            font-size: 13px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .best-for-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .best-for-tag {
            padding: 6px 12px;
            background: white;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            color: var(--dark);
        }

        .tech-tag {
            padding: 8px 16px;
            background: var(--white);
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 500;
            color: var(--dark);
            transition: all 0.3s ease;
        }

        .tech-tag:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        /* Mobile Responsive for Accordion Content */
        @media (max-width: 900px) {
            .accordion-rich-content {
                grid-template-columns: 1fr;
            }
            
            .accordion-illustrations {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 600px) {
            .accordion-illustrations {
                grid-template-columns: 1fr;
            }
            
            .accordion-content-inner {
                padding: 20px;
            }
        }

        /* Mobile Responsive */
        @media (max-width: 1024px) {
            .accordion-header {
                grid-template-columns: 60px 1fr auto;
                gap: 20px;
            }

            .accordion-desc {
                display: none;
            }

            .accordion-content-inner {
                padding-left: 100px;
            }
        }

        @media (max-width: 768px) {
            .website-types-section {
                padding: 50px 16px;
            }

            .website-types-title {
                font-size: 28px;
            }

            .accordion-header {
                grid-template-columns: 50px 1fr auto;
                gap: 15px;
                padding: 20px 15px;
            }

            .accordion-icon {
                width: 50px;
                height: 50px;
                font-size: 22px;
            }

            .accordion-title-wrap h3 {
                font-size: 16px;
            }

            .accordion-title-wrap .price-tag {
                font-size: 12px;
            }

            .accordion-arrow {
                width: 40px;
                height: 40px;
            }

            .accordion-content-inner {
                padding: 0 15px 25px 80px;
            }

            .tech-tag {
                padding: 6px 12px;
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .website-types-title {
                font-size: 24px;
            }

            .accordion-header {
                grid-template-columns: 45px 1fr auto;
                gap: 12px;
                padding: 18px 12px;
            }

            .accordion-icon {
                width: 45px;
                height: 45px;
                font-size: 20px;
            }

            .accordion-title-wrap h3 {
                font-size: 15px;
            }

            .accordion-arrow {
                width: 36px;
                height: 36px;
            }

            .accordion-content-inner {
                padding: 0 12px 20px 70px;
            }
        }

        /* Tech Stack Section - Tabbed Educational Design */
        .tech-stack-section {
            padding: 80px 20px;
            background: linear-gradient(180deg, #FAFBFF 0%, #F0F4FF 50%, #FAFBFF 100%);
        }

        .tech-stack-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .tech-stack-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .tech-stack-badge {
            display: inline-flex;
            padding: 8px 18px;
            background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(108, 92, 231, 0.05));
            border-radius: 10px;
            margin-bottom: 18px;
        }

        .tech-stack-badge span {
            font-size: 11px;
            font-weight: 600;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .tech-stack-title {
            font-size: 36px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
        }

        .tech-stack-title span {
            color: var(--primary);
        }

        .tech-stack-subtitle {
            font-size: 15px;
            color: var(--text-light);
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Tech Tabs */
        .tech-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 40px;
            padding: 0 10px;
        }

        .tech-tab {
            padding: 12px 24px;
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-light);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .tech-tab i {
            font-size: 14px;
        }

        .tech-tab:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .tech-tab.active {
            background: var(--primary);
            border-color: var(--primary);
            color: white;
        }

        /* Tech Tab Content */
        .tech-tab-content {
            display: none;
        }

        .tech-tab-content.active {
            display: block;
            animation: fadeIn 0.4s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Category Box */
        .tech-category-box {
            background: white;
            border-radius: 20px;
            padding: 35px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid #eee;
        }

        .tech-category-header {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
            padding-bottom: 25px;
            border-bottom: 1px solid #eee;
        }

        .tech-category-icon {
            width: 70px;
            height: 70px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            flex-shrink: 0;
        }

        .tech-category-icon.frontend { background: linear-gradient(135deg, #dbeafe, #eff6ff); color: #3B82F6; }
        .tech-category-icon.backend { background: linear-gradient(135deg, #dcfce7, #f0fdf4); color: #22C55E; }
        .tech-category-icon.database { background: linear-gradient(135deg, #fef3c7, #fffbeb); color: #F59E0B; }
        .tech-category-icon.server { background: linear-gradient(135deg, #f3e8ff, #faf5ff); color: #A855F7; }
        .tech-category-icon.mobile { background: linear-gradient(135deg, #fce7f3, #fdf2f8); color: #EC4899; }
        .tech-category-icon.extras { background: linear-gradient(135deg, #e0e7ff, #eef2ff); color: #6366F1; }

        .tech-category-info h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .tech-category-info p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.7;
        }

        /* Tech Items Grid */
        .tech-items-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 20px;
        }

        .tech-item {
            display: flex;
            flex-direction: column;
            padding: 24px;
            background: linear-gradient(135deg, #fafbff 0%, #fff 100%);
            border-radius: 16px;
            border: 1px solid #f0f1f5;
            transition: all 0.3s ease;
        }

        .tech-item:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(108, 92, 231, 0.12);
        }

        .tech-item-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .tech-item-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            flex-shrink: 0;
            background: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .tech-item-info h4 {
            font-size: 17px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 3px;
        }

        .tech-item-info span {
            font-size: 12px;
            color: var(--text-light);
            font-weight: 500;
        }

        .tech-item-desc {
            font-size: 13px;
            color: #6b7280;
            line-height: 1.7;
            padding-top: 12px;
            border-top: 1px solid #f0f1f5;
        }

        /* Server Types Grid */
        .server-types-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }

        .server-type-card {
            padding: 25px;
            background: #fafbff;
            border-radius: 14px;
            border: 1px solid #f0f1f5;
            text-align: center;
            transition: all 0.3s ease;
        }

        .server-type-card:hover {
            border-color: var(--primary);
        }

        .server-type-card i {
            font-size: 32px;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .server-type-card h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .server-type-card p {
            font-size: 13px;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Provider Logos */
        .provider-section {
            margin-top: 25px;
            padding-top: 25px;
            border-top: 1px solid #eee;
        }

        .provider-section h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 15px;
            text-align: center;
        }

        .provider-logos {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .provider-logo {
            padding: 12px 20px;
            background: white;
            border-radius: 10px;
            border: 1px solid #e5e7eb;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-light);
            transition: all 0.3s ease;
        }

        .provider-logo:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        /* Extras Grid */
        .extras-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }

        .extras-card {
            padding: 25px;
            background: #fafbff;
            border-radius: 14px;
            border: 1px solid #f0f1f5;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .extras-card-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            flex-shrink: 0;
        }

        .extras-card-icon.ssl { background: #dcfce7; color: #22C55E; }
        .extras-card-icon.email { background: #dbeafe; color: #3B82F6; }
        .extras-card-icon.cms { background: #fef3c7; color: #F59E0B; }
        .extras-card-icon.crm { background: #f3e8ff; color: #A855F7; }
        .extras-card-icon.admin { background: #fce7f3; color: #EC4899; }

        .extras-card-info h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 5px;
        }

        .extras-card-info p {
            font-size: 13px;
            color: var(--text-light);
            line-height: 1.6;
        }

        .included-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            margin-top: 10px;
            padding: 5px 12px;
            background: #dcfce7;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            color: #16A34A;
        }

        .included-badge i {
            font-size: 10px;
        }

        /* Mobile Responsive */
        @media (max-width: 900px) {
            .server-types-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .tech-stack-section {
                padding: 50px 16px;
            }

            .tech-stack-title {
                font-size: 28px;
            }

            .tech-tabs {
                gap: 8px;
            }

            .tech-tab {
                padding: 10px 16px;
                font-size: 12px;
            }

            .tech-category-box {
                padding: 25px 20px;
            }

            .tech-category-header {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .tech-category-icon {
                width: 60px;
                height: 60px;
                font-size: 26px;
            }

            .tech-category-info h3 {
                font-size: 20px;
            }

            .tech-items-grid {
                grid-template-columns: 1fr;
            }

            .extras-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .tech-stack-title {
                font-size: 24px;
            }

            .tech-tab {
                padding: 8px 14px;
                font-size: 11px;
            }

            .tech-tab i {
                display: none;
            }
        }

        /* FAQ SECTION - Clean Modern Design */
        /* ==================== */
        .faq-section {
            padding: 80px 20px;
            background: var(--white);
        }

        .faq-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .faq-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
            align-items: start;
        }

        .faq-left {
            position: sticky;
            top: 100px;
        }

        .faq-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 18px;
            background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(108, 92, 231, 0.05));
            border-radius: 10px;
            margin-bottom: 20px;
        }

        .faq-badge span {
            font-size: 11px;
            font-weight: 600;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .faq-title {
            font-size: 36px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .faq-title span {
            color: var(--primary);
        }

        .faq-subtitle {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 30px;
        }

        .faq-contact-box {
            background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
            border-radius: 16px;
            padding: 25px;
            border: 1px solid rgba(108, 92, 231, 0.1);
        }

        .faq-contact-box p {
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 15px;
        }

        .faq-contact-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: var(--primary);
            color: white;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .faq-contact-btn:hover {
            background: #5a3fd9;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(108, 92, 231, 0.3);
        }

        /* FAQ List - Right Side */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .faq-item {
            border-bottom: 1px solid #eee;
            overflow: hidden;
        }

        .faq-item:first-child {
            border-top: 1px solid #eee;
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 25px 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-question h3 {
            font-size: 16px;
            font-weight: 600;
            color: var(--dark);
            flex: 1;
            padding-right: 20px;
            transition: color 0.3s ease;
        }

        .faq-question:hover h3 {
            color: var(--primary);
        }

        .faq-item.active .faq-question h3 {
            color: var(--primary);
        }

        .faq-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 2px solid #eee;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 14px;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .faq-question:hover .faq-icon {
            border-color: var(--primary);
            color: var(--primary);
        }

        .faq-item.active .faq-icon {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--white);
        }

        .faq-item.active .faq-icon i {
            transform: rotate(45deg);
        }

        .faq-icon i {
            transition: transform 0.3s ease;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .faq-answer p {
            padding: 0 0 25px 0;
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.8;
        }

        /* Mobile Responsive */
        @media (max-width: 900px) {
            .faq-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .faq-left {
                position: static;
                text-align: center;
            }

            .faq-contact-box {
                max-width: 400px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .faq-section {
                padding: 50px 16px;
            }

            .faq-title {
                font-size: 28px;
            }

            .faq-question {
                padding: 20px 0;
            }

            .faq-question h3 {
                font-size: 15px;
            }
        }

        @media (max-width: 480px) {
            .faq-title {
                font-size: 24px;
            }

            .faq-question h3 {
                font-size: 14px;
            }

            .faq-icon {
                width: 32px;
                height: 32px;
            }
        }

        /* ==================== */
        /* CTA SECTION */
        /* ==================== */
        .cta-section {
            padding: 70px 20px;
            background: linear-gradient(135deg, var(--primary) 0%, #5B4AE4 50%, #4A3AE0 100%);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            pointer-events: none;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 50%;
            pointer-events: none;
        }

        .cta-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .cta-title {
            font-size: 36px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .cta-subtitle {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 30px;
            max-width: 550px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .cta-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: var(--white);
            color: var(--primary);
            border-radius: 10px;
            font-size: 15px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .cta-btn-primary:hover {
            background: var(--dark);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .cta-btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 32px;
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.4);
            border-radius: 10px;
            font-size: 15px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .cta-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--white);
        }

        /* ==================== */
        /* FOOTER */
        /* ==================== */
        .footer {
            background: #0a0a12;
            padding: 60px 20px 0;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-brand {
            max-width: 280px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 18px;
        }

        .footer-logo svg {
            width: 36px;
            height: 36px;
        }

        .footer-logo-text {
            font-size: 20px;
            font-weight: 700;
            color: var(--white);
        }

        .footer-logo-text span {
            display: block;
            font-size: 11px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.5);
            margin-top: 2px;
        }

        .footer-desc {
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .footer-social {
            display: flex;
            gap: 10px;
        }

        .footer-social a {
            width: 38px;
            height: 38px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .footer-column h4 {
            font-size: 16px;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 20px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .footer-links a i {
            font-size: 10px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .footer-links a:hover i {
            opacity: 1;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 15px;
        }

        .footer-contact-item i {
            color: var(--primary);
            font-size: 16px;
            margin-top: 3px;
        }

        .footer-contact-item span {
            font-size: 14px;
            line-height: 1.6;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 0;
            flex-wrap: wrap;
            gap: 15px;
        }

        .footer-copyright {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
        }

        .footer-copyright a {
            color: var(--primary);
        }

        .footer-bottom-links {
            display: flex;
            gap: 25px;
        }

        .footer-bottom-links a {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: var(--primary);
        }

        /* Mobile Styles for New Sections */
        @media (max-width: 1024px) {
            .industries-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .industries-section,
            .tech-section,
            .faq-section {
                padding: 40px 16px;
            }

            .industries-title,
            .tech-title,
            .faq-title {
                font-size: 24px;
            }

            .industries-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .industry-card {
                padding: 22px 16px;
            }

            .industry-icon {
                width: 55px;
                height: 55px;
                border-radius: 12px;
            }

            .industry-icon i {
                font-size: 22px;
            }

            .industry-name {
                font-size: 14px;
            }

            .industry-desc {
                font-size: 11px;
            }

            .industry-arrow {
                display: none;
            }

            .industries-particles {
                display: none;
            }

            .tech-category {
                padding: 20px;
            }

            .tech-item {
                padding: 10px 14px;
            }

            .tech-item-icon {
                width: 28px;
                height: 28px;
                font-size: 16px;
            }

            .tech-item-name {
                font-size: 12px;
            }

            .faq-question {
                padding: 15px 18px;
            }

            .faq-question h3 {
                font-size: 14px;
            }

            .cta-section {
                padding: 50px 16px;
            }

            .cta-title {
                font-size: 26px;
            }

            .cta-subtitle {
                font-size: 14px;
            }

            .cta-btn-primary,
            .cta-btn-secondary {
                padding: 14px 24px;
                font-size: 14px;
            }

            .footer {
                padding: 35px 15px 20px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .footer-brand {
                max-width: 100%;
                text-align: center;
            }

            .footer-logo {
                justify-content: center;
            }

            .footer-logo svg {
                width: 32px;
                height: 32px;
            }

            .footer-logo-text {
                font-size: 18px;
            }

            .footer-desc {
                font-size: 12px;
                line-height: 1.6;
            }

            .footer-social {
                justify-content: center;
            }

            .footer-social a {
                width: 36px;
                height: 36px;
                font-size: 14px;
            }

            .footer-column h4 {
                font-size: 15px;
                margin-bottom: 15px;
            }

            .footer-links a {
                font-size: 13px;
                padding: 6px 0;
            }

            .footer-contact-item {
                font-size: 12px;
                gap: 10px;
                margin-bottom: 10px;
            }

            .footer-contact-item i {
                font-size: 14px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 10px;
                padding-top: 20px;
                margin-top: 25px;
            }

            .footer-copyright {
                font-size: 12px;
            }

            .footer-bottom-links {
                gap: 15px;
            }

            .footer-bottom-links a {
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            /* Even more compact header */
            .header-container {
                padding: 8px 12px;
            }

            .logo-icon svg {
                width: 28px;
                height: 28px;
            }

            .logo-text {
                font-size: 14px;
            }

            .logo-text span {
                font-size: 9px;
            }

            .mobile-toggle {
                font-size: 20px;
                padding: 6px;
            }

            /* Compact hero */
            .hero {
                padding: 60px 12px 20px;
            }

            .hero-badge {
                padding: 6px 12px;
                font-size: 11px;
            }

            .hero-content h1 {
                font-size: 20px;
                line-height: 1.3;
            }

            .hero-content p {
                font-size: 12px;
            }

            .hero-buttons .btn {
                padding: 10px 16px;
                font-size: 12px;
            }

            .hero-trust {
                gap: 8px;
            }

            .hero-trust-item {
                font-size: 10px;
            }

            /* Compact sections */
            .industries-section,
            .tech-section,
            .faq-section {
                padding: 25px 12px;
            }

            .industries-title,
            .tech-title,
            .faq-title {
                font-size: 18px;
            }

            .industries-badge {
                padding: 5px 12px;
            }

            .industries-badge span {
                font-size: 9px;
                letter-spacing: 1px;
            }

            .industries-grid {
                gap: 10px;
            }

            .industry-card {
                padding: 14px 12px;
            }

            .industry-card::before,
            .industry-card::after {
                display: none;
            }

            .industry-icon {
                width: 42px;
                height: 42px;
                margin-bottom: 10px;
                border-radius: 8px;
            }

            .industry-icon i {
                font-size: 18px;
            }

            .industry-name {
                font-size: 12px;
                margin-bottom: 3px;
            }

            .industry-desc {
                font-size: 9px;
                line-height: 1.4;
            }

            /* Compact CTA */
            .cta-section {
                padding: 30px 12px;
            }

            .cta-title {
                font-size: 20px;
            }

            .cta-subtitle {
                font-size: 12px;
            }

            .cta-buttons {
                flex-direction: column;
                gap: 10px;
            }

            .cta-btn-primary,
            .cta-btn-secondary {
                width: 100%;
                justify-content: center;
                padding: 12px 20px;
                font-size: 13px;
            }

            /* Compact trust badges */
            .trust-badges {
                gap: 8px;
            }

            .trust-badge-fb,
            .trust-badge-tp,
            .trust-badge-google {
                padding: 8px 12px;
                max-width: 240px;
            }

            /* Compact testimonials */
            .testimonial-card {
                width: 200px;
                padding: 12px;
            }

            .testimonial-logo {
                width: 32px;
                height: 32px;
                font-size: 7px;
            }

            .testimonial-info h4 {
                font-size: 10px;
            }

            .testimonial-title {
                font-size: 11px;
            }

            .testimonial-text {
                font-size: 10px;
            }

            /* Compact footer */
            .footer {
                padding: 30px 12px 15px;
            }

            .footer-grid {
                gap: 20px;
            }

            .footer-column h4 {
                font-size: 14px;
                margin-bottom: 12px;
            }

            .footer-links a {
                font-size: 12px;
            }

            .footer-bottom {
                padding-top: 15px;
                margin-top: 20px;
            }

            .footer-copyright,
            .footer-bottom-links a {
                font-size: 11px;
            }

            /* Compact mobile menu at 480px */
            .mobile-menu {
                width: 260px;
            }

            .mobile-menu-header {
                padding: 12px 15px;
            }

            .mobile-menu-logo svg {
                width: 28px;
                height: 28px;
            }

            .mobile-menu-logo span {
                font-size: 14px;
            }

            .mobile-menu-close {
                width: 32px;
                height: 32px;
                font-size: 16px;
            }

            .mobile-menu-links a {
                padding: 12px 15px;
                font-size: 14px;
                gap: 10px;
            }

            .mobile-menu-links a i {
                font-size: 13px;
            }

            .mobile-menu-contact {
                padding: 12px 15px;
            }

            .mobile-menu-contact a {
                font-size: 12px;
                padding: 8px 0;
            }

            .mobile-menu-contact a i {
                width: 28px;
                height: 28px;
                font-size: 12px;
            }

            .mobile-menu-social {
                padding: 12px 15px;
                gap: 10px;
            }

            .mobile-menu-social a {
                width: 34px;
                height: 34px;
                font-size: 14px;
            }
        }

        /* Mobile Hero Visual - Hidden on desktop */
        .mobile-hero-visual {
            display: none;
        }

        /* Mobile Menu Toggle */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--dark);
            padding: 8px;
            z-index: 1001;
            transition: transform 0.3s ease;
        }

        .mobile-toggle.active {
            transform: rotate(90deg);
        }

        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            z-index: 998;
            opacity: 0;
            transition: opacity 0.3s ease;
            backdrop-filter: blur(4px);
        }

        .mobile-menu-overlay.active {
            opacity: 1;
        }

        /* Mobile Menu - Redesigned */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -300px;
            width: 280px;
            height: 100vh;
            height: 100dvh;
            background: var(--white);
            z-index: 999;
            box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
            transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
            flex-direction: column;
            display: none;
        }

        .mobile-menu.active {
            right: 0;
        }

        /* Mobile Menu Header */
        .mobile-menu-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 20px;
            background: linear-gradient(135deg, var(--primary), #3b82f6);
            position: sticky;
            top: 0;
            z-index: 10;
        }

        .mobile-menu-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--white);
        }

        .mobile-menu-logo svg {
            width: 32px;
            height: 32px;
        }

        .mobile-menu-logo svg circle:first-child {
            stroke: white;
        }

        .mobile-menu-logo svg circle:last-child {
            fill: white;
        }

        .mobile-menu-logo span {
            font-size: 16px;
            font-weight: 600;
        }

        .mobile-menu-close {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
            border: none;
            color: var(--white);
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .mobile-menu-close:hover {
            background: rgba(255,255,255,0.3);
            transform: rotate(90deg);
        }

        .mobile-menu-links {
            display: flex;
            flex-direction: column;
            padding: 10px 0;
            flex: 1;
        }

        .mobile-menu-links a {
            padding: 14px 20px;
            font-size: 15px;
            font-weight: 500;
            color: var(--text);
            border-bottom: 1px solid #f5f5f5;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .mobile-menu-links a:hover,
        .mobile-menu-links a.active {
            background: linear-gradient(90deg, rgba(108, 92, 231, 0.08), transparent);
            color: var(--primary);
        }

        .mobile-menu-links a i {
            width: 20px;
            text-align: center;
            color: var(--primary);
            font-size: 14px;
        }

        .mobile-menu-contact {
            padding: 15px 20px;
            background: var(--bg);
            border-top: 1px solid #eee;
        }

        .mobile-menu-contact a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            font-size: 13px;
            color: var(--text);
        }

        .mobile-menu-contact a i {
            width: 32px;
            height: 32px;
            background: var(--white);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 14px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .mobile-menu-social {
            display: flex;
            justify-content: center;
            gap: 12px;
            padding: 15px 20px;
            background: var(--bg);
        }

        .mobile-menu-social a {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 15px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .mobile-menu-social a:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-2px);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .hero-content h1 {
                font-size: 40px;
            }

            .hero-container {
                gap: 30px;
            }

            .laptop {
                width: 480px;
            }

            .laptop-bottom {
                width: 530px;
                margin-left: -25px;
            }
        }

        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content p {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-trust {
                justify-content: center;
            }

            .hero-badge {
                margin-left: auto;
                margin-right: auto;
            }

            .laptop {
                width: 450px;
            }

            .laptop-bottom {
                width: 500px;
                margin-left: -25px;
            }

            .phone {
                right: 20px;
                width: 120px;
            }

            .nav-links {
                display: none;
            }

            .nav-menu .btn {
                display: none;
            }

            .mobile-toggle {
                display: block;
                margin-left: auto;
            }

            .mobile-menu-overlay.active {
                display: block;
            }

            .mobile-menu.active {
                display: flex;
            }

            .testimonial-card {
                width: 280px;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                padding: 10px 15px;
            }

            /* Mobile menu refinements for 768px */
            .mobile-menu {
                width: 270px;
            }

            .mobile-menu-header {
                padding: 14px 18px;
            }

            .mobile-menu-links a {
                padding: 13px 18px;
            }

            .logo-icon svg {
                width: 32px;
                height: 32px;
            }

            .logo-text {
                font-size: 15px;
            }

            .logo-text span {
                font-size: 10px;
            }

            .btn {
                padding: 10px 18px;
                font-size: 13px;
            }

            .hero {
                padding: 70px 15px 25px;
                min-height: auto;
                align-items: flex-start;
            }

            .hero-container {
                gap: 20px;
            }

            .hero-badge {
                padding: 8px 14px;
                font-size: 12px;
                margin-bottom: 12px;
            }

            .hero-badge i {
                font-size: 12px;
            }

            .hero-content h1 {
                font-size: 24px;
                margin-bottom: 12px;
                line-height: 1.25;
            }

            .hero-content p {
                font-size: 13px;
                margin-bottom: 18px;
                line-height: 1.6;
            }

            .hero-buttons {
                flex-direction: row;
                justify-content: center;
                gap: 10px;
                flex-wrap: nowrap;
            }

            .hero-buttons .btn {
                flex: 1;
                max-width: 160px;
                padding: 12px 16px;
                font-size: 12px;
                white-space: nowrap;
            }

            .hero-buttons .btn-primary {
                animation: none;
            }

            .hero-trust {
                gap: 12px;
                flex-wrap: wrap;
            }

            .hero-trust-item {
                font-size: 11px;
                gap: 5px;
            }

            .hero-trust-item i {
                font-size: 12px;
            }

            /* Mobile Hero Visual */
            .mobile-hero-visual {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 15px;
                margin-top: 15px;
            }

            .mobile-hero-badge {
                display: flex;
                align-items: center;
                gap: 10px;
                background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(108, 92, 231, 0.05) 100%);
                padding: 12px 18px;
                border-radius: 50px;
                border: 1px solid rgba(108, 92, 231, 0.2);
            }

            .mobile-hero-badge i {
                font-size: 18px;
                color: var(--primary);
            }

            .mobile-hero-badge span {
                font-size: 12px;
                font-weight: 600;
                color: var(--dark);
            }

            /* Hide laptop on mobile */
            .devices-wrapper {
                display: none;
            }

            /* Testimonials Mobile */
            .testimonials-header {
                flex-direction: column;
                gap: 8px;
                padding: 10px 15px;
            }

            .testimonials-header-text {
                font-size: 11px;
                text-align: center;
            }

            .verified-badge {
                padding: 4px 10px;
                font-size: 10px;
            }

            .testimonials-wrapper {
                padding: 15px 0;
            }

            .testimonials-track {
                gap: 12px;
            }

            .testimonial-card {
                width: 220px;
                padding: 14px;
            }

            .testimonial-header {
                gap: 10px;
                margin-bottom: 10px;
            }

            .testimonial-logo {
                width: 36px;
                height: 36px;
                font-size: 8px;
            }

            .testimonial-info h4 {
                font-size: 11px;
            }

            .star-rating i {
                font-size: 11px;
            }

            .testimonial-title {
                font-size: 12px;
                margin-bottom: 5px;
            }

            .testimonial-text {
                font-size: 11px;
                margin-bottom: 8px;
                line-height: 1.5;
            }

            .read-more-btn {
                font-size: 11px;
            }

            /* Lightbox Mobile */
            .lightbox-content {
                padding: 20px;
                border-radius: 10px;
                margin: 10px;
            }

            .lightbox-close {
                width: 35px;
                height: 35px;
                top: 12px;
                right: 12px;
                font-size: 16px;
            }

            .lightbox-header {
                gap: 12px;
                margin-bottom: 18px;
                padding-bottom: 15px;
            }

            .lightbox-logo {
                width: 50px;
                height: 50px;
                font-size: 11px;
            }

            .lightbox-info h3 {
                font-size: 15px;
            }

            .lightbox-info .star-rating i {
                font-size: 14px;
            }

            .lightbox-title {
                font-size: 16px;
                margin-bottom: 14px;
            }

            .lightbox-text {
                font-size: 13px;
                line-height: 1.7;
            }

            .lightbox-footer {
                margin-top: 18px;
                padding-top: 15px;
                flex-direction: column;
                gap: 12px;
                align-items: flex-start;
            }

            .review-source-badge {
                font-size: 11px;
                padding: 6px 12px;
            }

            .view-original-link {
                font-size: 12px;
            }

            /* About Section Mobile */
            .about-section {
                padding: 35px 16px;
            }

            .about-header {
                margin-bottom: 20px;
            }

            .about-title {
                font-size: 22px;
            }

            .about-subtitle {
                font-size: 13px;
            }

            .office-gallery {
                grid-template-columns: 1fr;
                gap: 12px;
                margin-bottom: 25px;
            }

            .gallery-image.main-image {
                min-height: 160px;
            }

            .gallery-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }

            .gallery-image:not(.main-image) img {
                height: 80px;
            }

            .about-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
                margin-bottom: 25px;
            }

            .stat-card {
                padding: 14px 10px;
            }

            .stat-icon-wrap {
                width: 38px;
                height: 38px;
                margin-bottom: 8px;
            }

            .stat-icon-wrap i {
                font-size: 16px;
            }

            .stat-number {
                font-size: 22px;
            }

            .stat-suffix {
                font-size: 14px;
            }

            .stat-range {
                font-size: 20px;
            }

            .stat-label {
                font-size: 11px;
            }

            .stat-desc {
                font-size: 9px;
            }

            .team-section {
                margin-bottom: 25px;
            }

            .team-header {
                margin-bottom: 15px;
            }

            .team-header h3 {
                font-size: 18px;
            }

            .team-header p {
                font-size: 12px;
            }

            .team-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }

            .team-image {
                height: 110px;
            }

            .team-info {
                padding: 10px;
            }

            .team-info h4 {
                font-size: 12px;
            }

            .team-role {
                font-size: 10px;
            }

            .team-exp {
                font-size: 9px;
                padding: 2px 6px;
            }

            .about-cta {
                flex-direction: column;
                text-align: center;
                padding: 20px 16px;
            }

            .cta-content h3 {
                font-size: 16px;
            }

            .cta-content p {
                font-size: 12px;
            }

            .cta-buttons {
                width: 100%;
                justify-content: center;
            }

            .cta-buttons .btn {
                padding: 10px 16px;
                font-size: 12px;
            }
        }

        /* Extra small devices */
        @media (max-width: 480px) {
            .header-container {
                padding: 10px 12px;
            }

            .logo-icon svg {
                width: 28px;
                height: 28px;
            }

            .logo-text {
                font-size: 14px;
            }

            .logo-text span {
                font-size: 10px;
            }

            .btn-primary {
                padding: 8px 16px;
                font-size: 12px;
            }

            .hero {
                padding: 70px 12px 25px;
            }

            .hero-content h1 {
                font-size: 22px;
                margin-bottom: 12px;
            }

            .hero-content p {
                font-size: 13px;
                margin-bottom: 18px;
            }

            .hero-buttons .btn {
                max-width: 145px;
                padding: 10px 12px;
                font-size: 11px;
            }

            .testimonials-header {
                padding: 10px 12px;
            }

            .testimonials-header-text {
                font-size: 11px;
            }

            .testimonials-wrapper {
                padding: 15px 0;
            }

            .testimonial-card {
                width: 220px;
                padding: 12px;
            }

            .testimonial-logo {
                width: 36px;
                height: 36px;
                font-size: 8px;
            }

            .testimonial-info h4 {
                font-size: 11px;
            }

            .testimonial-title {
                font-size: 12px;
            }

            .testimonial-text {
                font-size: 11px;
            }

            .lightbox-content {
                padding: 16px;
                margin: 8px;
            }

            .lightbox-title {
                font-size: 15px;
            }

            .lightbox-text {
                font-size: 12px;
            }

            .mobile-hero-badge {
                padding: 12px 18px;
                gap: 10px;
            }

            .mobile-hero-badge i {
                font-size: 18px;
            }

            .mobile-hero-badge span {
                font-size: 12px;
            }

            /* About Section Extra Small */
            .about-section {
                padding: 30px 12px;
            }

            .about-header {
                margin-bottom: 18px;
            }

            .section-badge {
                padding: 4px 12px;
                font-size: 10px;
            }

            .about-title {
                font-size: 19px;
            }

            .about-subtitle {
                font-size: 12px;
            }

            .office-gallery {
                margin-bottom: 20px;
            }

            .gallery-image.main-image {
                min-height: 130px;
            }

            .gallery-image:not(.main-image) img {
                height: 65px;
            }

            .map-content i.fab {
                font-size: 22px;
                margin-bottom: 4px;
            }

            .map-content span {
                font-size: 9px;
            }

            .map-content strong {
                font-size: 12px;
                margin-bottom: 6px;
            }

            .map-btn {
                padding: 6px 10px;
                font-size: 10px;
            }

            .about-stats {
                gap: 8px;
                margin-bottom: 20px;
            }

            .stat-card {
                padding: 12px 8px;
            }

            .stat-icon-wrap {
                width: 32px;
                height: 32px;
                margin-bottom: 6px;
            }

            .stat-icon-wrap i {
                font-size: 14px;
            }

            .stat-number {
                font-size: 18px;
            }

            .stat-suffix {
                font-size: 12px;
            }

            .stat-range {
                font-size: 16px;
            }

            .stat-label {
                font-size: 10px;
            }

            .stat-desc {
                display: none;
            }

            .team-section {
                margin-bottom: 20px;
            }

            .team-header h3 {
                font-size: 16px;
            }

            .team-header p {
                font-size: 11px;
            }

            .team-grid {
                gap: 8px;
            }

            .team-image {
                height: 90px;
            }

            .team-info {
                padding: 8px;
            }

            .team-info h4 {
                font-size: 11px;
            }

            .team-role {
                font-size: 9px;
                margin-bottom: 3px;
            }

            .team-exp {
                display: none;
            }

            .about-cta {
                padding: 16px 12px;
                gap: 12px;
            }

            .cta-content h3 {
                font-size: 14px;
            }

            .cta-content p {
                font-size: 11px;
            }

            .cta-buttons .btn {
                padding: 8px 14px;
                font-size: 11px;
            }
        }

        /* Reduce motion for better mobile performance */
        @media (max-width: 768px) {
            .hero-content {
                animation: fadeInUp 0.5s ease both;
            }

            .testimonials-track {
                animation-duration: 25s;
            }

            .testimonial-card:hover {
                transform: none;
                box-shadow: none;
            }
        }

        /* Prefer reduced motion */
        @media (prefers-reduced-motion: reduce) {
            .laptop,
            .phone,
            .hero-content,
            .hero-image,
            .testimonials-track {
                animation: none;
            }

            .testimonial-card,
            .nft-card,
            .chart-bar {
                transition: none;
            }
        }

        /* Mobile Touch Fixes */
        @media (max-width: 768px) {
            .tech-tab,
            .faq-question,
            .accordion-header {
                cursor: pointer;
                -webkit-tap-highlight-color: rgba(108, 92, 231, 0.2);
                touch-action: manipulation;
                user-select: none;
            }

            .tech-tab:active,
            .faq-question:active {
                transform: scale(0.98);
                opacity: 0.9;
            }

            /* Fix portfolio slider touch scroll */
            .portfolio-slider {
                -webkit-overflow-scrolling: touch;
                scroll-behavior: smooth;
                overflow-y: visible;
            }

            .portfolio-card {
                touch-action: pan-y pan-x;
            }
        }
