.top .c1 {
    height: 160px;
}

@media only screen and (max-width: 1000px) {

    /* ---------left box landing-------------- */
    .left-box {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .left-box h1 {
        text-align: center;
    }

    .left-box p {
        text-align: center;
    }








    /* -------------------- */

    .container-landing {
        flex-direction: column;
    }

    .circle1 {
        width: 70%;
    }

    .right-box {
        padding: 0px;
    }

    .top .c1 {
        width: 90%;
        /* background-color: red; */
    }

    .circle1top {
        width: 1200px;
        height: 131px;
        margin-left: 20px;

    }

    .circle1top video {
        width: 97%;
        height: 90%;
        object-fit: cover;
    }

    .right-box .circle2 {
        margin-right: 20px;
    }

    .c1 .circle1 {
        animation: increaseWidth 1s forwards;
        animation-delay: 1s;
    }


    /* --------------------------------------- */

    .c3 .circle3 {
        width: 100%;

    }

    .c3 .circle3 img {
        margin-left: 20px;
    }

    .c3 .circle3 video {
        margin-right: 20px;
    }

    /* ------------------------- */

    .c5 .circle5 {
        animation: increaseWidth2 1s forwards;
        /* Width increase animation */
        animation-delay: 1s;
        /* Add a delay of 1.5 seconds before starting the animation */
    }


    .c5 .circle5 .v2 {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .circle5Res {
        width: 100%;


    }

    .bottom .c5 video {
        width: 95% !important;

    }

    .bottom .c5 img {
        display: none;
    }

    .right-box .center {
        margin: 0px 10px;
    }


    /* ---------------------------- */
    .home .nav {
        display: flex;
        justify-content: space-between;
        height: 70px;
    }

    .home .nav .left {
        margin-left: 20px;
    }

    .home .nav .menu {
        display: block;
    }

    .home .resMenuModel {
        position: absolute;
        min-height: 100vh;
        width: 100%;
        background: #faefe2;
        color: white;
        z-index: 2;
        align-content: flex-start;
        justify-content: center;
        left: 0;
        top: -100vh;
        transition: linear 0.4s;

    }

    .right .uls {
        display: flex;
        width: 100%;
        height: auto;
        flex-direction: column;
        font-size: 20px;
        /* background-color: blue; */
    }






    /* ------------------contact---------- */
    .contact .contact-container {
        display: flex;
        flex-direction: column;
    }

}


@keyframes increaseWidth {
    0% {
        width: 0%;
        /* Initial width */
    }

    100% {
        width: 100%;
        /* Increased width */
    }

}




@keyframes increaseWidth2 {
    0% {
        width: 0%;
        /* Initial width */
    }

    100% {
        width: 100%;
        /* Increased width */
    }
}



/* --------------------------------- */

@media only screen and (max-width: 435px) {
    .right-box-landing {
        height: auto;
    }

    .right-box-landing .top {
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .right-box-landing .top .c1 {
        width: 50%;
        margin-left: 20px;
    }

    .right-box-landing .top .c1 .circle1 {
        width: 100%;
        height: 110px;
        margin: 0;
    }

    .right-box-landing .top .c1 .circle1 video {
        width: 90%;
        height: 90px;
    }

    .right-box-landing .top .c2 {
        width: 50%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .right-box-landing .top .c2 .circle2 {
        width: 130px;
        height: 130px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .right-box-landing .top .c2 .circle2 .i1 {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .right-box-landing .top .c2 .circle2 .i1 img {
        width: 110px;
        height: 110px;
    }


    /* -------- */
    .right-box-landing .center {
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0px;
    }

    .right-box-landing .center .c3 {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .right-box-landing .center .circle3 {
        width: 90%;
        height: 130px;
    }

    .right-box-landing .center .circle3 .circle3Content img {
        height: 110px;
        width: 26vw;
    }

    .right-box-landing .center .circle3 .circle3Content video {
        height: 110px;
        width: 50vw;
    }

    /* -------- */
    .right-box-landing .bottom {
        height: auto;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0;
    }

    .right-box-landing .bottom .c4,
    .right-box-landing .bottom .c5 {
        width: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .right-box-landing .bottom .circle4 {
        width: 131px;
        height: 148px;
    }

    .right-box-landing .bottom .circle5 {
        height: 130px;
        margin-right: 20px;
    }

    .right-box-landing .bottom .circle5 .v2 {
        height: 130px;

    }

    .right-box-landing .bottom .circle5 video {
        height: 100px;
    }

}


@media (min-width: 1001px) {
    .menu, .close {
      display: none !important; /* Ensures they are hidden on screens >768px */
    }
  }
  
  @media (max-width: 1000px) {
    .menu {
      display: block; /* Show the menu icon on mobile */
    }
    .close {
      display: none; /* Initially hidden, will be shown when menu opens */
    }
  }
  