 :root {
            --primary: #2E86AB;  /* Deep teal */
            --secondary: #F18F01; /* Orange */
            --accent: #A23B72;   /* Berry */
            --dark: #1A1A2E;
            --light: #F8F9FA;
            --success: #48BB78;   /* Green */
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
        
        /* Navigation */
        header {
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(8px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            position: fixed;
            width: 100%;
            z-index: 1000;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 2.5rem;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: -5px;
            left: 0;
            background: var(--secondary);
            transition: width 0.3s;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            padding: 12rem 5% 6rem;
            background: linear-gradient(rgba(20, 22, 19, 0.9), rgba(15, 15, 15, 0.9)), 
                        url('https://cdn.pixabay.com/photo/2021/10/11/17/54/technology-6701504_1280.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
        }
        
        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .hero-text h1 {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }
        
        .hero-text p {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.97);
            opacity: 0.9;
            margin-bottom: 2.5rem;
        }
        
        .cta-buttons {
            display: flex;
            gap: 1rem;
        }
        
        .btn {
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 20px rgba(46, 134, 171, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(46, 134, 171, 0.4);
        }
        
        .btn-secondary {
            background: white;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .btn-secondary:hover {
            background: rgba(46, 134, 171, 0.05);
        }
        
        /* Services Section */
        .services {
            padding: 6rem 5%;
            background: #F8FAFF;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-header h2 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        /* Unique Service Cards */
        .service-card {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.4s;
            background: white;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        /* Card 1 - Industry Data */
        .service-card:nth-child(1) .service-header {
            background: linear-gradient(135deg, var(--primary), #3DA5D9);
            padding: 2rem;
            color: white;
        }
        
        /* Card 2 - Demand Gen */
        .service-card:nth-child(2) .service-header {
            background: linear-gradient(135deg, var(--secondary), #F9B42D);
            padding: 2rem;
            color: white;
        }
        
        /* Card 3 - Tech Append */
        .service-card:nth-child(3) .service-header {
            background: linear-gradient(135deg, var(--accent), #C34C8A);
            padding: 2rem;
            color: white;
        }
        
        /* Card 4 - Channel Partners */
        .service-card:nth-child(4) .service-header {
            background: linear-gradient(135deg, var(--success), #5DD39E);
            padding: 2rem;
            color: white;
        }
        
        .service-content {
            padding: 2rem;
        }
        
        .service-content h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .service-content p {
            margin-bottom: 1.5rem;
            color: #4A5568;
        }
        
        .service-features {
            list-style: none;
            margin-top: 1.5rem;
        }
        
        .service-features li {
            padding: 0.5rem 0;
            position: relative;
            padding-left: 1.8rem;
        }
        
        .service-card:nth-child(1) .service-features li::before {
            content: "→";
            color: var(--primary);
            position: absolute;
            left: 0;
            font-weight: bold;
        }
        
        .service-card:nth-child(2) .service-features li::before {
            content: "→";
            color: var(--secondary);
            position: absolute;
            left: 0;
            font-weight: bold;
        }
        
        .service-card:nth-child(3) .service-features li::before {
            content: "→";
            color: var(--accent);
            position: absolute;
            left: 0;
            font-weight: bold;
        }
        
        .service-card:nth-child(4) .service-features li::before {
            content: "→";
            color: var(--success);
            position: absolute;
            left: 0;
            font-weight: bold;
        }
        
        /* About Section */
        .about {
            padding: 6rem 5%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .about-text h2 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }
        
        /* Contact Section */
        .contact {
            padding: 6rem 5%;
            background: linear-gradient(135deg, var(--primary), #3DA5D9);
            color: white;
        }
        
        .contact-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }
        
        .contact-form {
            background: white;
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .contact-form h3 {
            color: var(--dark);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--dark);
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            border: 1px solid #E2E8F0;
            border-radius: 8px;
            font-size: 1rem;
        }
        
        .phone-input {
            display: flex;
            gap: 1rem;
        }
        
        .phone-number {
            flex: 1;
        }
        
        .phone-note {
            font-size: 0.8rem;
            color: #718096;
            margin-top: 0.5rem;
        }
        
        .submit-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            width: 100%;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .submit-btn:hover {
            background: #1E6A8C;
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 5%;
            text-align: center;
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content,
            .about,
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .about-image {
                order: -1;
            }
        }