

@font-face {
    font-family: 'PPNeueMontreal-Book';
    src: url('fonts/PPNeueMontreal-Book.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'PPNeueMontreal-Light';
    src: url('fonts/PPNeueMontreal-Light.ttf') format('truetype');
    font-weight: lighter;
    font-style: normal;
  }
  


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'PPNeueMontreal-Book', sans-serif;
}

body,html{
    width: 100%;
    height: 100%;
}


h1, h2 {
    font-family: 'PPNeueMontreal-Light', sans-serif; /* Apply 'Light' font */
}

#main{
    background-color: #FEFEFE;
}
/* Navbar Styles */

nav {
    height: 12vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1vw;
    position: fixed;
    z-index: 999;
  }

  .blurred {
    filter: blur(5px);
    transition: filter 0.3s ease;
  }
  
  /* Ensure the active element is not blurred */
  .active {
    filter: none;
    z-index: 20;
    position: relative;
  }
  
  #nav-part-1 {
    background: #F0F0F0;
    padding: 2vh;
    border-radius: 80px;
    background: rgba(240, 240, 240, 0.2); 
    backdrop-filter: blur(15px); 
    -webkit-backdrop-filter: blur(15px); 
    border-radius: 12px; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); 
  }
  
  #nav-part-2 {
    background-color: #F0F0F0;
    margin: 1vw;
    padding: 1vw;
    border-radius: 12px;
     background: rgba(240, 240, 240, 0.3); 
    backdrop-filter: blur(15px); 
    -webkit-backdrop-filter: blur(15px);
    border-radius: 12px; 
    
  }
  
  #nav-part-2 a,
  #nav-part-2 button {
    margin-left: 2vw;
    text-decoration: none;
    color: black;
    text-transform: capitalize;
    font-family: 'PPNeueMontreal-Light';
    font-size: 2vh;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 16px;
  }
  
  #nav-part-2 a:nth-child(1) {
    margin-left: 0;
  }
  
  /* Add hover effect to links and button */
  #nav-part-2 a:hover,
  #nav-part-2 button:hover {
    text-decoration: none;
    color: black;
  }
  
  /* Search Bar Styles */
  #search-bar-container {
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #F0F0F0;
    padding: 1vw;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 20;
  }
  
  #search-bar {
    width: 400px; 
    padding: 0.5vw;
    font-size: 1.5vw;
    margin-left: 3vw;
    border: none;
    background: none;
    font-family: 'PPNeueMontreal-Light';
    color: black;
    text-transform: capitalize;
    outline: none; 
    text-decoration: none; 
  }
  
  #search-bar:focus {
    outline: none; /* No focus outline */
    color: black; /* Maintain text color */
    background: none; 
    text-decoration: none; 
  }
  
  /* Optional placeholder styling */
  #search-bar::placeholder {
    color: gray;
    opacity: 0,9; /* Subtle placeholder */
    
  }
  
  /* Blur Effect */
  .blurred {
    filter: blur(5px);
    transition: filter 0.3s ease;
  }
  
  /* Hidden State */
  .hidden {
    display: none;
  }
  
#home{
    width: 100%;
    /* background-color: chocolate; */
    display: flex;
}

#home #left-part{
    width: 35vw;
    /* background-color: blueviolet; */
    height: 100vh;
}

#left-part #inner-left{
    /* background-color: blanchedalmond; */
    margin-top: 60vh;
    padding-left:4vw;
}

#inner-left h1{
    margin:1vw 0;
    font-family: 'PPNeueMontreal-Light';
    font-weight: 400;
}

#left-part #inner-left #capsule-div{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 0.5vw;
}

.capsules{
    border: 1px solid #0171E3;
    border-radius: 50px;
    padding: 0.7px 8px;
    align-self: center;
    color: #0171E3;
    font-size: large;
}

.capsules:nth-child(1){
    border: none;
    color: rgb(168, 165, 165);
}

.capsules p{
    font-size: 2vh;
    margin:3px;
}

#down-arrow{
    margin-top: 6vw;
}

#down-arrow span {
    padding: 0.8vw 0.4vw;
    background-color: #F0F0F0;
    border-radius: 50px;
}

#down-arrow span i{
    font-size: small;
    color: rgb(104, 94, 94);
}

#home #right-part{
    width: 65vw;
    /* background-color: blue; */
    height: 90vh;
    margin-top: 6vw;
}

#block{
    width: 40%;
    height: 30px;
    background-color: #F0F0F0;
    border-radius: 8px;
    margin-left: 3.5vw;
    /* padding: 1.5vw; */
}

#text-massage{
    padding: 0.6vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

#text-massage p{
    font-size: small;
    color: #929292;
}

#text-massage span{
    border: 1px solid #0171E3;
    border-radius: 50px;
    padding: 0.7px 8px;
    margin-left: 3vw;
    margin-right: 0;
}

#text-massage span i{
    color:  #0171E3;
    font-weight: 600;
}


