:root {
            --primary: #6e48aa;
            --secondary: #9d50bb;
            --accent: #4776e6;
            --text: #333;
            --bg: #f9f9ff;
            --card-bg: #fff;
            --nav-bg: rgba(249, 249, 255, 0.95);
            --footer-bg: #2a2a3c;
            --footer-text: #eee;
        }

        .dark-mode {
            --primary: #9d50bb;
            --secondary: #6e48aa;
            --accent: #6a8df0;
            --text: #f0f0f0;
            --bg: #1a1a2e;
            --card-bg: #16213e;
            --nav-bg: rgba(26, 26, 46, 0.95);
            --footer-bg: #0f0f1a;
            --footer-text: #ddd;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            transition: background-color 0.5s, color 0.3s;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text);
            background-color: var(--bg);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: var(--nav-bg);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary);
            display: flex;
            align-items: center;
        }

        .logo span {
            color: var(--accent);
        }

        .logo i {
            margin-right: 10px;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            position: relative;
            padding: 5px 0;
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transition: width 0.3s;
        }

        .nav-links a:hover:after {
            width: 100%;
        }

        .theme-toggle {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            margin-left: 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
            position: relative;
            overflow: hidden;
            background: url('https://www.searchenginejournal.com/wp-content/uploads/2022/05/saas-homepage-627a32bc41975-sej.png') center/cover no-repeat;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(110, 72, 170, 0.85) 0%, rgba(71, 118, 230, 0.85) 100%);
            z-index: 0;
        }

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            z-index: 1;
            width: 100%;
        }

        .hero-text {
            max-width: 800px;
        }

        .hero h1 {
            font-size: 56px;
            margin-bottom: 20px;
            color: white;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
        }

        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.9);
        }

        .cta-button {
            display: inline-block;
            padding: 15px 30px;
            background: white;
            color: var(--primary);
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            background: rgba(255, 255, 255, 0.9);
        }

        /* Services Section */
        .services {
            padding: 100px 0;
            position: relative;
            background: linear-gradient(135deg, #f8f9ff 0%, #eef1ff 100%);
        }

        .dark-mode .services {
            background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(45deg, transparent 65%, rgba(110, 72, 170, 0.05) 65%),
                linear-gradient(-45deg, transparent 65%, rgba(71, 118, 230, 0.05) 65%);
            background-size: 40px 40px;
            z-index: 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }

        .section-title h2 {
            font-size: 36px;
            margin-bottom: 15px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            color: var(--text);
            opacity: 0.8;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .service-card {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            z-index: -1;
            transition: height 0.3s;
        }

        .service-card:hover::before {
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            color: white;
        }

        .service-card:hover h3,
        .service-card:hover p,
        .service-card:hover .learn-more {
            color: white;
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: white;
            font-size: 28px;
        }

        .service-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--primary);
            transition: color 0.3s;
        }

        .service-card p {
            margin-bottom: 20px;
            color: var(--text);
            opacity: 0.9;
            transition: color 0.3s;
        }

        .learn-more {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: color 0.3s;
        }

        .learn-more i {
            margin-left: 5px;
            transition: transform 0.3s;
        }

        .learn-more:hover i {
            transform: translateX(5px);
        }

        /* About Section */
        .about {
            padding: 100px 0;
            position: relative;
            background: 
                linear-gradient(135deg, #f9f9ff 0%, #f0f2ff 100%),
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%236e48aa" fill-opacity="0.05" d="M0,0 L100,0 L100,100 Q50,80 0,100 Z"></path></svg>');
            background-repeat: no-repeat;
            background-position: bottom;
            background-size: 100% auto, 100% 150px;
        }

        .dark-mode .about {
            background: 
                linear-gradient(135deg, #1a1a2e 0%, #12122e 100%),
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%239d50bb" fill-opacity="0.1" d="M0,0 L100,0 L100,100 Q50,80 0,100 Z"></path></svg>');
            background-repeat: no-repeat;
            background-position: bottom;
            background-size: 100% auto, 100% 150px;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
        }

        .about-text h2 {
            font-size: 36px;
            margin-bottom: 20px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .about-text p {
            margin-bottom: 20px;
            color: var(--text);
            opacity: 0.9;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .stat-item {
            background-color: var(--card-bg);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            z-index: -1;
            transition: height 0.3s;
        }

        .stat-item:hover::before {
            height: 100%;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            color: white;
        }

        .stat-item:hover .stat-number,
        .stat-item:hover .stat-label {
            color: white;
        }

        .stat-number {
            font-size: 36px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 5px;
            transition: color 0.3s;
        }

        .stat-label {
            font-size: 14px;
            color: var(--text);
            opacity: 0.8;
            transition: color 0.3s;
        }

        /* Contact Section */
        .contact {
            padding: 100px 0;
            position: relative;
            background: 
                linear-gradient(135deg, #f5f7ff 0%, #e8ecff 100%),
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%234776e6" fill-opacity="0.05" d="M0,100 L100,100 L100,0 Q50,20 0,0 Z"></path></svg>');
            background-repeat: no-repeat;
            background-position: top;
            background-size: 100% auto, 100% 150px;
        }

        .dark-mode .contact {
            background: 
                linear-gradient(135deg, #12122e 0%, #0a0a1a 100%),
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%236a8df0" fill-opacity="0.1" d="M0,100 L100,100 L100,0 Q50,20 0,0 Z"></path></svg>');
            background-repeat: no-repeat;
            background-position: top;
            background-size: 100% auto, 100% 150px;
        }

        .contact-container {
            display: flex;
            gap: 50px;
        }

        .contact-info {
            flex: 1;
        }

        .contact-info h2 {
            font-size: 36px;
            margin-bottom: 20px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .contact-info p {
            margin-bottom: 30px;
            color: var(--text);
            opacity: 0.9;
        }

        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-method {
            display: flex;
            align-items: center;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .contact-details h4 {
            font-size: 18px;
            margin-bottom: 5px;
            color: var(--primary);
        }

        .contact-details p, .contact-details a {
            color: var(--text);
            opacity: 0.9;
            text-decoration: none;
        }

        .contact-details a:hover {
            color: var(--accent);
        }

        .contact-form {
            flex: 1;
            background-color: var(--card-bg);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

         
        .contact-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            z-index: 1;
        }

        .form-group {
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--text);
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            background-color: var(--bg);
            color: var(--text);
            font-family: inherit;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(110, 72, 170, 0.2);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background: linear-gradient(90deg, var(--primary), var(--accent));
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            width: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }

        /* Footer */
        footer {
            background-color: var(--footer-bg);
            color: var(--footer-text);
            padding: 60px 0 20px;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo {
            font-size: 24px;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }

        .footer-logo span {
            color: var(--accent);
        }

        .footer-logo i {
            margin-right: 10px;
        }

        .footer-about p {
            opacity: 0.8;
            margin-bottom: 20px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: background-color 0.3s, transform 0.3s;
        }

        .social-link:hover {
            background-color: var(--accent);
            transform: translateY(-3px);
        }

        .footer-links h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: white;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--footer-text);
            opacity: 0.8;
            text-decoration: none;
            transition: opacity 0.3s, color 0.3s;
        }

        .footer-links a:hover {
            opacity: 1;
            color: var(--accent);
        }

        .footer-newsletter p {
            opacity: 0.8;
            margin-bottom: 20px;
        }

        .newsletter-form {
            display: flex;
        }

        .newsletter-input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 8px 0 0 8px;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
        }

        .newsletter-input:focus {
            outline: none;
            background-color: rgba(255, 255, 255, 0.2);
        }

        .newsletter-btn {
            background: linear-gradient(90deg, var(--primary), var(--accent));
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            transition: opacity 0.3s;
        }

        .newsletter-btn:hover {
            opacity: 0.9;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
            font-size: 14px;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero-content, .about-content, .contact-container {
                flex-direction: column;
            }

            .hero-text, .about-text, .contact-info {
                padding-right: 0;
                margin-bottom: 50px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 36px;
            }

            .section-title h2 {
                font-size: 30px;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .stats {
                grid-template-columns: 1fr;
            }
        }

        .service-card ul {
            list-style-type: none;
            margin-top: 20px;
        }
        
        .service-card ul li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 30px;
            color: #94a3b8;
        }