<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Future Force</title>
    <style>
        .highlight-box {
            background-color: #e29e5c;
            margin: 1em;
            padding: 2em;
            border-radius: 10px;
            color: white;
            text-align: center;
            flex: 1 1 calc(33% - 2em);
            box-sizing: border-box;
            box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .highlight-box:hover {
            transform: translateY(-10px);
            box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.5);
        }
        .highlight-box i {
            font-size: 3em;
            margin-bottom: 0.5em;
        }
        .highlights-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1em;
        }
        .social-icons a {
            color: white;
            text-decoration: none;
            margin: 0 10px;
            font-size: 1.5em;
        }
        .values-box {
            background-color: #00416b;
            margin: 1em;
            padding: 2em;
            border-radius: 50%;
            color: white;
            text-align: center;
            width: 200px;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            box-sizing: border-box;
            box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .values-box:hover {
            transform: translateY(-10px);
            box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.5);
        }
        .values-container {
            display: flex;
            justify-content: center;
            gap: 1em;
            padding: 2em 0;
        }
        .values-box h3 {
            margin: 0;
        }
        .values-box p {
            margin: 0.5em 0 0;
        }
        .clients-container {
            display: flex;
            overflow: hidden;
            width: 100%;
            position: relative;
        }
        .clients-wrapper {
            display: flex;
            transition: transform 0.5s ease;
        }
        .clients-wrapper img {
            flex: 0 0 33.33%;
            width: 100px;
            height: auto;
            margin: 0 10px;
        }
        .pagination {
            text-align: center;
            margin-top: 1em;
        }
        .pagination-dot {
            display: inline-block;
            width: 10px;
            height: 10px;
            margin: 0 5px;
            background-color: #ccc;
            border-radius: 50%;
            cursor: pointer;
        }
        .pagination-dot.active {
            background-color: #00416b;
        }
    </style>
</head>
<body style="font-family: 'Hacen Algeria', sans-serif; margin: 0; padding: 0; color: #153040;">

    <header style="display: flex; justify-content: space-between; align-items: center; background-color: #00416b; padding: 1em; color: #ffffff;">
        <div class="logo" style="font-size: 1.5em; font-weight: bold;">Future Force</div>
        <nav>
            <ul style="list-style: none; display: flex; gap: 1em; margin: 0;">
                <li><a href="#" style="color: #ffffff; text-decoration: none;">Home</a></li>
                <li><a href="#about" style="color: #ffffff; text-decoration: none;">About Us</a></li>
                <li><a href="#services" style="color: #ffffff; text-decoration: none;">Services</a></li>
                <li><a href="#contact" style="color: #ffffff; text-decoration: none;">Contact</a></li>
            </ul>
        </nav>
    </header>

    <section class="hero" style="position: relative; text-align: center; color: white;">
        <img src="/images/Header1.jpeg" alt="Hero Image" style="width: 100%; height: auto;">
        <div class="hero-text" style="position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);">
            <h1 style="font-size: 3em; margin: 0;">Future Force</h1>
            <p style="font-size: 1.5em;">Welcome to the Future Force</p>
            <a href="#about" style="display: inline-block; padding: 0.5em 1em; margin-top: 1em; color: #153040; background-color: #fec618; border: none; text-decoration: none; font-size: 1em; cursor: pointer;">Learn More</a>
        </div>
    </section>

    <section id="about" style="padding: 2em; text-align: center; background-color: #f4f4f4;">
        <h2>About Future Force</h2>
        <p>Future Force specializes in organizing and managing exhibitions and events, providing comprehensive solutions for all your event needs.</p>
    </section>

    <section id="values" style="padding: 2em; text-align: center;">
        <h2>Our Values</h2>
        <div class="values-container">
            <div class="values-box">
                <h3>Guidance</h3>
                <!--<p>We will take your hand & show you the way. Talk about the challenges you face & help you in decision making.</p>-->
            </div>
            <div class="values-box">
                <h3>Honesty</h3>
                <!--<p>For us, working with honesty comes first. We make sure that we provide you with the best guidelines, give answers to your questions, and offer tips and tricks based on our own experience.</p>-->
            </div>
            <div class="values-box">
                <h3>Development</h3>
                <!--<p>Enhance development, increase qualities and build a strong team to reach the company’s goals and targets.</p>-->
            </div>
            <div class="values-box">
                <h3>Simplicity</h3>
                <!--<p>We believe that being simple makes our work easier. We will be here to listen, understand, and communicate to make sure that you have the best service.</p>-->
            </div>
        </div>
    </section>

    <section id="highlights" style="padding: 2em; text-align: center;">
        <h2>Key Highlights</h2>
        <div class="highlights-container">
            <div class="highlight-box">
                <i class="fas fa-lightbulb"></i>
                <p>Innovative Event Solutions</p>
            </div>
            <div class="highlight-box">
                <i class="fas fa-calendar-alt"></i>
                <p>Comprehensive Planning</p>
            </div>
            <div class="highlight-box">
                <i class="fas fa-tasks"></i>
                <p>Professional Execution</p>
            </div>
            <div class="highlight-box">
                <i class="fas fa-headset"></i>
                <p>Exceptional Client Support</p>
            </div>
        </div>
    </section>

    <section id="clients" style="padding: 2em; text-align: center;">
        <h2>Our Clients</h2>
        <div class="clients-container">
            <div class="clients-wrapper">
                <img src="/images/C1.jpeg" alt="Client 1 Logo">
                <img src="/images/C2.jpeg" alt="Client 2 Logo">
                <img src="/images/C3.jpeg" alt="Client 3 Logo">
               <img src="/images/C1.jpeg" alt="Client 1 Logo">
                <img src="/images/C2.jpeg" alt="Client 2 Logo">
                <img src="/images/C3.jpeg" alt="Client 3 Logo">
            </div>
        </div>
        <div class="pagination">
            <span class="pagination-dot active" data-index="0"></span>
            <span class="pagination-dot" data-index="1"></span>
        </div>
    </section>

    <section id="contact" style="padding: 2em; text-align: center; background-color: #00416b; color: white;">
        <h2>Contact Us</h2>
        <p>Phone: +966 550 747 744</p>
        <p>Email: <a href="mailto:info@futureforce.sa.com" style="color: white;">info@futureforce.sa.com</a></p>
        <div class="social-icons">
            <a href="https://x.com/fut2024ure?s=21" target="_blank"><i class="fab fa-twitter"></i></a>
            <a href="https://www.tiktok.com/@fut2024ure?_t=8nWP7znt9j5&_r=1" target="_blank"><i class="fab fa-tiktok"></i></a>
            <a href="https://snapchat.com/t/AAebsOzC" target="_blank"><i class="fab fa-snapchat-ghost"></i></a>
            <a href="https://www.instagram.com/fut2024ure?igs=" target="_blank"><i class="fab fa-instagram"></i></a>
        </div>
    </section>

    <footer style="background-color: #00416b; color: white; text-align: center; padding: 1em;">
        <p>&copy; 2024 Future Force. All rights reserved.</p>
    </footer>

    <script>
        document.addEventListener('DOMContentLoaded', function () {
            const wrapper = document.querySelector('.clients-wrapper');
            const dots = document.querySelectorAll('.pagination-dot');

            dots.forEach(dot => {
                dot.addEventListener('click', () => {
                    const index = dot.getAttribute('data-index');
                    const translateX = -index * wrapper.clientWidth;
                    wrapper.style.transform = `translateX(${translateX}px)`;

                    dots.forEach(d => d.classList.remove('active'));
                    dot.classList.add('active');
                });
            });
        });
    </script>
</body>
</html>