#image-container {
    position: relative;
    width: 500px;
    height: 513px;
    overflow: hidden;
  }

#right-part img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50px,-50px) scale(1.5); 
}




/*////////////////////////////////////////// */




#second-section{
    background-color: #EFEFEF;
    height: 90vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#Left-div {
    /* background-color: bisque; */
    width: 40vw;
    height: 100%;
    display: flex;
    justify-content: center; 
    align-items: center; 
    padding: 20px; 
}


#inner-Left-div {
  filter: blur(8px); /* Apply the initial blur */
  opacity: 0; /* Make it invisible initially */
  transition: filter 0.5s ease-out, opacity 0.5s ease-out; /* Smooth transition */
}


#Left-div p:nth-child(1){
    font-size: small;
    font-weight: 200;
    font-family: 'PPNeueMontreal-Light';
}

#Right-div{
    /* background-color: brown; */
    width: 60vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: start; 
    padding: 20px;
    /* background-color: antiquewhite; */
}

#Right-div h2{
    font-weight: 550;
    margin-top: 4vw;
}

#inner-Right{
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: brown; */
}

#inner-Right span{
    border: 1px solid #0171E3;
    border-radius: 50px;
    padding: 0.1vw 0.6vw;
    color: #0171E3;
}

#inner-right-span{
    margin-right: 4vw;
    margin-top: 4vw;
}

#inner-Right p{
    margin-right: 40px;
    margin-top: 4vw;
    color: #0171E3;
    font-size: small;
}



/* ///////////////////////////////////////////////////////// */


#Thired-section{
    background-color: #161719;
    color: white;
    width: 100%;
    height: 90vh;
    padding: 8vh;
}

#prime-thired-div{
    /* background-color: #929292; */
    width: 20vw;
    padding: 2vw;
    margin-left: 40vw;
}

#prime-thired-div p{
    color: rgb(194, 185, 185);
    font-size: small;
}

#prime-thired-div h3{
    color: #0171E3;
    font-size: small;
    font-weight: 300;
}

/* #beta-thired-div{
    background-color: brown;
} */

#beta-thired-div ul{
    /* background-color: cornflowerblue; */
    list-style-type: none;
    margin: 0;
    padding: 8vh 50vh;
}

#beta-thired-div ul li{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.thired-section-right2-part{
    margin-bottom: 8vh;
    border-bottom: 1px solid rgba(175, 173, 173, 0.308);
}

.thired-section-right2-part h3{
    font-size: 2vw;
    padding-bottom: 1.5vw;
    font-weight: 100;
    color: rgb(207, 207, 207);
}

.Thired-section-leftpart p{
    font-size:1vw ;
    color: #797777a8;
}

.Thired-section-leftpart span{
    font-size:1vw ;
}



#fourth-section{
    background-color: #0F1012;
    width: 100%;
    height: 90vh;
    padding-left: 26vw;
    color: white;
}

#fourth-upperpart{
    /* background-color: blueviolet; */
    height: 15vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upper-class{
    /* background-color: cornflowerblue; */
    margin-left: 4vw;
}

.upper-class span{
    color: #0171E3; 
}

.upper-class p{
    color: rgba(197, 197, 197, 0.712);
    font-size: 1vw;
    margin-bottom: 2vw;
}

.upper-class h3{
    font-weight: 500;
    
}

.upper-class:nth-child(1){
    margin-top: 2vw
}

#fourth-lowwerpart{
    /* background-color: chartreuse; */
    border-top: 1px solid rgb(158, 156, 156);
    height: 55%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 3vw;
}

/* #fourth-lowwer-leftone{
    background-color: brown;
} */

#fourth-lowwer-leftone p{
    color: #797777a8;
    font-size: small;
}

#fourth-lowwer-leftone h3{
    font-size: small;
    font-weight: 500;
}

#fourth-lowwer-rightone{
    /* background-color: cadetblue; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20vw;
}

.fourth-innerOne{
    padding-right: 4.5vw;
}

.fourth-innerOne p{
    color: #0171E3;
}

.fourth-innerOne span{
    color: white;
}

.fourth-innerOne-P-SPAN{
  margin-bottom: 2vw;
}

.fourth-innerOne-text{
    font-size: small;
    font-weight: 100;
    color: #efefefc7;
}


#fifth-section{
    background-color: #F2F2F4;
    height: 140vh;
    width: 100%;
}


#fifth-text{
    /* background-color: bisque; */
    padding-top: 6vw;
    width: 40%;
    margin-left: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#fifth-text #SVG{
    background-color: black;
    color: white;
    width: fit-content;
    padding: 0.5vw;
    border-radius: 30%;
  
}

#SVG-text{
    margin-top: 2vw;
}

#SVG-text h3{
    font-weight: 300;
    font-size: medium;
}

#fifth-3Dimg{
    /* background-color: chocolate; */
    position: relative; 
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#TEXT-part{
    /* background-color: brown; */
    width: 35%;
    /* padding: 0vw 4vw; */
    position: relative; 
    z-index: 1; 
}


