 :root {
            --primary: #6c5ce7;
            --secondary: #a29bfe;
            --dark: #2d3436;
            --light: #f5f6fa;
            --accent: #fd79a8;
            --success: #00b894;
            --warning: #fdcb6e;
            --danger: #d63031;
            --transition: all 0.3s ease;
        }

        [data-theme="dark"] {
            --bg: #1a1a2e;
            --text: #e6e6e6;
            --card-bg: #16213e;
            --nav-bg: rgba(26, 26, 46, 0.9);
            --border: rgba(255, 255, 255, 0.1);
        }

        [data-theme="light"] {
            --bg: #f8f9fa;
            --text: #333333;
            --card-bg: #ffffff;
            --nav-bg: rgba(248, 249, 250, 0.9);
            --border: rgba(0, 0, 0, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--bg);
            color: var(--text);
            transition: var(--transition);
            overflow-x: hidden;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background-color: var(--nav-bg);
            backdrop-filter: blur(10px);
            transition: var(--transition);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo i {
            margin-right: 0.5rem;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: var(--transition);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .theme-toggle, .menu-toggle {
            background: none;
            border: none;
            color: var(--text);
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .theme-toggle:hover, .menu-toggle:hover {
            color: var(--primary);
        }

        .menu-toggle {
            display: none;
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            height: 100vh;
            background-color: var(--card-bg);
            z-index: 1100;
            padding: 2rem;
            transition: var(--transition);
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .mobile-nav-links a {
            color: var(--text);
            text-decoration: none;
            font-size: 1.2rem;
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--border);
            transition: var(--transition);
        }

        .mobile-nav-links a:hover {
            color: var(--primary);
            padding-left: 1rem;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1050;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            padding: 0 5%;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 50%, rgba(108, 92, 231, 0.2) 0%, rgba(26, 26, 46, 0) 50%);
            z-index: -1;
        }

        .hero-content {
            max-width: 600px;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2rem;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(108, 92, 231, 0.4);
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .hero-image {
            position: absolute;
            right: 5%;
            bottom: 10%;
            width: 40%;
            max-width: 600px;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        /* Services Section */
        .services {
            padding: 5rem 5%;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 2px;
        }

        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.8;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 2rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--border);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .service-card p {
            opacity: 0.8;
            margin-bottom: 1.5rem;
        }

        .learn-more {
            display: inline-flex;
            align-items: center;
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }

        .learn-more i {
            margin-left: 0.5rem;
            transition: var(--transition);
        }

        .learn-more:hover {
            color: var(--accent);
        }

        .learn-more:hover i {
            transform: translateX(5px);
        }

        /* Web Design Section */
        .web-design {
            padding: 5rem 5%;
            background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(26, 26, 46, 0) 50%);
            position: relative;
            overflow: hidden;
        }

        .web-design::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(162, 155, 254, 0.05) 0%, rgba(26, 26, 46, 0) 70%);
            z-index: -1;
        }

        .web-design-content {
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .web-design-text {
            flex: 1;
        }

        .web-design-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .web-design-text p {
            margin-bottom: 2rem;
            opacity: 0.9;
            line-height: 1.6;
        }

        .web-design-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .feature-icon {
            color: var(--primary);
            font-size: 1.2rem;
            margin-top: 0.2rem;
        }

        .web-design-visual {
            flex: 1;
            position: relative;
            min-height: 400px;
        }

        .code-editor {
            position: absolute;
            width: 100%;
            height: 100%;
            background-color: #282a36;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            overflow: hidden;
        }

        .editor-header {
            height: 40px;
            background-color: #343746;
            display: flex;
            align-items: center;
            padding: 0 1rem;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
        }

        .editor-dots {
            display: flex;
            gap: 0.5rem;
        }

        .editor-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .editor-dot:nth-child(1) {
            background-color: #ff5f56;
        }

        .editor-dot:nth-child(2) {
            background-color: #ffbd2e;
        }

        .editor-dot:nth-child(3) {
            background-color: #27c93f;
        }

        .editor-title {
            flex: 1;
            text-align: center;
            color: #f8f8f2;
            font-size: 0.8rem;
            font-family: monospace;
        }

        .editor-content {
            padding: 1rem;
            font-family: 'Courier New', Courier, monospace;
            color: #f8f8f2;
            font-size: 0.9rem;
            line-height: 1.5;
            height: calc(100% - 40px);
            overflow-y: auto;
        }

        .token.tag {
            color: #ff79c6;
        }

        .token.attr-name {
            color: #50fa7b;
        }

        .token.attr-value {
            color: #f1fa8c;
        }

        .token.comment {
            color: #6272a4;
        }

        .website-preview {
            position: absolute;
            bottom: -50px;
            right: -50px;
            width: 70%;
            height: 70%;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transform: rotate(5deg);
            transition: var(--transition);
            overflow: hidden;
            opacity: 0;
        }

        .web-design-visual:hover .website-preview {
            opacity: 1;
            transform: rotate(0);
            bottom: -30px;
            right: -30px;
        }

        /* Mobile App Section */
        .mobile-app {
            padding: 5rem 5%;
            background: linear-gradient(135deg, rgba(253, 121, 168, 0.1) 0%, rgba(26, 26, 46, 0) 50%);
        }

        .mobile-app-content {
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .mobile-app-visual {
            flex: 1;
            position: relative;
            min-height: 500px;
        }

        .phone-mockup {
            position: absolute;
            width: 250px;
            height: 500px;
            background-color: #f8f8f8;
            border-radius: 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%) rotate(0deg);
            overflow: hidden;
            transition: var(--transition);
            border: 10px solid #111;
        }

        .phone-screen {
            width: 100%;
            height: 100%;
            background-color: #f8f8f8;
            overflow: hidden;
            position: relative;
        }

        .app-screen {
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: var(--transition);
            opacity: 0;
        }

        .app-screen.active {
            opacity: 1;
        }

        .phone-notch {
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 20px;
            background-color: #111;
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;
            z-index: 2;
        }

        .phone-buttons {
            position: absolute;
            left: -5px;
            top: 100px;
            height: 60px;
            width: 5px;
            background-color: #111;
            border-top-right-radius: 3px;
            border-bottom-right-radius: 3px;
        }

        .mobile-app-text {
            flex: 1;
        }

        .mobile-app-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .mobile-app-text p {
            margin-bottom: 2rem;
            opacity: 0.9;
            line-height: 1.6;
        }

        .platform-buttons {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .platform-button {
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            background-color: var(--card-bg);
            border: 1px solid var(--border);
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
        }

        .platform-button.active {
            background-color: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        /* AI Section */
        .ai-section {
            padding: 5rem 5%;
            background: linear-gradient(135deg, rgba(0, 184, 148, 0.1) 0%, rgba(26, 26, 46, 0) 50%);
            position: relative;
            overflow: hidden;
        }

        .ai-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%2300b894" opacity="0.2"/></svg>');
            background-size: 20px 20px;
            opacity: 0.1;
            z-index: -1;
        }

        .ai-content {
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .ai-text {
            flex: 1;
        }

        .ai-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .ai-text p {
            margin-bottom: 2rem;
            opacity: 0.9;
            line-height: 1.6;
        }

        .ai-visual {
            flex: 1;
            position: relative;
            min-height: 400px;
        }

        .neural-network {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .neuron {
            position: absolute;
            width: 20px;
            height: 20px;
            background-color: var(--primary);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-weight: bold;
            font-size: 0.8rem;
            box-shadow: 0 0 10px rgba(0, 184, 148, 0.5);
            z-index: 2;
        }

        .connection {
            position: absolute;
            height: 2px;
            background-color: rgba(0, 184, 148, 0.3);
            transform-origin: left center;
            z-index: 1;
        }

        /* Cybersecurity Section */
        .cybersecurity {
            padding: 5rem 5%;
            background: linear-gradient(135deg, rgba(214, 48, 49, 0.1) 0%, rgba(26, 26, 46, 0) 50%);
            position: relative;
            overflow: hidden;
        }

        .cybersecurity::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><text x="0" y="50" font-family="monospace" font-size="10" fill="%23d63031" opacity="0.05">0101010101</text></svg>');
            background-size: 100px 100px;
            z-index: -1;
        }

        .cybersecurity-content {
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .cybersecurity-visual {
            flex: 1;
            position: relative;
            min-height: 400px;
        }

        .shield {
            position: absolute;
            width: 200px;
            height: 200px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: radial-gradient(circle, rgba(214, 48, 49, 0.1) 0%, rgba(214, 48, 49, 0) 70%);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .shield-icon {
            font-size: 5rem;
            color: var(--danger);
            animation: pulse 2s infinite;
        }

        .threat {
            position: absolute;
            width: 30px;
            height: 30px;
            background-color: var(--danger);
            border-radius: 50%;
            opacity: 0;
            animation: threat-approach 3s infinite;
        }

        @keyframes threat-approach {
            0% {
                transform: translate(0, 0) scale(0.5);
                opacity: 0;
            }
            50% {
                opacity: 1;
            }
            100% {
                transform: translate(var(--tx), var(--ty)) scale(1);
                opacity: 0;
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 0.7;
            }
            50% {
                transform: scale(1.1);
                opacity: 1;
            }
            100% {
                transform: scale(1);
                opacity: 0.7;
            }
        }

        .cybersecurity-text {
            flex: 1;
        }

        .cybersecurity-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .cybersecurity-text p {
            margin-bottom: 2rem;
            opacity: 0.9;
            line-height: 1.6;
        }

        /* Digital Marketing Section */
        .digital-marketing {
            padding: 5rem 5%;
            background: linear-gradient(135deg, rgba(253, 203, 110, 0.1) 0%, rgba(26, 26, 46, 0) 50%);
        }

        .marketing-content {
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .marketing-text {
            flex: 1;
        }

        .marketing-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .marketing-text p {
            margin-bottom: 2rem;
            opacity: 0.9;
            line-height: 1.6;
        }

        .marketing-visual {
            flex: 1;
            position: relative;
            min-height: 400px;
        }

        .analytics-dashboard {
            width: 100%;
            height: 100%;
            background-color: var(--card-bg);
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            display: grid;
            grid-template-rows: auto 1fr;
            gap: 1rem;
        }

        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .dashboard-title {
            font-weight: 600;
            font-size: 1.2rem;
        }

        .dashboard-period {
            color: var(--primary);
            font-weight: 500;
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .metric-card {
            background-color: var(--bg);
            border-radius: 8px;
            padding: 1rem;
            display: flex;
            flex-direction: column;
        }

        .metric-label {
            font-size: 0.9rem;
            opacity: 0.7;
            margin-bottom: 0.5rem;
        }

        .metric-value {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .metric-change {
            font-size: 0.8rem;
            display: flex;
            align-items: center;
        }

        .metric-change.positive {
            color: var(--success);
        }

        .metric-change.negative {
            color: var(--danger);
        }

        .chart-container {
            grid-column: span 2;
            height: 200px;
            background-color: var(--bg);
            border-radius: 8px;
            position: relative;
            overflow: hidden;
        }

        .chart-line {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 80%;
            display: flex;
            align-items: flex-end;
        }

        .chart-bar {
            flex: 1;
            background-color: var(--primary);
            margin: 0 2px;
            position: relative;
            transition: height 1s ease;
        }

        .chart-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
        }

        /* Cloud & IoT Section */
        .cloud-iot {
            padding: 5rem 5%;
            background: linear-gradient(135deg, rgba(72, 219, 251, 0.1) 0%, rgba(26, 26, 46, 0) 50%);
            position: relative;
            overflow: hidden;
        }

        .cloud-iot::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M30,30 Q50,10 70,30 T90,50 Q70,70 50,90 T10,50 Q30,30 50,10 T90,30" fill="none" stroke="%2348dbfb" stroke-width="0.5" opacity="0.1"/></svg>');
            background-size: 100px 100px;
            z-index: -1;
        }

        .cloud-content {
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .cloud-text {
            flex: 1;
        }

        .cloud-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .cloud-text p {
            margin-bottom: 2rem;
            opacity: 0.9;
            line-height: 1.6;
        }

        .cloud-visual {
            flex: 1;
            position: relative;
            min-height: 400px;
        }

        .cloud-server {
            position: absolute;
            width: 80px;
            height: 80px;
            background-color: var(--card-bg);
            border-radius: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            cursor: pointer;
        }

        .cloud-server i {
            font-size: 2rem;
            color: var(--primary);
        }

        .cloud-server::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 20px;
            background-color: var(--border);
        }

        .cloud-server:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .cloud-server:nth-child(1) {
            top: 20%;
            left: 20%;
        }

        .cloud-server:nth-child(2) {
            top: 40%;
            left: 70%;
        }

        .cloud-server:nth-child(3) {
            top: 70%;
            left: 30%;
        }

        .iot-device {
            position: absolute;
            width: 50px;
            height: 50px;
            background-color: var(--card-bg);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            cursor: pointer;
        }

        .iot-device i {
            font-size: 1.5rem;
            color: var(--primary);
        }

        .iot-device:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .iot-device:nth-child(4) {
            top: 30%;
            left: 50%;
        }

        .iot-device:nth-child(5) {
            top: 60%;
            left: 60%;
        }

        .iot-device:nth-child(6) {
            top: 80%;
            left: 20%;
        }

        /* Industry Solutions Section */
        .industry-solutions {
            padding: 5rem 5%;
            background: linear-gradient(135deg, rgba(178, 190, 195, 0.1) 0%, rgba(26, 26, 46, 0) 50%);
        }

        .industry-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .industry-tabs {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .industry-tab {
            padding: 0.8rem 1.5rem;
            background-color: var(--card-bg);
            border-radius: 50px;
            border: 1px solid var(--border);
            cursor: pointer;
            transition: var(--transition);
            font-weight: 500;
        }

        .industry-tab.active {
            background-color: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .industry-panels {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .industry-panel {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 2rem;
            transition: var(--transition);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            opacity: 0;
            height: 0;
            overflow: hidden;
        }

        .industry-panel.active {
            opacity: 1;
            height: auto;
        }

        .industry-panel h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .industry-panel h3 i {
            color: var(--primary);
        }

        .industry-panel p {
            opacity: 0.8;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        /* IT Support Section */
        .it-support {
            padding: 5rem 5%;
            background: linear-gradient(135deg, rgba(0, 206, 201, 0.1) 0%, rgba(26, 26, 46, 0) 50%);
        }

        .support-content {
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .support-visual {
            flex: 1;
            position: relative;
            min-height: 400px;
        }

        .support-chat {
            width: 100%;
            height: 100%;
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 1.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
        }

        .chat-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--border);
        }

        .chat-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--primary);
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-weight: bold;
        }

        .chat-info h4 {
            font-size: 1rem;
            margin-bottom: 0.2rem;
        }

        .chat-info p {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        .chat-status {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: var(--success);
            margin-left: auto;
        }

        .chat-messages {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 1.5rem;
            overflow-y: auto;
            padding-right: 0.5rem;
        }

        .message {
            max-width: 80%;
            padding: 0.8rem 1rem;
            border-radius: 15px;
            font-size: 0.9rem;
            line-height: 1.4;
        }

        .message.incoming {
            align-self: flex-start;
            background-color: var(--bg);
            border-bottom-left-radius: 5px;
        }

        .message.outgoing {
            align-self: flex-end;
            background-color: var(--primary);
            color: white;
            border-bottom-right-radius: 5px;
        }

        .chat-input {
            display: flex;
            gap: 0.5rem;
            padding-top: 1rem;
            border-top: 1px solid var(--border);
        }

        .chat-input input {
            flex: 1;
            padding: 0.8rem 1rem;
            border-radius: 50px;
            border: 1px solid var(--border);
            background-color: var(--bg);
            color: var(--text);
        }

        .chat-input button {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--primary);
            color: white;
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }

        .chat-input button:hover {
            background-color: var(--secondary);
        }

        .support-text {
            flex: 1;
        }

        .support-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .support-text p {
            margin-bottom: 2rem;
            opacity: 0.9;
            line-height: 1.6;
        }

        /* UI/UX Section */
        .ui-ux {
            padding: 5rem 5%;
            background: linear-gradient(135deg, rgba(253, 203, 110, 0.1) 0%, rgba(26, 26, 46, 0) 50%);
        }

        .ui-ux-content {
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .ui-ux-text {
            flex: 1;
        }

        .ui-ux-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
            color: var(--dark);
        }

        .ui-ux-text p {
            margin-bottom: 2rem;
            opacity: 0.9;
            line-height: 1.6;
        }

        .ui-ux-visual {
            flex: 1;
            position: relative;
            min-height: 400px;
        }

        .design-prototype {
            width: 100%;
            height: 100%;
            background-color: var(--card-bg);
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            position: relative;
        }

        .design-screen {
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: var(--transition);
            opacity: 0;
        }

        .design-screen.active {
            opacity: 1;
        }

        .design-tools {
            position: absolute;
            bottom: 1rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.5rem;
            background-color: var(--bg);
            padding: 0.5rem;
            border-radius: 50px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            z-index: 2;
        }

        .design-tool {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--card-bg);
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: var(--transition);
        }

        .design-tool.active {
            background-color: var(--primary);
            color: white;
        }

        /* E-commerce & SEO Section */
        .ecommerce-seo {
            padding: 5rem 5%;
            background: linear-gradient(135deg, rgba(85, 239, 196, 0.1) 0%, rgba(26, 26, 46, 0) 50%);
        }

        .ecommerce-content {
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .ecommerce-visual {
            flex: 1;
            position: relative;
            min-height: 400px;
        }

        .search-engine {
            width: 100%;
            height: 100px;
            background-color: var(--card-bg);
            border-radius: 50px;
            display: flex;
            align-items: center;
            padding: 0 1.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .search-icon {
            color: var(--primary);
            margin-right: 1rem;
        }

        .search-input {
            flex: 1;
            background: none;
            border: none;
            color: var(--text);
            font-size: 1rem;
        }

        .search-input:focus {
            outline: none;
        }

        .search-results {
            position: absolute;
            top: 120px;
            left: 0;
            width: 100%;
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 1.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: translateY(20px);
            transition: var(--transition);
        }

        .search-engine:hover .search-results {
            opacity: 1;
            transform: translateY(0);
        }

        .result-item {
            padding: 0.8rem 0;
            border-bottom: 1px solid var(--border);
        }

        .result-title {
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: var(--primary);
        }

        .result-url {
            font-size: 0.8rem;
            color: var(--success);
            margin-bottom: 0.3rem;
        }

        .result-snippet {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .ranking-chart {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 200px;
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 1.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: flex-end;
            gap: 1rem;
        }

        .ranking-bar {
            flex: 1;
            background-color: var(--bg);
            border-radius: 5px 5px 0 0;
            position: relative;
            transition: height 1s ease;
        }

        .ranking-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, var(--primary), var(--secondary));
        }

        .ranking-label {
            position: absolute;
            bottom: -25px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.8rem;
            white-space: nowrap;
        }

        .ranking-bar:nth-child(1) {
            height: 30%;
        }

        .ranking-bar:nth-child(2) {
            height: 50%;
        }

        .ranking-bar:nth-child(3) {
            height: 80%;
        }

        .ranking-bar:nth-child(4) {
            height: 100%;
        }

        .ranking-bar:nth-child(5) {
            height: 60%;
        }

        .ecommerce-text {
            flex: 1;
        }

        .ecommerce-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .ecommerce-text p {
            margin-bottom: 2rem;
            opacity: 0.9;
            line-height: 1.6;
        }

        /* Stats Section */
        .stats {
            padding: 5rem 5%;
            background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(26, 26, 46, 0) 50%);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .stat-card {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: var(--transition);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .stat-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--primary);
        }

        .stat-label {
            font-size: 1rem;
            opacity: 0.8;
        }

        /* Footer */
        .footer {
            background-color: var(--card-bg);
            padding: 5rem 5% 2rem;
            position: relative;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary);
            border-radius: 2px;
        }

        .footer-column p {
            opacity: 0.8;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .footer-links a {
            color: var(--text);
            text-decoration: none;
            transition: var(--transition);
            opacity: 0.8;
        }

        .footer-links a:hover {
            color: var(--primary);
            opacity: 1;
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--bg);
            display: flex;
            justify-content: center;
            align-items: center;
            transition: var(--transition);
        }

        .social-link:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
        }

        .footer-bottom p {
            opacity: 0.7;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
            z-index: 999;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background-color: var(--secondary);
            transform: translateY(-5px);
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 3rem;
            }
            
            .web-design-content, .mobile-app-content, .ai-content, 
            .cybersecurity-content, .marketing-content, .cloud-content,
            .support-content, .ui-ux-content, .ecommerce-content {
                flex-direction: column;
            }
            
            .web-design-visual, .mobile-app-visual, .ai-visual,
            .cybersecurity-visual, .marketing-visual, .cloud-visual,
            .support-visual, .ui-ux-visual, .ecommerce-visual {
                width: 100%;
                min-height: 300px;
            }
            
            .hero-image {
                position: relative;
                width: 100%;
                margin-top: 3rem;
            }
        }

        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .web-design-features {
                grid-template-columns: 1fr;
            }
            
            .phone-mockup {
                width: 200px;
                height: 400px;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .industry-tabs {
                flex-direction: column;
                align-items: center;
            }
        }