.hero-section {
    width: 100%;
    height: 600px;
    /* margin-top: 100px; */
    background-color: var(--tertiary-color);
    position: relative;
    padding-top: 50px;


    @media (max-width: 1200px) {
       height: auto;
    }
    
    

    .bg-header{
        position: absolute;
        top: 0;
        right: 0;
        /* width: 30%; */
        height: 100%;
        /* object-fit: cover; */
        z-index: 2;

        @media (max-width: 768px) {
           
            
         }
    }


    .hero-container{
        display: flex;
        flex-wrap: wrap;
    }


    .image-containe{
        width: 500px;
        height: 500px;
        z-index: 2;

        @media (min-width: 768px) and (max-width: 1200px) {
          width: 100%;
          
       }

        @media (max-width: 768px) {
          height: auto;
          
          
       }
       
        img{
            width: 100%;
            height: 100%;
            object-fit: contain;


           
        }
    }


    .content-container{
        width: 50%;
        text-align: right;
        /* margin-bottom: 100px; */
        /* margin-right: 100px; */
        z-index: 2;


        @media (min-width: 768px) and (max-width: 1200px) {
          width: 100%;
          padding-bottom: 50px;
       }

        @media (max-width: 768px) {
          width: 100%;
          padding-bottom: 50px;
       }
       

        h1{
            font-size: 3rem;
            line-height: 1.5;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 20px;
            text-align: right;
            direction: rtl;


            @media (max-width: 768px) {
                font-size: 2rem;
             }
        }

        h2{
            font-size: 1.5rem;
            line-height: 1.8;
            font-weight: 700;
            color: var(--senary-color);
            margin-bottom: 20px;
            text-align: right;
            direction: rtl;


            @media (max-width: 768px) {
                font-size: 1.5rem;
             }
        }


        p{
            font-size: 1.2rem;
            text-align: right;
            direction: rtl;

            font-weight: 400;
            color: var(--senary-color);

            @media (max-width: 768px) {
                font-size: 0.8rem;
             }
        }
       
       
       
    }


    .bg-motion{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.08;
        /* mix-blend-mode: multiply; */
      }


    
    
}

/* Responsive Design for Hero Section */
.playstore-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--secondary-color);       
    border-radius: 9999px;
    background-color: var(--secondary-color);
    padding: 0.625rem 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    outline: 0;
    transition: all  .2s ease;
    text-decoration: none;


    @media (max-width: 768px) {
        width: 100%;
     }
    
  }
  
  .playstore-button:hover {
    background-color: transparent;
    color: var(--secondary-color);
    
  }
  
  .icon {
    height: 1.5rem;
    width: 1.5rem;
  }
  
  .texts {
    margin-left: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
  }
  
  .text-1 {
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
    line-height: 1rem;
  }
  
  .text-2 {
    font-weight: 600;
  }