#TEXT-part h3 {
    font-size: 10vw;
    color: #0171E3;
    font-weight: 100;
    font-family: 'PPNeueMontreal-Light', sans-serif; 
    opacity: 0; /* Start invisible */
    filter: blur(5px); /* Start with blur */
    transform: translateY(100px); /* Start the text lower */
}


#TEXT-part h3:nth-child(1){
    margin-left: 4vw;
}


#img {
    position: absolute; /* Place the image absolutely over the text */
    z-index: 2; /* Higher z-index ensures image overlaps text */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}


#img img {
    margin-left: 4vw;
    width: 50%;
    height: 50%;
    object-fit: contain;
    /* opacity: 0.8;  */
}

#fifth-lastPart{
    /* background-color: chartreuse; */
    width: 100%;
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

#fifth-LEFT{
    /* background-color: brown; */
    height: 60%;
}

#fifth-LEFT h3{
    color: #929292;
    font-size: 1vw;
    margin-bottom: 2vw;
}

#fifth-LEFT h3:nth-child(2){
    color: black;
    font-weight: 500;
}

#fifth-right{
    /* background-color: indianred; */
    height: 60%;
    width: 15%;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: start;
}

#fifth-right h3{
    font-size: small;
    font-weight: 400;
}

#fifth-right-inner{
    display: flex;
    align-items: center;
    justify-content: center;
}

.cps{
    border: 1px solid #0171E3;
    border-radius: 30px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2vw;
    font-size: small;
    padding: 2px 4px;
    cursor: pointer;
}

.cps:nth-child(1){
    margin-right: 0.5vw;
    background-color: #0171E3;
    color: white;
}


#sixith-section{
    background-color: #0F1012;
    height: 110vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

#sixith-section-1 {
    /* background-color: darkmagenta; */
    height: 50vh;
    width: calc(20%); 
    margin-left: calc(6%); 
    display: flex;
    flex-direction: column;
    /* align-items: flex-start;
    justify-content: flex-start; */
    padding: 1vw 0vw;
    color: #929292;
}



#sixith-section-1 p{
    color: #929292;
    font-size: small;
}

#sixith-section-1-inner{
    /* background-color: blueviolet; */
    margin-top: 3vw;
    width: 100%;
}

#Capss{
    display: flex;
    align-items: center;
    justify-content: start;
    margin-top: 1vw;
    color: #0171E3;
}

.CPSSS{
    border: 1px solid #0171E3;
    color: #0171E3;
    border-radius: 30px;
    width: 20%;
    padding: 0.7vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1vw;
}

.CPSSS i{
    font-size: 1vw;
    cursor: pointer;
}

#sixith-section-1-inner h3{
    font-size: 2vw;
}


#sixith-section-2 {
    /* background-color: brown; */
    height: 50vh;
    width: calc(40%); 
    margin-left: calc(-2%); 
    /* display: flex;
    align-items: center;
    justify-content: center; */
    color: white;
    font-size: 3vw;
}

#sixith-section-2 h3{
    font-size: 3vw;
    color: #929292;
}

#sixith-section-2 h3 div{
    margin-left: 9.5vw;
    /* background-color: plum; */
}


#sixith-section-2 div:nth-child(2){
    margin-left: 2.5vw;
    /* background-color: blue; */
}

#sixith-section-2 div:nth-child(2) span{
    margin-left: 4vw;
}

#sixith-section-2 p{
    font-size: 1vw;
    width: 65%;
    text-align: justify; 
    margin-top: 1.5vw;
    color: #929292;
}

#sixith-section-3 {
    background-color: #0F1012;
    height: 70vh;
    width: calc(20%); 
    margin-left: calc(-20%); 
    /* display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3vw; */
}

#sixth-section-image {
    width: 100%;
    height: 100%;
    border-radius: 20px 50px 30px 10px; 
    background: linear-gradient(45deg, #0171E3, #F2F2F4);
    mask-image: radial-gradient(circle at 50% 40%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%),
                radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: radial-gradient(circle at 50% 40%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%),
                        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, 0) 100%);
    mask-composite: add;
    -webkit-mask-composite: destination-in;
}


#sixth-section-image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}


/* /////////////////////////////////////////////////////////// */


#seventh-section{
    background-color: #0F1012;
    height: 90vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#seventh-section-1 {
    /* background-color: darkmagenta; */
    height: 50vh;
    width: calc(24%); 
    margin-left: calc(0%); 
    display: flex;
    flex-direction: column;
    /* align-items: flex-start;
    justify-content: flex-start; */
    padding: 1vw 0vw;
    color: #929292;
}



#seventh-section-1 p{
    color: #929292;
    font-size: small;
}

#seventh-section-1-inner{
    /* background-color: blueviolet; */
    margin-top: 3vw;
    width: 100%;
}

#Capss{
    display: flex;
    align-items: center;
    justify-content: start;
    margin-top: 1vw;
    color: #0171E3;
}

