*{
    margin: 0;padding: 0;
    box-sizing: border-box; 
    text-decoration: none;
  }

header{
    position: fixed;
    top: 0;left: 0; right: 0;
    background:#0c1a1a;
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    padding: 20px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
  
  }
  
  header .ngs{
    font-weight: bolder;
    font-size: 25px;
    color:#ff5f09;
  
  }
  #header-logo{
    width: 108px;
      height: 39px;
      margin-left: -50%;
    }
      
  
  header .navbar ul{
    list-style: none;
    margin-right: 15px;
    margin-left:-10% ;
  
  }
  header .navbar{
    margin-bottom: -25px;
  }
  header .navbar ul li{
    
    position: relative;
    float:left;
  }
  
  header .navbar ul li a{
    font-size: 18px;
    padding: 10px;
    color:#c0c0c0 ;
    display: block;
    font-family: Arial;
 
  }
  
  header .navbar ul li a:hover{

    color:#fff;
  }
  
  header .navbar ul li ul{
    
    
    position: absolute;
    left: 0;
    width: 1600px;
    top: 50px;
    
    
    display: none;
    background:#0c1a1a;
    /* opacity: 0.5; */
    padding-left: 200px;
    margin-left: -468px;
  }
  header .navbar ul li ul #c{
    display: flex;
    flex-direction: column;
  margin-top: 20px;
    
    float: left;
  }
  header .navbar ul li ul #d{
    display: flex;
    flex-direction: column;
    border-left: 4px solid white;
    height: 300px;
    padding:20px;
    float: left;
  }
  header .navbar ul li ul #e{
    display: flex;
    flex-direction: column;
    border-left: 4px solid white;
    padding:20px;
    height: 300px;
    
  }
  header .ngs img{
    width: 80px;
    height: 40px;
  
  
  }
  
  
  #ul{
    margin-right: 200px;
  }
  header .navbar ul li ul #f{
    display: flex;
    flex-direction: column;
    margin-left: 200px; 
  }
  

  
  header .navbar ul li:focus-within > ul,
  header .navbar ul li:hover > ul{
    display: initial;
  
  }
  
  
  
  #menu-bar{
    display: none;
  }
  
  header label{
    font-size: 20px;
    color: #333;
    cursor: pointer;
    display: none;
  
  }
  
  
  header .navbar ul li a:focus{
    color:#fff;
  }
  
  header .navbar ul li a::after{
  
    content:"";
    display: block;
    width:0%;
    height:2px;
    background:#ff5f09;
    margin:auto;
    margin-top: 10px;
  
  }
  header .navbar ul li a:hover::after{
  width:100%;
  transition: 0.5s ease;
  }
  header .navbar ul li a{
  display: inline-block;
  }
  
  header .navbar ul li a:focus::after{
  width:100%;
  transition: 0.5s ease;
  }




.bc{
    display: flex;
    justify-content: space-between;
    background-color: #0C1A1A;
    height: 690px;
    
}
.four{
    width: 45%;
    margin-top: 300px;
    margin-left: 50px;
    color: aliceblue;
    background-color: #0C1A1A;


    
}
.four p{
    margin-top: 10px;
    font-size: 18px;
    text-align: justify;
    font-family:  Helvetica;
    
}

.four #a{
    font-size: 40px;

    color: #ff5f09;
    font-size: 60px;
    font-weight:initial;
    font-family: 'Pacifico';
    line-height: 0;
    animation: disappear 8s 10s both infinite;


}


@keyframes disappear {
    50% {
        text-shadow: 0 0 40px #cbc7c7;
    }
    to {
        text-shadow: 0 0 20px #cbc7c7;
        opacity:0;
    }
}
.four #b{
    font-size: 50px;
    
    margin-left: 10px;
   color: #eee;

}

.five img{
    margin-top: 75px;
    
    border-radius: 31% 69% 23% 77% / 66% 18% 82% 34%;
}
.five img{ animation: 5s spotlight reverse linear infinite; }
.five img { animation: 5s spotlight linear infinite; }

@keyframes spotlight {
  100% { clip-path: circle(100% at 50% 50%); }
  75% { clip-path: circle(20% at 50% 50%); }
  50% { clip-path: circle(20% at 12% 84%); }
  25% { clip-path: circle(20% at 93% 51%); }
  0% { clip-path: circle(20% at -30% 20%); }
}

