* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        body {
            line-height: 1.6;
            color: #1f2a44;
            background: #f8fafc;
        }

        .navbar {
            background: #1f2a44;
            padding: 1.5rem 2rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: #141c2f;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        }

        .navbar a {
            color: #e2e8f0;
            text-decoration: none;
            margin: 0 1.5rem;
            font-size: 1.1rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .navbar a:hover {
            color: #7c3aed;
        }

        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1482449609509-eae2a7ea42b7?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #4b5eAA, #7c3aed);
            opacity: 0.2;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            animation: fadeIn 1.5s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            animation: slideUp 1s ease-out;
        }

        .hero p {
            font-size: 1.4rem;
            max-width: 700px;
            margin: 0 auto;
            animation: slideUp 1.2s ease-out;
        }

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

        .section {
            padding: 6rem 2rem;
            max-width: 1300px;
            margin: 0 auto;
        }

        .section h2 {
            font-size: 2.5rem;
            color: #1f2a44;
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .section h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #7c3aed;
            margin: 1rem auto 0;
            border-radius: 2px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .service-card {
            background: #ffffff;
            padding: 2.5rem;
            border-radius: 15px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #4b5eAA, #7c3aed);
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .service-card:hover::before {
            height: 100%;
            opacity: 0.05;
        }

        .service-card h3 {
            color: #1f2a44;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .service-card ul {
            list-style: disc;
            padding-left: 1.5rem;
        }

        .service-card li {
            margin-bottom: 0.8rem;
        }

        .contact {
            background: #1f2a44;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(124,58,237,0.1), transparent);
            transform: rotate(45deg);
        }

        .contact-content {
            position: relative;
            z-index: 1;
        }

        .contact h2 {
            color: white;
        }

        .contact a {
            color: #7c3aed;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .contact a:hover {
            color: #a78bfa;
        }

        .cta-button {
            display: inline-block;
            padding: 1.2rem 2.5rem;
            background: #7c3aed;
            color: white !important;
            text-decoration: none;
            border-radius: 50px;
            margin-top: 1.5rem;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .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%;
        }

        .cta-button:hover {
            background: #6d28d9;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(124,58,237,0.3);
        }

        /* Contact Form Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: #ffffff;
            padding: 2rem;
            border-radius: 15px;
            max-width: 500px;
            width: 90%;
            position: relative;
            animation: slideIn 0.3s ease-out;
        }

        @keyframes slideIn {
            from { transform: translateY(-50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .modal-content h3 {
            color: #1f2a44;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }

        .modal-content form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .modal-content input,
        .modal-content textarea {
            padding: 0.8rem;
            border: 1px solid #e2e8f0;
            border-radius: 5px;
            font-size: 1rem;
            width: 100%;
            transition: border-color 0.3s ease;
        }

        .modal-content input:focus,
        .modal-content textarea:focus {
            border-color: #7c3aed;
            outline: none;
        }

        .modal-content textarea {
            resize: vertical;
            min-height: 100px;
        }

        .modal-content button.submit-button {
            padding: 1.2rem;
            background: #7c3aed;
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .modal-content button.submit-button:hover {
            background: #6d28d9;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(124,58,237,0.3);
        }

        .close-button {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: #e2e8f0;
            border: none;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            font-size: 1.2rem;
            color: #1f2a44;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease, transform 0.3s ease;
        }

        .close-button:hover {
            background: #cbd5e1;
            transform: scale(1.1);
        }

        footer {
            background: #1f2a44;
            color: #94a3b8;
            text-align: center;
            padding: 2rem;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            .hero p {
                font-size: 1.2rem;
            }
            .navbar a {
                margin: 0 0.8rem;
                font-size: 1rem;
            }
            .section h2 {
                font-size: 2rem;
            }
            .modal-content {
                width: 95%;
            }
        }