.CPSSS{
    border: 1px solid #0171E3;
    color: #0171E3;
    border-radius: 30px;
    width: 20%;
    padding: 0.7vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1vw;
    font-size: small;
}

.CPSSS i{
    font-size: 1vw;
    cursor: pointer;
}

#seventh-section-1-inner h3{
    font-size: 2vw;
}


#seventh-section-2 {
    /* background-color: brown; */
    height: 50vh;
    width: calc(40%); 
    margin-left: calc(-3%); 
    /* display: flex;
    align-items: center;
    justify-content: center; */
    color: white;
    font-size: 3vw;
}

#seventh-section-2 h3{
    font-size: 3vw;
    color: #929292;
}

#seventh-section-2 h3 div{
    margin-left: 4.5vw;
}

#seventh-section-2 div{
    margin-left: 4.5vw;
}

#seventh-section-2 p{
    font-size: 1vw;
    width: 65%;
    text-align: justify; 
    margin-top: 1.5vw;
    color: #929292;
}

#seventh-section-3 {
    background-color: #0F1012;
    height: 70vh;
    width: calc(20%); 
    margin-left: calc(-1%); 
    /* display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3vw; */
}

#seventh-section-image {
    width: 100%;
    height: 100%;
    border-radius: 20px 50px 30px 10px; 
    background: linear-gradient(45deg, #0171E3, #F2F2F4);
    mask-image: radial-gradient(circle at 50% 40%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%),
                radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: radial-gradient(circle at 50% 40%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%),
                        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, 0) 100%);
    mask-composite: add;
    -webkit-mask-composite: destination-in;
}


#seventh-section-image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}


#eight-section{
    background-color: #0171E3;
    height: 60vh;
    width: 100%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

#eight-two{
    /* background-color: deeppink; */
    height: 70%;
    width: 50%;
}

#eight-two h4{
    font-size: 2.5vw;
    font-weight: 500;
}

#eight-two div p{
    margin-top: 2vw;
    font-size: 1vw;
    margin-bottom: 4vw;
}

#arroeicon{
    display: flex;
    align-items: center;
    justify-content: start
}

#arroeicon-icon{
    border: 1px solid white;
    border-radius: 30px;
    padding: 0.4vw 0.2vw;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2vw;
    cursor: pointer;
}

#nineth-section{
    background-color: #F2F2F4;
    height: 80vh;
    padding-top: 10vw;
      
}

#imgpluscapsule{
    margin-left: 6vw;
}

#imgpluscapsule p{
    position: relative;
    width: 90%;
    font-size: 2vw;
    text-align: right;
    font-weight: 550;
    line-height: 1.5;
}

#imgpluscapsule span{
    display: inline-block;
    margin: 0 10px;
    border-radius: 100px;
    background-color: crimson;
    margin: 0 8px;
    margin-bottom: -12.5px;
}

#onespan{
    width: 80px;
    height: 40px;
    background-image: url('/images/hand.jpg');
    background-size: cover;
    background-position: center;
}

#twospan{
    width: 90px;
    height: 40px;
    background-image: url('/images/Futuristic Headpiece Portrait.jpeg');
    background-size: cover;
    background-position: center;
}

#threespan{
    width: 80px;
    height: 40px;
    background-image: url('/images/a17efb74b47645d2f2d918b926d8cd53.jpg');
    background-size: cover;
    background-position: center;
}


#tenth-section{
    background-color: #0F1012;
    height: 90vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

#tenth-first{
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
}

#tenth-logo-1{
    padding: 2vw 4vw;
}

#tenth-logo-1 .SVG1{
    width: 6rem;
    height: 6rem;
}


#tenth-logo-2{
    padding:4vw 4vw;
}

#tenth-logo-2 .SVG2{
    width: 5rem;
    height: 5rem;
}

#tenth-second{
    /* background-color: gray; */
    width: 20%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-around;
}

#thenth-secon-part1{
    display: flex;
    align-items: start;
    justify-content:start;
}

#thenth-secon-part1 p{
    color: #929292;
}

#thenth-secon-part1 a{
    color: #EFEFEF;
}

#tenthA{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: end;
    margin-left: 3vw;
    gap: 0.5vw;
}

#tenthA a{
    text-decoration: none;
    font-size: 2vw;
}


#thenth-secon-part2{
    display: flex;
    align-items: center;
    justify-content: center;
}

#tenthB{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: end;
    gap: 1vw;
    margin-left: 3vw;
}

#tenthB a{
    text-decoration: none;
    color: #EFEFEF;
    font-size: 4vw;
}

#thenth-secon-part2 p{
    color: #929292;
}






/* Media Query for Mobile Devices */