.bring h1{
    text-align: center;
    margin-bottom: 30px;
}
.bring{
    width: 55%;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 50px;
}
.bring p{
line-height: 2;
text-align: center;
}


button {
    background-color: #fafdfd;
   padding: 0.75em 1.5em;
   border: 3px solid #E77670;
   color: white;
   text-transform: uppercase;
   letter-spacing: 3px;
   font-weight: 600;
   border-radius: 5px;
   cursor: pointer;
   position: relative;
   transition: 0.5s;
}

button:hover {
   border-color: transparent;
   letter-spacing: 5px;
}

button:hover:after {
   content: '';
   position: absolute;
   background: linear-gradient(90deg, #F4A889, #E77670, #B63565, #5073b8, #1098ad, #6fba82);
   height: calc(100% + 3px * 4);
   width: calc(100% + 3px * 4);
   top: calc(-3px * 2);
   left: calc(-3px * 2);
   z-index: -1;
   border-radius: 5px;
   background-size: 200%;
   animation: animate 1s ease infinite alternate;
}

@keyframes  animate {
   from {
       background-position: 0% 50%;
   }
   to {
       background-position: 100% 50%;}
}

.first{
    margin-top: 40px;
    display: flex;
    justify-content: space-around;
}
.first-img{
    margin-left: 20px;
}
.first-content{
    margin-top: 60px;
    padding-left: 20px;
    margin-right: 20px;
}
.first-content p{
    margin-top: 15px;
    text-align: justify;
    margin-right: 20px;
    line-height: 1.5;
}

.second{
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
}
.second-content{
    margin-left: 20px;
    margin-top: 60px;
}
.second-img{
    margin-right: 20px;
}
.second-content p{
    margin-top: 15px;
    text-align: justify;
    line-height: 1.5;
    margin-right: 20px;
}

.container{
    width: 90%;
    margin: auto;
}
.third{
margin-top: 70px;
margin-bottom: 50px;
}

.third{
    border-left: 5px solid #ff5f09;
    
}
.third span{
    color: #ff5f09;
}
.third p{
    margin-top: 20px;
    line-height: 1.5;
    text-align: justify;
}

.technologies{
    margin-top: 100px;
    margin-bottom: 100px;
}
.technologies h2{
    text-align: center;
    margin-bottom: 70px;
    
    font-size: 40px;
}
.tech-img{
    display: grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); 

   margin: auto;
   row-gap: 90px;
   width: 100%;
   column-gap :10px;
   filter: grayscale(0);
  
}
.tech-space{
    margin-left: 60px;
    
}

.grid-item {
    position: relative; /* Required for absolute positioning of caption */
  }
  
  .caption {
    position: absolute;
    bottom: -30px;
    left: -70px;
    width: 100%;
     /* Adjust background color and opacity */
    color: #3e3c3c; /* Caption text color */
    padding: 5px;
    text-align: center;
  }




.new-concept{
    display: grid;
    grid-template-columns: 33% 33% 33%;
    width: 90%;
    margin: auto;
    color: white;
   
  }
.concept-bg{
    background-color: #0C1A1A;
    padding: 40px;
    margin-bottom: 70px;
    text-align: center;
}
.concept-bg #concept-p{
    margin-bottom: 50px;
    color: white;
    line-height: 2;
}
.concept-bg h1{
    color: white;
    margin-bottom: 20px;
}

  
  .concept h2{
    text-align: center;
    line-height: 2;
  
  }
  .concept p{
    line-height: 1.5;
    text-align: justify;
    padding-left: 30px;
    padding-right: 30px;
  }
  .concept img{
    width: 200px;
    height: 100px;
    /* margin-left: 27%; */
  }
  .concept #android-img{
    width: 130px;
    height: 100px;
    /* margin-left: 35%; */
  }

  .concept #hybrid-img{
    width: 100px;
    /* margin-left: 38%; */
  }
  .concept{
    padding: 10px 0px;
  }
  .concept:hover{
    background-color: rgb(224, 223, 223);
    transform: scale(1.08);
    transition: 0.5s;
    color: black;
  }
  .concept{
    margin-bottom: 10%;
    padding-bottom: 10%;
  }
  .below{
    display: grid;
    grid-template-columns: 120% 120%;
    width: 80%;
    margin: auto;
  }
  .below{
    margin-left: 50%;
  }

 
  .work-hard{
    width: 55%;
    margin: auto;
    text-align: center;
    justify-content: center;
    line-height: 1.5;
    margin-bottom: 50px;
    margin-top: 60px;
}
.work-hard p{
    margin-top: 20px;
    line-height: 2;
    margin-bottom: 20px;
}

