*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
html,body{
    width: 100%;
    height: 100%;
    
    
    
    
    
}

/* Preloader styling */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: "Bitcount Grid Single", system-ui;
  z-index: 9999; /* ensures it stays above everything */
}

/* Typing effect */
.loader h1 {
  font-size: 10vw;
  font-weight: 400;
  margin-inline: auto;
  overflow: hidden;
  white-space: nowrap;
  border-right: 1px solid white;
  animation: typing 3s steps(7) forwards, blink 1s step-end infinite;
}

@keyframes typing {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

/* Hide main content initially */
.main-content {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
  
}

/*clock*/


.clock {
  border-radius: 100%;
  background: #ffffff;
  font-family: "Montserrat";
  border: 5px solid white;
  box-shadow: inset 2px 3px 8px 0 rgba(0, 0, 0, 0.1);
  position: absolute;
  left:-50px;
  transform: scale(0.4);
  opacity: 1;
}

.wrap {
  overflow: hidden;
  position: relative;
  width: 350px;
  height: 350px;
  border-radius: 100%;
}

.minute,
.hour {
  position: absolute;
  height: 100px;
  width: 6px;
  margin: auto;
  top: -27%;
  left: 0;
  bottom: 0;
  right: 0;
  background: black;
  transform-origin: bottom center;
  transform: rotate(0deg);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.minute {
  position: absolute;
  height: 130px;
  width: 4px;
  top: -38%;
  left: 0;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
  transform: rotate(90deg);
}

.second {
  position: absolute;
  height: 90px;
  width: 2px;
  margin: auto;
  top: -26%;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 4px;
  background: #FF4B3E;
  transform-origin: bottom center;
  transform: rotate(180deg);
  z-index: 1;
}

.dot {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 12px;
  height: 12px;
  border-radius: 100px;
  background: white;
  border: 2px solid #1b1b1b;
  border-radius: 100px;
  margin: auto;
  z-index: 1;
}




.page_1{
    background-image: url("background\ blue.png");
    background-size: cover;
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    
}





.header{
    display: flex;
    justify-content: space-around;
    align-items: center;
    
    height: 20%;
    width: 100%;
}
.header h1{
    color: black;
    font-size: 50px;
    font-weight: 380;
    font-family: "Bitcount Grid Single", system-ui;
    z-index: 10;
}
.page_1 .nav{
    
    height: 70%;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    
   
   
    border-radius: 0px 0px 30px 30px; 
    box-shadow: -24px_32px_14px_18px_rgba(0,_0,_0,_0.05);
   
    
}
.page_1 .nav-1{
    position: absolute;
    height: 15%;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: rgba(255, 255, 255, 0.497);
    backdrop-filter: blur(50px);
    border-radius: 0px 0px 30px 30px; 
    box-shadow: -30px 35px 20px rgba(48, 47, 47, 0.436);
}
.page_1 .nav .a{
    z-index: 100;
    
    
    
}

.page_1 .nav a{
    text-decoration: none;
    font-family: "Bitcount Grid Single", system-ui;
    color: white;
    font-size: 35px;
    
    
    
    
}
.page_1 .nav_2 {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    z-index: 100;
    
    
    
}
.video-container {
  
  width: 180px; 
  height: 120px; 
  overflow: hidden; 
  position: relative; 
  border-radius: 30px;
  
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* This is the key property */
  position: absolute;
  top: 0;
  left: 0;
}


.men img{
    height: 100%;
    padding: 0px;
    margin: 0px;
    position: absolute;
    top: 0px;
    
    z-index: 10;
    animation-name: myAnimationName;
    animation-duration: 3s; 
    animation-delay: 5s;
    
}

/*phone ke sare div*/
.outer{
    height: 250px;
    
    text-align: center;
    
    
}
.outer a{
    text-decoration: none;
    color: white;
    font-size: 30px;
    font-family: "Bitcount Grid Single", system-ui;
}
.phone_showcase{
    position: absolute;
    bottom: 0px;
    height: 350px;
    width: 100%;
    
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 20;
    
    
}

.box{
    height: 220px;
    width: 180px;
    
    margin: 10px;
    border-radius:20px ;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
    
    
    
}
.box img{
    transition: all 0.5s ease-in-out;
}
.box:hover img{
    
    transform: scale(1.1);
    cursor: pointer;
}
.box1{
    background-image: url("phone-background.jpg");
    background-size: cover;
    z-index: 20;
}
.box1 img{
    height: 220px;
    z-index: 20;
    
    
}
.box2{
    background-image: url("white_bg.jpg");
    background-size: cover;
}
.box2 img{
    height: 220px;
    
}
.box3{
    background-image: url("white_bg.jpg");
    background-size: cover;
}
.box3 img{
    height: 220px;
    
}
.box4{
    background-image: url("phone-background.jpg");
    background-size: cover;
}
.box4 img{
    height: 220px;
    
}
.inner_box{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    
    
}
/*phone transparent background*/
.transparent-1{
    height: 80%;
    width: 100%;
    position: absolute;
    
    overflow: hidden;
}

.transparent img{
    animation-name: myAnimationName;
    animation-duration: 3s; 
    z-index: 1;
    animation-timing-function: ease-in-out;
    position: relative;
    animation-delay: 5s;
    
    top: 50%;
    right: 0%;
    
    
}
@keyframes myAnimationName {
    from {
        
        transform: translateX(300px);
    }
    to {
        
        transform: translateX(0); 
    }
}



/*page2*/
.page2{
    height: 100%;
    width: 100%;
    background-color: black;
    position: relative;
    background-image: url("page2bg.png");
    background-size: cover;
    overflow: hidden;
    display: flex;
    z-index: -10;
}
/*cursor*/
.page2{
    font-family: "Bitcount Grid Single", system-ui;
}
.page2 p{
    font-size: 1.3vw;
    text-align: center;
}

.cursor{
    height: 40px;
    width: 40px;
    background-color: white;
    mix-blend-mode: difference;/*bohot hi important hai*/
    border-radius: 50%;
    position: absolute;
    transition: all linear 0.2s;
    z-index: 110;
}

.page2bg{
    width: 50%;
    height: 100%;
    
    position: relative;
    
    
}

.page2phone1{

    position: absolute;
    left: -50%;
    top: -5%;
    transform: rotate(37deg);
    z-index: 1;
    

    
}
.page2phone1 img{
    height: 75vw;
}

.page2phone2{
    
    position: absolute;
    left: -40%;
    top: 15%;
    transform: rotate(37deg);
    
}
.page2phone2 img{
    height: 74vw;
}

.page2info{
    height: 100%;
    width: 50%;
    text-align: center;
    padding: 40px;


}
.page2info h1{
    font-family: "Bitcount Grid Single", system-ui;
    color: white;
    font-size: 4vw;
    font-weight: 400;
    height: 10%;

}

.outer_container{
    height: 90%;
    
    
}



.con-part1{
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 50%;
    width: 100%;
}
.container{
    
    height: 15vw;
    width: 15vw;
    border-radius: 20px;
    
    
    background-color: rgba(255, 255, 255, 0.492);
    backdrop-filter: blur(50px);
    box-shadow: -10px -10px black ;
    
}

.container:hover{
    box-shadow: -12px -12px black ;

}

.con-4 img{
    height: 100%;
    width: 100%;
    border-radius: 20px;
}
.con-1 video{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    
}

.con-3{
    background-image: url("Snapdragon_Logo.png");
    background-size: cover;
}
.con-2{
    background-image: url("camera.avif");
    background-size: cover;
    background-position: center;
}

/*page3*/
.page3{
    background-color: black;
    height: 100%;
    width: 100%;
    position: relative;
    text-align: center;
    padding: 40px;
    color: white;
    overflow: hidden;
    
}
.cursor2{
    height: 40px;
    width: 40px;
    background-color: white;
    mix-blend-mode: difference;/*bohot hi important hai*/
    border-radius: 50%;
    position: absolute;
    transition: all linear 0.2s;
    z-index: 110;
    
}
.page3 h1{
    font-size: 7vw;
    font-family: "Ubuntu", sans-serif;
  font-weight: 800;
  font-style: normal;
}
.page3 a{
    color: white;
    display: block;
    text-decoration: none;font-family: "Bitcount Grid Single", system-ui;
    font-size: 5vw;
    line-height: 7vw;
    font-weight: 350;
    
}
.footer{
    height: 7vw;
    width: 100%;
    position: absolute;
    overflow: hidden;
    
    bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 10px;
    z-index: 1;
    
}

.border{
    width: 75%;
    height: 70%;
    position: relative;
    
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-top: 1px solid #fffefe23;
    

}

.footer a{
    font-size: 2vw;

}