@media (max-width: 480px) {
    /* Navigation bar layout */
    nav {
      height: 10vh;
      width: 45vh;
      justify-content: space-between;
      padding: 0 6vw;
    }
  
    /* Left side: Logo */
    #nav-part-1 {
      padding: 1.5vh;
      border-radius: 100px;
      /* background: none;
      box-shadow: none; */
    }
  
    /* Hide the menu links by default */
    #nav-part-2 {
      display: none;
      position: absolute;
      top: 10vh; 
      left: 0;
      width: 100%;
      background: rgba(240, 240, 240, 0.9);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      padding: 1vh 0;
      flex-direction: column;
      align-items: center;
      border-radius: 0 0 12px 12px;
    }
  
    /* Style for each menu item */
    #nav-part-2 a,
    #nav-part-2 button {
      margin: 1vh 0;
      padding: 1vh 2vw;
      font-size: 1.8vh;
      text-align: center;
      width: 90%;
    }
  
    /* Show menu icon */
    #menu-icon {
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 2rem;
      cursor: pointer;
      background-color: #F0F0F0;
      padding: 4vw;
      border-radius: 100px;
    }

    #menu-icon i {
      font-size: 5vw;
      font-weight: 800;
  }
  
    /* Show the menu when active */
    #nav-part-2.active {
      display: flex;
    }


    /* home-page */

    #home {
        position: relative; 
        display: flex;
        flex-direction: column; 
        height: auto; 
      }
    
      #home #left-part {
        width: 100%;
        height: auto;
      }
    
      #left-part #inner-left {
        margin-top: 20vh;
        padding-left: 4vw;
        text-align: center;
        justify-content: space-between;
      }

      #inner-left-p{
        font-size: 30px;
      }
    
      #inner-left h1 {
        font-size: 6vw;
        margin: 2vw 0;
      }
      
      #left-part #inner-left #capsule-div {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1vw;
      }
    
      .capsules {
        font-size: 4vw;
        /* padding: 1vw 2vw; */
      }
    
      .capsules:nth-child(1) {
      
        display: none;
      }
      #down-arrow {
        margin-top: 5vw;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        left: 15px;
        bottom: 50px;
        padding: 1vw 2vw;
        z-index: 3;
      }
    
      #down-arrow span {
        padding: 4vw 2vw;
      }
    
      #home #right-part {
        width: 100%;
        height: auto;
        margin-top: 2vw;
      }
    
      #block {
        width: 80%;
        height: 35px;
        background-color: #F0F0F0;
        border-radius: 8px;
        margin-left: 10%;
        display: none;
      }
    
      #text-massage {
        padding: 0.6vw;
        display: flex;
        align-items: center;
        justify-content: center;
      }
    
      #text-massage p {
        font-size: 3vw;
        color: #929292;
      }
    
      #text-massage span {
        padding: 0.8vw 2vw;
        margin-left: 2vw;
      }
    
      #text-massage span i {
        font-size: 1.2vw;
        color: #0171E3;
      }
    
      #image-container {
        position: relative;
        width: 100%;
        height: 250px;
        overflow: hidden;
        align-self: end;
        display: flex
    ;
        flex-direction: column;
        grid-column: 1 / -1;
        height: 70svh;
        justify-content: space-between;
      }
    
      #right-part img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: translate(0, 0) scale(1);
      }


      /* second-section */

      #second-section {
        background-color: #EFEFEF;
        height: 60vh; 
        padding: 4vw; 
        display: flex;
        flex-direction: column; 
        justify-content: center;
        align-items: center;
      }
    
      #Left-div, #Right-div {
        width: 100%; 
        height: auto; 
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column; 
        padding: 3vw;
      }
    
      #Left-div p {
        font-size: 6vw; 
        font-weight: 200;
        font-family: 'PPNeueMontreal-Light';
        text-align: center; 
      }

      #Left-div p:nth-child(1) {
        font-size: larger;
        font-weight: 200;
        font-family: 'PPNeueMontreal-Light';
    }
    
      #Right-div h2 {
        font-size: 5vw; 
        font-weight: 550;
        text-align: center; 
        margin: 2vw 0;
      }
    
      #inner-Right {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 15vw;
      }
    
      #inner-Right span {
        border: 1px solid #0171E3;
        border-radius: 50px;
        padding: 0.5vw 4vw; 
        color: #0171E3;
      }
    
      #inner-right-span {
        margin-top: 3vw;
      }
    
      #inner-Right p {
        margin-top: 3vw;
        color: #0171E3;
        font-size: 5vw; 
        text-align: center; 
      }


      /* thired-section */

      #Thired-section {
        background-color: #161719;
        color: white;
        width: 100%;
        height: auto; /* Adjust height based on content */
        padding: 6vw 4vw; /* Add some padding for spacing */
      }
    
      #prime-thired-div {
        width: 100%;
        padding: 15vw 4vw;
        margin-left: -15px;
        text-align: start; 
      }
    
      #prime-thired-div p {
        font-size: 4vw; /* Increase font size */
        color: rgb(194, 185, 185);
      }
    
      #prime-thired-div h3 {
        color: #0171E3;
        font-size: 5vw; /* Increase font size */
        font-weight: 300;
      }
    
      #beta-thired-div ul {
        padding: 4vw 0; /* Adjust padding */
      }
    
      #beta-thired-div ul li {
        display: block; /* Stack items vertically on mobile */
        margin-bottom: 6vw; /* Add spacing between list items */
      }
    
      .Thired-section-leftpart, .thired-section-right2-part {
        display: flex;
        flex-direction: column; /* Stack left and right parts vertically */
        align-items: start;
        width: 100%; 
      }
    
      .Thired-section-leftpart p, .Thired-section-leftpart span {
        font-size: 5vw; /* Adjust font size for readability */
        text-align: start; /* Center text */
        margin-bottom: 1vw; /* Add some spacing between items */
      }
    
      .thired-section-right2-part h3 {
        font-size: 6vw; /* Increase font size */
        font-weight: 100;
        padding-top: 6vw;
        padding-bottom: 8vw; /* Adjust padding */
        color: rgb(207, 207, 207);
        text-align: start; /* Center the heading */
      }


      /* fourth-section */

      #fourth-section {
        background-color: #0F1012;
        width: 100%;
        height: auto; /* Adjust height based on content */
        padding-left: 5vw; /* Reduced padding */
        padding-right: 5vw; /* Add some padding on the right for better spacing */
        color: white;
      }
    
      #fourth-upperpart {
        height: auto; /* Adjust height */
        display: flex; 
        flex-direction: column;
        align-items: start;
        justify-content: start;
        padding-top: 4vw;
      }
    
      .upper-class {
        margin-left: 0;
        margin-bottom: 10vw;
        text-align: start;
      }
    
      .upper-class span {
        color: #0171E3;
      }
    
      .upper-class p {
        color: rgba(197, 197, 197, 0.712);
        font-size: 5vw; /* Increased font size for readability */
        margin-bottom: 8vw;
        margin-top: 4vw;
      }
    
      .upper-class h3 {
        font-weight: 500;
        font-size: 5vw; /* Increased font size */
      }
    
      #fourth-lowwerpart {
        border-top: 1px solid rgb(158, 156, 156);
        height: auto; /* Adjust height based on content */
        display: flex; 
        flex-direction: column;
        align-items: self-end;
        justify-content: start;
        margin-right: 0;
        padding-top: 10vw;
      }
    
      #fourth-lowwer-leftone {
        margin-bottom: 6vw; /* Space between the sections */
        text-align: center;
      }
    
      #fourth-lowwer-leftone p {
        color: #797777a8;
        font-size: 5vw; /* Increase font size */
      }
    
      #fourth-lowwer-leftone h3 {
        font-size: 5vw; /* Increase font size */
        font-weight: 500;
      }
    
      #fourth-lowwer-rightone {
        display: flex; /* Stack inner items vertically */
        margin-right: 0;
        text-align: center;
        justify-content: center;
        margin-bottom: 15vw;
        margin-top: 10vw;
      }
    
      .fourth-innerOne {
        padding-right: 6vw; /* Remove extra padding */
        margin-bottom: 8vw; /* Space between inner items */
      }
    
      .fourth-innerOne p {
        color: #0171E3;
        font-size: 6vw; /* Increase font size */
      }
    
      .fourth-innerOne span {
        color: white;
      }
    
      .fourth-innerOne-P-SPAN {
        margin-bottom: 2vw;
      }
    
      .fourth-innerOne-text {
        font-size: 4vw; /* Increase font size */
        font-weight: 100;
        color: #efefefc7;
        margin-top: 10vw;
        text-align: right; 
      }


      /* fifith-section */

      #fifth-section {
        height: auto; 
        padding: 20px;
      }
    
      #fifth-text {
        width: 100%;
        margin-left: 0;
        padding-top: 10vw;
        padding-bottom: 55vw;
      }
    
      #fifth-text #SVG {
        padding: 2vw;
        border-radius: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
    
      #SVG-text h3 {
        font-size: 14px; /* Smaller font size */
        text-align: center;
      }
    
      #fifth-3Dimg {
        height: auto;
        flex-direction: column;
      }
    
      #TEXT-part {
        width: 100%;
        text-align: center;
        margin-top: -15vh;
      }
    
      #TEXT-part h3 {
        font-size: 20vw;
      }
    
      #TEXT-part h3:nth-child(1) {
        margin-left: 0; /* Center align for smaller screens */
      }
    
      #img {
        width: 100%;
        height: auto;
        margin-left: 0;
        display: flex;
        justify-content: center;
        margin-top: 130px;
      }
    
      #img img {
        width: 50%;
        height: auto;
      }
    
      #fifth-lastPart {
        flex-direction: column;
        align-items: center;
        text-align: center;
        height: auto;
        padding: 10px;
        margin-top: 22vh;
      }
    
      #fifth-LEFT {
        height: auto;
        margin-bottom: 20px;
      }
    
      #fifth-LEFT h3 {
        font-size: 20px;
      }
    
      #fifth-right {
        width: auto;
        height: auto;
        align-items: center;
      }
    
      #fifth-right h3 {
        font-size: 16px;
      }
    
      #fifth-right-inner {
        flex-wrap: wrap;
        justify-content: center;
      }
    
      .cps {
        width: auto;
        font-size: 12px;
        padding: 2px 12px;
        margin-top: 10px;
        margin-right: 0; 
      }

      /* sixth-section */

      #sixith-section {
        flex-direction: column; /* Stack sections vertically */
        height: auto; /* Let height adjust automatically */
        padding: 10px 0px;
      }
    
      #sixith-section-1 {
        width: 100%;
        margin-left: 0;
        height: auto;
        padding: 10px 20px;
      }

      #sixith-section-1 p {
        color: white;
        font-size: 3vw;
        margin-top: 10vw;
        margin-bottom: 12vw;
    }
    
      #sixith-section-1-inner h3 {
        font-size: 4.5vw; /* Adjust font size for smaller screens */
      }
    
      #Capss {
        margin-top: 5vw;
        justify-content: flex-start;
      }
    
      .CPSSS {
        width: 45px;
        height: 25px;
        margin-right: 4vw;
      }
    
      .CPSSS i {
        font-size: 16px; /* Icon size adjustment */
      }
    
      #sixith-section-2 {
        width: 100%;
        height: auto;
        margin-left: 0;
        font-size: 4.5vw;
        padding: 10px 0;
      }
    
      #sixith-section-2 h3 {
        font-size: 5vw;
        text-align: start;
        margin: 0;
      }
    
      #sixith-section-2 h3 div,
      #sixith-section-2 div:nth-child(2) {
        font-size: 10vw;
        margin-left: 5vw; /* Center-align for smaller screens */
      }

      #sixith-section-2 div:nth-child(2) span {
        margin-left: 0vw;
    }
    
      #sixith-section-2 p {
        font-size: 3.5vw;
        width: 55%;
        text-align: justify;
        margin-top: 8px;
      }
    
      #sixith-section-3 {
        width: 100%;
        height: auto;
        margin-left: 0;
        padding: 10px 0;
      }
    
      #sixth-section-image {
        width: 100%;
        height: 70vh; /* Adjust image height for better proportions */
        border-radius: 20px 50px 30px 10px;
        background: linear-gradient(45deg, #0171E3, #F2F2F4);
        mask-image: radial-gradient(circle at 50% 40%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%),
                    radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, 0) 100%);
        -webkit-mask-image: radial-gradient(circle at 50% 40%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%),
                            radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, 0) 100%);
        mask-composite: add;
        -webkit-mask-composite: destination-in;
        overflow: hidden;
      }
    
      #sixth-section-image img {
        width: 155%;
        height: 100%;
        object-fit: cover;
      }


      /* seventh-section */


      #seventh-section {
        flex-direction: column; /* Stack the sections vertically */
        height: auto; /* Let height adjust automatically */
        padding-bottom: 5vw;
      }
    
      #seventh-section-1 {
        width: 100%; /* Full width for small screens */
        margin-left: 0;
        height: auto;
        padding: 10px 0;
        font-size: 3.5vw;
      }

      #seventh-section-1 {
        /* background-color: darkmagenta; */
        display: flex;
        flex-direction: column;
        align-items: end;
        padding: 1vw 0vw;
        color: #929292;
    }
    
      #seventh-section-1 p {
        font-size: 5vw;
        margin-right: 8vw;
      }
    
      #seventh-section-1-inner h3 {
        font-size: 5vw; 
        padding-left: 25vw;
      }
    
      #Capss {
        margin-top: 2vw;
        justify-content: flex-start;
        margin-left: 2vw;
      }
    
      .CPSSS {
        width: 40px; /* Smaller button size */
        height: 40px;
        padding: 5px;
      }
    
      .CPSSS i {
        font-size: 16px; /* Adjust icon size */
      }
    
      #seventh-section-2 {
        width: 100%; /* Full width for small screens */
        height: auto;
        margin-left: 0;
        padding: 10px 0;
        font-size: 4vw;
      }
    
      #seventh-section-2 h3 {
        font-size: 15vw;
        text-align: start;
        margin: 0;
      }

      #seventh-section-2 div {
        margin-left: 25.5vw;
    }

      #seventh-section-2 h3 div {
        margin-left: 23.5vw;
      }
    
      #seventh-section-2 p {
        font-size: 3.5vw;
        width: 90%;
        text-align: justify;
        margin-top: 10px;
      }
    
      #seventh-section-3 {
        width: 100%; /* Full width for small screens */
        height: 80vh;
        margin-left: 0;
        padding: 10px 0;
        margin-top: 8vw;
      }
    
      #seventh-section-image {
        width: 100%;
        height: 70vh; /* Adjust height for smaller screens */
        border-radius: 20px 50px 30px 10px; /* Keep the same shape */
        background: linear-gradient(45deg, #0171E3, #F2F2F4);
        mask-image: radial-gradient(circle at 50% 40%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%),
                    radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, 0) 100%);
        -webkit-mask-image: radial-gradient(circle at 50% 40%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%),
                            radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, 0) 100%);
        mask-composite: add;
        -webkit-mask-composite: destination-in;
      }
    
      #seventh-section-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }


      /* eight-section */

        #eight-section {
            background-color: #0171E3;
            height: auto; /* Adjust height based on content */
            width: 100%;
            color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px 0;
            font-family: 'Arial', sans-serif; /* Clean modern font */
        }
    
        #eight-two {
            height: auto; /* Makes sure the content doesn't overflow */
            width: 80%; /* Adjust width for smaller screens */
            text-align: center;
            padding: 10px;
        }
    
        #eight-two h4 {
            font-size: 6vw; /* Responsive font size */
            font-weight: 500;
            color: white;
            margin-bottom: 3rem;
            margin-top: 2rem;
            text-transform: uppercase; /* Clean modern touch */
        }
    
        #eight-two div p {
            margin-top: -3vw;
            font-size: 4vw; /* Adjusted for better readability */
            margin-bottom: 4vw;
        }
    
        #arroeicon {
            display: flex;
            flex-direction: column; /* Stack the items vertically */
            align-items: center;
            justify-content: center;
            margin-top: 2rem;
        }
    
        #arroeicon-icon {
            border: 1px solid white;
            border-radius: 100px;
            padding: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 3vw;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 10px;
            height: 37px;
        }
    
        #arroeicon-icon:hover {
            background-color: rgba(255, 255, 255, 0.1); /* Adds hover effect */
        }
    
        #arroeicon i {
            font-size: 3vw;
            color: white;
        }
    
        #arroeicon h4 {
            font-size: 4.5vw; /* Adjust for readability */
            text-transform: capitalize;
            letter-spacing: 0.5px;
            color: white;
        }
    

        /* nineth-section */

        #nineth-section {
          background-color: #F2F2F4;
          height: auto;
          padding-top: 12vw;
          padding-bottom: 12vw;
          display: flex;
          justify-content: start;
      }
  
      #imgpluscapsule {
          width: 90%; /* Ensures the text fits within the container */
          text-align: center;
      }
  
      #imgpluscapsule p {
          position: relative;
          width: 102%;
          font-size: 6vw; /* Adjust font size for smaller screens */
          font-weight: 550;
          line-height: 1.4;
          color: #333;
          margin-bottom: 2vw;
          padding: 16vw 7vw;
          text-align: justify;
      }
  
      #imgpluscapsule span {
          display: inline-block;
          margin: 0 12px;
          border-radius: 100px;
          background-color: crimson;
          margin-bottom: -12.5px;
      }
  
      #onespan, #twospan, #threespan {
          width: 60px;
          height: 40px;
          background-size: cover;
          background-position: center;
          border-radius: 100px;
          transition: all 0.3s ease;
      }
  
      #onespan {
          background-image: url('/images/hand.jpg');
      }
  
      #twospan {
          background-image: url('/images/Futuristic Headpiece Portrait.jpeg');
      }
  
      #threespan {
          background-image: url('/images/a17efb74b47645d2f2d918b926d8cd53.jpg');
      }
  
      /* Add hover effects */
      #onespan:hover, #twospan:hover, #threespan:hover {
          transform: scale(1.2); /* Increase hover effect on smaller screens */
          opacity: 0.8; /* Fade effect */
      }



      /* teneth-section */

      
      #tenth-section {
        background-color: #0F1012;
        height: auto;
        width: 100%;
        display: flex;
        /* flex-direction: column; */
        align-items: center;
        justify-content: center;
        color: white;
        padding: 2rem 0;
    }
    
    #tenth-first {
        width: 100%;
        height: 47vh;
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: space-between;
        text-align: center;
    }
    
    #tenth-logo-1 {
        padding: 1.5rem;
    }
    
    #tenth-logo-1 .SVG1 {
        width: 5rem;
        height: 5rem;
    }
    
    #tenth-logo-2 {
        padding: 1.5rem;
    }
    
    #tenth-logo-2 .SVG2 {
        width: 4rem;
        height: 4rem;
    }
    
    #tenth-second {
        width: 90%;
        height: 50vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 1rem 0;
    }
    
    #thenth-secon-part1, #thenth-secon-part2 {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    #thenth-secon-part1 p, #thenth-secon-part2 p {
        color: #929292;
        font-size: 1rem;
    }
    
    #tenthA, #tenthB {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    
    #tenthA a, #tenthB a {
        text-decoration: none;
        color: #EFEFEF;
        font-size: 1.5rem;
    }

    #tenthA, #tenthB {
      display: flex;
      flex-direction: column;
      align-items: end;
      justify-content: center;
      gap: 0.5rem;
  }
    
    #tenthA a:hover, #tenthB a:hover {
        color: #ff6347; /* Optional hover color */
    }
  }
  