.work-hard-border{
    border-bottom: 3px solid #ff5f09;
    width: 13%;
    margin-top: 20px;
    margin-left: 44%;
}



.last{
    display: flex;
    justify-content: space-between;
    background-color: #0c1a1a;
    margin-bottom: -64.3px;
    margin-top: 50px;
    padding-bottom: 70px;
}
.last-content{
    margin-top: 5%;
    line-height: 1.5;
    color: #eee;
    width: 50%;
   
}
.last-img img{
    width: 650px;
    height: 400px;
    margin-top: 70px;
    margin-left: 60px;
    margin-right: -200px
}
.last-img img{
    /* width: 30em; */
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
    animation-name: changeShapes;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}

@keyframes changeShapes {
    from {
        clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    }
   
   50% {
        clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
   }
   
   75% {
      clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
  }

to {
      clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  }
}

.last-work-border{
    border-bottom: 3px solid #ff5f09;
    width: 15%;
    margin-top: 20px;
    margin-left: 10%;
}

.last-content-topics-img img{
    width: 50px;
    height: 50px;
    margin-top: 10px;
    margin-left: 10px;
   
}
.last-content-topics{
    display: flex;
    justify-content: space-between;
   
    gap: 20px;
    margin-top: 20px;
    background-color: #fff;
    color: black;
    margin-right: 20px;
    border-radius: 10px;
    padding: 10px 0px;
    
}
.last-content-topics:hover{
transform: scale(1.04);
transition: 0.5s;
}
.last-content-topics:hover img{
    transform: scale(1.1);
transition: 0.5s;
}


.bottom{
    margin-top: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 300px;
    background-color: #6acfc7;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    margin-bottom: 70px;
}



.footer{
    
    display: flex;
    justify-content: space-around;
    background-color: #0C1A1A;
}
.footer ul li{
    margin-top: 20px;
list-style: none;
}
.footer1{
    /* background-color: #0c1a1a; */
    height: 10vh;
    margin-top: 30px;
    padding-top: 5vh;
}
.footer2 {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0C1A1A;
    

}
.footer2 i{
    color: red;
    padding: 30px;
}

.footer ul li a{
    color: #c0c0c0;
}


















   
@media screen and (min-width:320px) and (max-width:468px){
    html,body{
        overflow-x: hidden;
        display: flex;
        justify-content: center;
        
        flex-direction: column;
        /* padding: 10px; */
    }
    header{
        padding: 20px;
    
    }
    header label{
        display: initial;
    }
    header .navbar{
        position: absolute;
        top: 100%; left:0; right: 0;
        background: #fff;
        border-top: 1px solid rgba(0,0,0,.1);
        display: none;
    }

    header .navbar ul li{
        width: 100%;
        margin-left: 10vw;
    }
    #header-logo{
      margin-left: 10%;
    }

    header .navbar ul li ul{
        position: relative;
        width: 100%;
    }
    header .navbar ul li ul li{
        background: #eee;

    }

    #menu-bar:checked ~ .navbar{
        display: initial;
    }

    header .left{
        width:100%;
    }

    

    .bc{
        margin-top: -203px;
        display: block;
        width: 600px;
        /* padding-top: 700px; */
        
        left: 0; right: 0;
        padding: 0;
        margin-bottom: 20px;
    }
    .four{
        padding-top: 20px;
    }
    .four #a{
        
    
        font-size: 40px;
        
        
    
    }
    .four #b{
        font-size: 30px;
        color: #eee;
        margin-left: 10px;
    
    }
    .four p{
        font-size: 13px;
        /* text-align: justify;
         */
    }
    .five{
        margin-top: -100px;
        
        
       

    }
    .five img{
        
        width: 100vw;
        height: 255px;
        margin-top: 120px;
        /* clip-path: polygon(0 15%, 100% 0%, 100% 100%, 0% 100%); */
        border-radius: 31% 69% 23% 77% / 66% 18% 82% 34%;
        
        transform: rotate(90);
    }
    
    .first{
       
        flex-direction: column;
    }
    .first-img{
        margin-left: -20px;
    }
    .first-img img{
        width: 100%;
    }
    
    .bring p{
        width: 150%;
        margin-left: -24%;
    }
    .bring h1{
        width: 150%;
        margin-left: -24%;
    }
    

    .tech-img{
        display: grid;
        grid-template-columns: 33% 33% 33%;
        margin-left: -9%;
       
    }
    
    .grid-item img{
        margin-bottom: 19%;
    }
    .caption{
       width: 130%;
        margin-left: 30%;
    }
    
    #mic img{
        width: 10%;
    }
  
    .new-concept{
        display: grid;
        grid-template-columns: 100%;
    }
    .concept p{
        height: 100%;
        width: 100%;
       
    }
    .concept{
        margin-bottom: 40px;
    }
    .concept-bg #concept-p{
        width: 110%;
        margin-left: -20px;
    }
    .below{
        display: grid;
        grid-template-columns: 100%;
    }
