@import url('./css2.css');

:root {
    --background-color: #ffffff38;
    --text-color: rgb(220, 220, 220);
    --text-color-light: rgba(246, 244, 244, 0.986);
    --nave-background-color:#ffffff38;
    --nave-border-radius: 15px;
   --icon-color:#c798fb;
   --icon-color2:#4ab1f7;
   --text-color-dark: rgb(0, 0, 0);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Anek Devanagari", sans-serif;
}

html, body {
    width: 100%;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

body::-webkit-scrollbar {
    display: none;
}

.main {
    width: 100vw;
    height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: transparent;
}
/* Video section */
video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    position: fixed;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.436);
    z-index: 1;
    position: fixed;
    filter: blur(10px); 
}

/* Text section */
.text {
    width: 63%;
    height: 51%;
    padding: 10px;
    display: grid;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 2; /* Above the overlay */
    align-content: space-evenly;
    justify-items: center;
}


/* .text_1 {
    font-size: 10vw;
    color: var(--text-color-light);
    text-align: center;
    font-weight: bold;
    font-weight: 100;
} */

.text div {
    width: 100vw;
    height: 270px;
    background-image: url('/images/web.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 auto;
    opacity: 1;
    margin-top: -50px;
}

.text_2 {
    font-size: 6vw;
    color: var(--text-color);
    text-align: center;
    font-weight: 300;
    display: inline-block;
    margin-left: 19px;
    display: none;
}

.text_3 {
    font-size: 33px;
    color: var(--text-color-light);
    text-align: center;
    font-weight: bold;
    font-weight: 100;
    width: 100%;
    margin-top: -10px;
    display: none;
}

/* Navigation (nave) */
.nave {
    width: 100%;
    height: 100px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    position: relative;
    z-index: 3;
    margin-top: 25px;
}

.nave .right {
    width: 30vw;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--nave-background-color);
    padding: 0 10px;
    padding: 11px;
    border-radius: var(--nave-border-radius);
}

.nave .right img {
    width: 50px;
}

.nave .right div {
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.nave .right div p {
    color: var(--text-color-light);
    font-size: 15px;
    font-weight:200;
}

.nave .right div i {
    color: var(--text-color-light);
    font-size: 20px;
}

.left p {
    color: var(--text-color);
    font-size: 20px;
    font-weight:200;
}

#main{
    display: none; 
    position: absolute;
    top: 70px;
    background: rgba(43, 42, 44, 0.8);
    border-radius: 5px;
    padding: 10px;
    z-index: 3;
}

.menu ul {
    list-style-type: none;
    padding: 0;
}

.menu ul li {
    margin: 10px 0;
}

.menu ul li a {
    color: black;
    text-decoration: none;
    font-weight: 200;
    transition: color 0.3s;
}

.menu ul li a:hover {
    color: black; /* Change color on hover */
}

.work{
    width: 150px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    font-size: 15px;
    border: none;
    background-color: var(--nave-background-color);
    color: var(--text-color);   
    font-weight: 200;
    border-radius:var(--nave-border-radius);
}
.work i{
    font-size: 15px;
    animation: color 2s infinite ease-in;
}
@keyframes color{
    0%{
        color: var(--icon-color);
    }
    50%{
        color: var(--icon-color2);
    }
    100%{
        color: var(--icon-color);
    }
}

.work-wrap{
  text-decoration: none;  

}

.bottom-nave{
    width: 100%;
    height: 90px;
    z-index: 3;
    display: flex;
    position: fixed;
    bottom: 0px;
    align-items:center;
    justify-content: center;
    margin-bottom: 25px;
}
.bottom-nave span{
    width: 94%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    background-color: #ffffffc9;
    border-radius: var(--nave-border-radius);
}
.bottom-nave div{
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 10px;
}
.bottom-nave div a{
  text-decoration: none;
  color: var(--text-color-dark);
  font-size: 15px;
  font-weight:300;
}


@media screen and (max-width: 630px) {
    .main{
        position: absolute;
        top: -30%;
    }
   .nave .right{
    width: 100vw;
   }
   .nave .left{
    display: none;
   }
   .text {
    width: 100%;
    display: grid;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 2;
    align-content: space-evenly;
    justify-items: center;
}
/* .text_1 {
    font-size: 39px;
    color: var(--text-color-light);
    text-align: center;
    font-weight: bold;
    font-weight: 100;
} */
.text_3 {
    font-size: 6vw;
    color: var(--text-color-light);
    text-align: center;
    font-weight: bold;
    font-weight: 200;
    width: 61vw;
    display: none;
}
.text_2 {
    font-size: 18vw;
    letter-spacing: -1.5px;
    line-height: 44px;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 32px;
    width: 100%;
    display: none;

}

.main {
    width: 100vw;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: transparent;
    margin-top: -30px;
    margin-bottom: 38px;
}
.text div {
    width: 100vw;
    height: 254px;
    background-image: url('/images/web.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 auto;
    opacity: 1;
}
.bottom-nave button {
    padding: 9px;
    font-size: 15px;
    background: none;
    color: white;
    border: none;
 }
 .bottom-nave .Instagram{
    display: none;
 }
 .bottom-nave .anim {
    font-size: larger;
    text-align: center;
    width: 100%;
    animation: beep 1s ease-in-out infinite; /* Added 'infinite' to loop the animation */
}

@keyframes beep {
    0% {
        color: var(--icon-color2);
    }
    100% {
        color: var(--icon-color);
    }
}

  }

  @media (max-width: 631px) {
    .text div {
        width: 100vw;
        height: 260px;
        background-image: url('/images/mobile-web.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        margin: 0 auto;
        opacity: 1;
        margin-top: -10px;
        margin-bottom: 30px;
        
    }
    
}

  @media (max-width: 376px) {
    .text div {
        width: 100vw;
        height: 254px;
        background-image: url('/images/mobile-web.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        margin: 0 auto;
        opacity: 1;
        margin-top: -30px;
    }

    .text_2 {
        font-size: 12vw;
        letter-spacing: 7px;
        line-height: 43px;
        color: var(--text-color);
        text-align: center;
        width: 100%;
        margin: 0px auto;
        margin-bottom: 15px;
        display: none;
    }
    .text_3 {
        font-size: 6vw;
        color: var(--text-color-light);
        text-align: center;
        font-weight: bold;
        font-weight: 200;
        width: 61vw;
        margin-top: 1px;
        display: none;
    }
    
.main {
    width: 100vw;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: transparent;
    margin-top: -30px;
    margin-bottom: 38px;
}

.Instagram{
    display: none;
}
 }
.loder{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content:center;
    position: fixed;
    background-color: #2b2a2c;
    z-index: 999;
    top: 0px;
display: none;
}