/*                      *\
Style for intro Animation
\*                      */
/* Full-screen overlay for the animation */
    #intro 
    {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #000;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    /* Hide the overlay */
    #intro.hidden 
    {
      display: none;
    }

    /* Ensure the video covers the entire screen */
    #intro video 
    {
      width: 100%;
      height: 100%;
      object-fit:contain;
      background-image: url("img/Object_Detector_Main_background-Logo.jpeg");
      background-size: contain;
    }
/*                      *\
     Style for webpage
\*                      */

    body 
    {
    background: linear-gradient(136deg,#3c4a57, #7c8f9a, #95bac0, #d0d7d9, #94aab5, #0b0f14, #607581, #677b8c, #121a2e, #7c7b84);
    margin: 0;
    color: white;
    }
    .h_Ll
        {
            width: px;
            height: 120px;
            border-radius: 20px;
        }
        .h_Lr
        {
            width: 120px;
            height: 120px;
            margin: 10px;
            border: inset;
            border-radius: 100%;
        }

    .main 
    {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        flex-wrap: wrap;
    }
    .main-Logo 
    {
        padding: 0px;
        float: right;
    }
    .Logo-Text 
    {
        padding: 20px;
        float: left;
    }
    .column 
    {
        display: flex;
        justify-content: center; 
        align-items: center;
        gap: 150px;
        padding: 134px;
        flex-wrap: wrap;
    }

    .row 
    {
        border: inset;
        border-color: #f1e5ce;
        box-shadow: 15px 15px 30px #47545a, -15px -15px 30px #4e473e;
        border-radius: 30px;
        cursor: pointer;
        padding: 3px;
        display: inline;
    }

    .menu-social-container 
    {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5px;
    }

    .lk 
    {
        list-style-type: none;
        padding: 10px;
        border-radius: 100%;
        width: 50px;
        height: auto;
    }

    footer 
    {
        border-width: 1%;
        border-radius: 25px;
        padding-top: 10px;
        padding-bottom: 10px;
        text-align: center;
        background-color: #333;
        color: #fff;
    }

    input 
    {
        border-radius: 20px;
        cursor: pointer;
        width: 200px;
    }
/*                        *\
   Style for pc website
\*                        */

    @media (max-width: 768px) {

    .column 
    {
        padding: 20px;
        gap: 20px;
    }

    .row 
    {
        width: 100%;
        text-align: center;
    }

    .lk 
    {
        width: 50px;
    }
    .p
    {
        font-weight: 100;
    }
    }
/*                        *\
    Style for MB website
\*                        */

    @media (max-width: 480px) {
        .h_Ll 
        {
            border-radius: 10px;
            width: 150px;
            height: 60px;
        }
            .h_Lr 
            {
                width: 60px;
                height: 60px;
            }
            .column 
            {
                padding: 10px;
                gap: 10px;
            }
            .row 
            {
                width: 100%;
                text-align: center;
            }
            #intro 
            {
                position: fixed;
                width: 100%;
                height: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
                z-index: 9999;
            }

            #intro.hidden 
            {
                display: none;
            }
            
            #intro video 
            {
                width: 100%;
                height: 100%;
                object-fit:scale-down;
                background-position: center;
                background-size: contain;
            }
            .lk 
            {
                width: 25px;
            }
            .p
            {
                width: 100px;
            }
            .menu-social-container 
            {
                margin-right: 30px;
            }
        }
/*                      *\
    style for scrollbar
\*                      */

  /* Hide scrollbar on PC */
  ::-webkit-scrollbar {
    display: none;
  }
  
  /* Hide scrollbar on Mobile (Safari and Chrome) */
  ::-webkit-scrollbar,
  *::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }
  
  /* Hide scrollbar on Firefox */
  html {
    scrollbar-width: none;
  }
  
  /* Hide scrollbar on Edge */
  ::-ms-scrollbar {
    width: 0;
    height: 0;
  }