.below{
    margin-left: 0%;
}

 .below .concept p{
    height: 100%;
    width: 100%;
   
}
 .below h2{
    width: 100%;
 }
 .below img{
    margin-left: 0%;
 }
 .below .concept{
    width: 125%;
    /* padding-right: 20%; */
 }


    .work-hard p{
        width: 170%;
        margin-left: -35%;
        }
        
        .last{
            flex-direction: column;
        }
        .last-content{
            width: 100%;
        
        }
        .last-content-topics-text{
            font-size: 12px;
        }
        .last-content-topics{
            margin-left: 5%;
        }
        .last-content{
            text-align: center;
        }
        #last-p{
            margin: 3% 3%;
            text-align: justify;
        }
        .last-work-border{
            display: none;
        }

        .last-img img{
            width: 100%;
            margin-left: 0%;
            height: 300px;
        }
        #one-none{
            display: none;
        }
    

        .bottom{
            margin-top: 100px;
            width: 100%;
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            margin-bottom: -20px;
        }
        .bottom h1{
            font-size: 18px;
        }




    .footer2 i{
        color: red;
        padding: 30px;
    }
    
     .footer {
        
    
    display: grid;
    grid-template-columns: auto auto ;
     row-gap: 20px;
    column-gap: 10px;
     
    padding: 10px;
    
    }



    
}





@media screen and (min-width:800px) and (max-width:1300px){
    header .ngs{
        font-size: 20px;
      }
    
      header .navbar ul{
        margin-right: -4vw;
      }
    
      header .navbar ul li ul{
        margin-left: -45vw;
       
        width: 159vw;
        padding-left: 35vw;
         }
         header .navbar ul li ul li{
           margin-left: 3vw;
         }
    
      header .navbar ul li a{
        font-size: 19px;
      }
      header .ngs img{
        width: 60px;
        height: 30px;
      
      
      }
      #ul{
        margin-right: 20vw;
      }
      #f li{
        margin-left: -20vw;
       }
      .bc{
        width: 129vw;
      }

      .four{
        width: 100vw;
      }

      .five img{
        width: 70vw;
        height: 110vh;
      }

      .bring{
        width: 120vw;
        margin:10% 5%
      }


      .concept-bg{
        width: 129vw;
      }
  .timeline{
    margin-left: -16%;
    
  }

  .technologies{
    width: 129vw;
  }
  .work-hard{
    width: 129vw;
   
  }

  .last{
    width: 129vw;
  }

  .last-img img{
    width: 50vw;
    height: 70vh;
    margin-top: 22vh;
  }
  .last-content-topics{
    padding: 10px 10px;
  }
  .last-content{
    width: 80vw;
  }
  .bottom{
    width: 129vw;
  }
  .footer{
    width: 129vw;
  }
  .footer2{
    width: 129vw;
  }

}