WordPress Query – Blog Cards Duplicate issue

In comments Tom J Nowell already identified + solved the issue

Bellow I put code of it, and put functions that call post title, excerpt , permalink instead of static data given in question

<div class="blog-container-ehukuk">
    <?php
    $paged = ( get_query_var( 'paged' ) ) ? get_query_var( 'paged' ) : 1;
    $args = array(
            'post_type'=> 'post',
            'post_status' => 'publish',
            'posts_per_page' => 10,
            'order' => 'DESC',
            'orderby' => 'date',
            'paged' => $paged
        );
    $result = new WP_Query( $args );
    ?>

    <?php
    if ( $result-> have_posts() ) {

        ?>
        <!-- Wrapper Divs -->
        <!-- One time -->
        <div class="container-fostrap">
            <div class="content">
                <div class="container">
                    <div class="row">

                        <?php
                        while ( $result->have_posts() ) {

                            $result->the_post(); ?>

                            <!-- Repeater Div that has post data in it-->
                            <!-- Multiple times -->
                            <div class="col-xs-12 col-sm-4">
                                <div class="card">
        
                                    <img src="<?php the_post_thumbnail_url('full'); ?>" alt="card__image" class="card__image" width="100%">

                                    <div class="card-content">
                                        <h4 class="card-title">
                                            <a href="<?php echo get_the_permalink();?>">
                                                <?php echo get_the_title();?>
                                            </a>
                                        </h4>
                                        <p class="">
                                            <?php echo get_the_excerpt();?>
                                        </p>
                                    </div>
                                    <div class="card-read-more">
                                        <a href="<?php echo get_the_permalink();?>" class="btn btn-link btn-block">
                                            Read More
                                        </a>
                                    </div>

                                </div>
                            </div>
                            <!-- Repeater Div END -->

                            <?php
                        } ?>
                        
                    </div>
                </div>
            </div>
        </div>
        <!-- Wrapper Divs END -->

        <?php
    } 
    wp_reset_postdata(); 
    wp_reset_query(); ?>

</div>