<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Enquoia - IT Consultancy & Software Development</title>

    <style>

        * {

            margin: 0;

            padding: 0;

            box-sizing: border-box;

        }


        body {

            font-family: 'Times New Roman', Times, serif;

            background-color: #fff;

            color: #000;

            line-height: 1.6;

        }


        /* Navigation */

        nav {

            background: #ffffff;

            padding: 1.5rem 5%;

            position: fixed;

            width: 100%;

            top: 0;

            z-index: 1000;

            border-bottom: 2px solid #FFD700;

        }


        nav .container {

            max-width: 1400px;

            margin: 0 auto;

            display: flex;

            justify-content: space-between;

            align-items: center;

        }


        .logo {

            height: 50px;

            width: auto;

        }


        nav ul {

            list-style: none;

            display: flex;

            gap: 2rem;

        }


        nav a {

            color: #000;

            text-decoration: none;

            transition: color 0.3s;

            font-weight: 500;

        }


        nav a:hover {

            color: #FFD700;

        }


        /* Hero Section */

        .hero {

            height: 100vh;

            display: flex;

            align-items: center;

            justify-content: center;

            background: #000;

            text-align: center;

            padding: 0 5%;

            position: relative;

            overflow: hidden;

        }


        .hero::before {

            content: '';

            position: fixed;

            top: 0;

            left: 0;

            right: 0;

            bottom: 0;

            background-image: url('https://i.imgur.com/WrKYGH2.jpeg');

            background-size: cover;

            background-position: center;

            background-repeat: no-repeat;

            opacity: 0.6;

            z-index: 0;

        }


        .hero-content {

            position: relative;

            z-index: 1;

        }


        .hero-content h1 {

            font-size: 4rem;

            margin-bottom: 1rem;

            color: #fff;

            letter-spacing: 3px;

            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);

        }


        .hero-content .subtitle {

            font-size: 1.5rem;

            margin-bottom: 2rem;

            color: #fff;

            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);

        }


        .hero-content .highlight {

            color: #FFD700;

            font-weight: bold;

        }


        .cta-button {

            display: inline-block;

            padding: 1rem 2.5rem;

            background: #FFD700;

            color: #000;

            text-decoration: none;

            font-weight: bold;

            border-radius: 5px;

            transition: transform 0.3s;

        }


        .cta-button:hover {

            transform: translateY(-3px);

        }


        /* Sections */

        section {

            padding: 5rem 5%;

            max-width: 1200px;

            margin: 0 auto;

        }


        section h2 {

            font-size: 2.5rem;

            margin-bottom: 2rem;

            color: #000;

            text-align: center;

            position: relative;

            display: inline-block;

            width: 100%;

        }


        section h2::after {

            content: '';

            position: absolute;

            bottom: -10px;

            left: 50%;

            transform: translateX(-50%);

            width: 100px;

            height: 3px;

            background: linear-gradient(90deg, transparent, #FFD700, transparent);

        }


        /* Services */

        .services-grid {

            display: grid;

            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

            gap: 2rem;

            margin-top: 3rem;

        }


        .service-card {

            background: #fff;

            padding: 2rem;

            border-radius: 10px;

            border: 2px solid #FFD700;

            transition: transform 0.3s;

        }


        .service-card:hover {

            transform: translateY(-5px);

        }


        .service-card h3 {

            color: #FFD700;

            margin-bottom: 1rem;

            font-size: 1.5rem;

        }


        .service-card p {

            color: #000;

            line-height: 1.8;

        }


        /* Team Section */

        .team-grid {

            display: grid;

            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

            gap: 2rem;

            margin-top: 3rem;

        }


        .team-member {

            background: #fff;

            padding: 2rem;

            border-radius: 10px;

            border: 2px solid #FFD700;

            text-align: center;

        }


        .team-member h3 {

            color: #FFD700;

            margin-bottom: 0.5rem;

        }


        .team-member p {

            color: #000;

        }


        /* Jobs Section */

        .jobs-list {

            margin-top: 2rem;

        }


        .job-item {

            background: #fff;

            padding: 2rem;

            border-radius: 10px;

            border: 2px solid #FFD700;

            margin-bottom: 2rem;

        }


        .job-item h3 {

            color: #FFD700;

            margin-bottom: 1rem;

        }


        .job-item p {

            color: #000;

            margin-bottom: 0.5rem;

        }


        /* About Section */

        .about {

            background: #fff;

        }


        .about-content {

            text-align: center;

            max-width: 800px;

            margin: 0 auto;

        }


        .about-content p {

            font-size: 1.2rem;

            color: #000;

            margin-bottom: 1.5rem;

            line-height: 1.8;

        }


        .about-content .gold-text {

            color: #FFD700;

            font-weight: bold;

        }


        /* Contact Section */

        .contact {

            background: #fff;

        }


        .contact-content {

            max-width: 600px;

            margin: 0 auto;

            text-align: center;

        }


        .contact-info {

            background: #fff;

            padding: 2rem;

            border-radius: 10px;

            margin-top: 2rem;

            border: 2px solid #FFD700;

        }


        .contact-info p {

            font-size: 1.2rem;

            margin: 1rem 0;

            color: #000;

        }


        .contact-info strong {

            color: #FFD700;

        }


        .contact-info a {

            color: #FFD700;

            text-decoration: none;

            transition: opacity 0.3s;

        }


        .contact-info a:hover {

            opacity: 0.8;

            text-decoration: underline;

        }


        /* Footer */

        footer {

            background: #fff;

            text-align: center;

            padding: 2rem 5%;

            border-top: 2px solid #FFD700;

            color: #000;

        }


        /* Gold accents */

        .gold-divider {

            width: 200px;

            height: 2px;

            background: linear-gradient(90deg, transparent, #FFD700, transparent);

            margin: 2rem auto;

        }


        /* Responsive */

        @media (max-width: 768px) {

            .hero-content h1 {

                font-size: 2.5rem;

            }


            .hero-content .subtitle {

                font-size: 1.2rem;

            }


            nav ul {

                flex-wrap: wrap;

                gap: 1rem;

                justify-content: center;

            }


            section h2 {

                font-size: 2rem;

            }

            

            .logo {

                height: 40px;

            }

        }

    </style>

</head>

<body>

    <!-- Navigation -->

    <nav>

        <div class="container">

            <img src="https://i.imgur.com/HgOmly3.png" alt="Enquoia" class="logo">

            <ul>

                <li><a href="#software">Software development</a></li>

                <li><a href="#transformation">Business transformation</a></li>

                <li><a href="#team">Team</a></li>

                <li><a href="#jobs">Jobs</a></li>

                <li><a href="#about">About</a></li>

            </ul>

        </div>

    </nav>


    <!-- Hero Section -->

    <section id="home" class="hero">

        <div class="hero-content">

            <h1>Enquoia</h1>

            <p class="subtitle">IT consultancy & <span class="highlight">software development</span> excellence</p>

            <a href="#software" class="cta-button">Get in touch</a>

        </div>

    </section>


    <!-- Software Development Section -->

    <section id="software">

        <h2>Software development</h2>

        <div class="services-grid">

            <div class="service-card">

                <h3>Custom solutions</h3>

                <p>We develop tailor-made software solutions that perfectly align with your business processes. From web applications to enterprise systems.</p>

            </div>

            <div class="service-card">

                <h3>Modern technologies</h3>

                <p>Leveraging cutting-edge technologies and frameworks to build scalable, maintainable, and future-proof applications.</p>

            </div>

            <div class="service-card">

                <h3>Agile development</h3>

                <p>Fast, iterative development cycles that deliver value quickly while maintaining flexibility to adapt to changing requirements.</p>

            </div>

        </div>

    </section>


    <!-- Business Transformation Section -->

    <section id="transformation">

        <h2>Business transformation</h2>

        <div class="about-content">

            <p>We help organizations navigate digital transformation by aligning technology strategy with business goals.</p>

            <div class="gold-divider"></div>

            <p>Our approach combines <span class="gold-text">strategic insight</span>, technical expertise, and change management to ensure successful transformation initiatives.</p>

            <div class="gold-divider"></div>

            <p>From legacy modernization to cloud migration, we guide your journey to becoming a <span class="gold-text">digital-first organization</span>.</p>

        </div>

    </section>


    <!-- Team Section -->

    <section id="team">

        <h2>Team</h2>

        <div class="team-grid">

            <div class="team-member">

                <h3>Leadership</h3>

                <p>Experienced leaders driving innovation and excellence</p>

            </div>

            <div class="team-member">

                <h3>Engineers</h3>

                <p>Skilled developers crafting exceptional solutions</p>

            </div>

            <div class="team-member">

                <h3>Consultants</h3>

                <p>Strategic advisors guiding digital transformation</p>

            </div>

        </div>

    </section>


    <!-- Jobs Section -->

    <section id="jobs">

        <h2>Jobs</h2>

        <div class="jobs-list">

            <div class="job-item">

                <h3>Senior software engineer</h3>

                <p><strong>Location:</strong> Remote / Netherlands</p>

                <p><strong>Type:</strong> Full-time</p>

                <p>Join our team to build innovative solutions using modern technologies.</p>

            </div>

            <div class="job-item">

                <h3>IT consultant</h3>

                <p><strong>Location:</strong> Netherlands</p>

                <p><strong>Type:</strong> Full-time</p>

                <p>Help organizations transform their technology landscape and achieve business goals.</p>

            </div>

        </div>

    </section>


    <!-- About Section -->

    <section id="about" class="about">

        <h2>About</h2>

        <div class="about-content">

            <p>Enquoia is a leading IT consultancy firm specializing in <span class="gold-text">software development</span> and technological advisory.</p>

            <div class="gold-divider"></div>

            <p>We combine technical expertise with strategic insight to deliver <span class="gold-text">innovative solutions</span> that help businesses grow in the digital era.</p>

            <div class="gold-divider"></div>

            <p>Our mission is to empower organizations with <span class="gold-text">cutting-edge technology</span> and personalized guidance.</p>

        </div>

    </section>


    <!-- Footer -->

    <footer>

        <p>&copy; 2024 Enquoia. All rights reserved.</p>

    </footer>

</body>

</html>