
  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');

  
  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;


    font-family: 'Poppins', sans-serif;

  }
  
  header{
    z-index: 999;
    position: absolute;
    top:  0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 15px 200px;
    transition: 0.5s ease;
    backdrop-filter: blur(20px);
  

  }
  header .brand{
    color: #fff;
    font-size: 1.5em;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    
  }

    

  header .navigation{
    position: relative;


  }
  header .navigation ul{
    list-style: none;
    padding: 0;
    margin: 0;

  }
  header .navigation ul li{
    display: inline-block;
    margin-left: 35px;
  }

  header .navigation-items ul li a{
    position: relative;
    color: #fff;
    font-size: 1em;
    font-weight: bolder;
    text-decoration: none;
    margin-left: 30px;
    transition: 0.3s ease;
  }
  header .navigation-items a::before{
    content: '';
    position: absolute;
    background: #fff;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    transition: 0.3s ease;

  }
  header .navigation-items a:hover::before{
    width: 100%;


  }
  section{
    padding: 100px 200px;
  }
  .home{
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: rgb(2,0,36);
    background: linear-gradient(0deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 33%, rgba(0,212,255,1) 100%);
  }
  .home:before{
    z-index: 888;
    content: '';
    position: absolute;
    background: rgb(3,96, 251, 0.3);
    width: 100%;
    height: 100% ;
    top: 0;
    left: 0;


  }
  .home .content{
    z-index: 888;
    color: #fff;
    width: 70%;
    margin-top: 50px;
    display: none;

  }
  .home .content.active{
    display: block;
  }
  .home .content h1{
    font-size: 3em;
    font-weight: 800;
    letter-spacing: 3px;
    line-height: 65px;
    margin-bottom: 40px;

  }
  .home .content p{
    margin-bottom: 55px;

  }
  .home .content a{
  background: #2761f4; 
    padding: 8px 25px;
    color: #fff;
    font-size: 1.1em;
    font-weight: 500;
    text-decoration: none;
    border-radius: 5px;


  }
  .home .content a:hover{
    background: #020a25;
  }
  
  .home .media-icon{
    z-index: 999;
    position: absolute;
    right: 30px;
    display: flex;
    flex-direction: column;
    transition: 0.5s ease;

  }

  .home .media-icon a{
    color: #fff;
    font-size: 1.6em;
    transition: 0.3s ease;

  }
  .home .media-icon a:not(:last-child){
    margin-bottom: 20px;

  }
  .home .media-icon a:hover{
    transform: scale(1.3);
  }
  .home video{
    z-index: 000;
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

  }
  .slider-navigation{
    z-index: 888;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(80px);
    margin-bottom: 12px;
  }
  .slider-navigation .nav-btn{
   
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
    transition: 0.3s ease;
  }
  .slider-navigation .nav-btn.active{
    background: #2761f4;

  }
  .slider-navigation .nav-btn:not(:last-child){
    margin-right: 20px;
  }
  .slider-navigation .nav-btn:hover{
    transform: scale(1.3);
  }

  .video-slider{
    position: absolute;
    width: 100%;
    clip-path: circle(0% at 0 50%);
  }
  .video-slider.active{
    clip-path: circle(150% at 0 50%);
    transition: 2s ease;
    transition-property: clip-path;
  }
/* sticky nav */
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}
.sticky + .content {
  padding-top: 60px;
}

  
/* About Section */

.about {
  background: rgb(2,0,36);
  background: linear-gradient(-90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 33%, rgba(0,212,255,1) 100%);
  display: flex;
  
}
.about-section {
  padding: 50px 0;
}

.about-section .container {
  max-width: 1000px;
}

.about-section h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 20px;
}

.about-section p {
  color: #fff;
  text-align: justify;
  font-size: 15px;
  line-height: 1.5;
}

.about-section img {

 max-width: 200%;
 
 
 
 
  margin-top: 40px;
}




 

/*service */
.services {
  background: rgb(2,0,36);
  background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 33%, rgba(0,212,255,1) 100%);

 
}


  

.services .service-text{
  color: #fff;
}
.service-text p{
  margin-bottom: 70px;
  
}
 
 .services .service-box {
  margin: 10px;
  padding: 20px;
  background-color: #254bd6;
  border-radius: 20px;
  border-right-style: groove;
  
}

.services h3 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 20px;
}

.services p {
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
}

.services i {
  color: #fff;
  font-size: 35px;
  margin-bottom: 20px;
}

.services  .service-box:hover {
  background-color: #27a0d4;
}



  


/* projects */

.projects {
  background: rgb(2,0,36);
  background: linear-gradient(-90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 33%, rgba(0,212,255,1) 100%);

 
}

  
  .project-text{
    color: #fff;
  
  }
  .project-text p{
    margin-bottom: 70px;
    
  }
  
  .projects .project-container{

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
   
    align-items: center;
    


  }
   .project-box{
    position: relative;
    display: flex;
    margin: 5px;

    border-radius: 1rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, .1);
    overflow: hidden;


  }
  .project-box img{
    width: 100%;
    height: 100%;
    transition: .5s ease;

  }
  .project-box:hover img{
    transform: scale(1.1);
  }
  .project-box .project-layer{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    --main-color: #030111;
  background: linear-gradient(rgba(0, 0, 0, .1), var(--main-color));
    color: #fff;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 0.4rem;
    justify-content: center;
    opacity: 0;
    transition: .5s ease;
  }
  .project-layer a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    background: #fff;
    border-radius: 50%;
  }
  .project-layer a i{
    font-size: 1.5rem;
    color: #222;
  }
  .project-box:hover .project-layer{
    opacity: 1;
  }
  .project-box .project-layer h4{
    
    font-size: 1.3rem;
    font-weight: 800;
    
  }
  .project-box .project-layer p{
 
    font-size: 1rem;
    font-weight: 500;
    margin: 0.3rem 0 1rem;
  }
  


/* our team */
.our-team {
  background: rgb(2,0,36);
  background: linear-gradient(45deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 33%, rgba(0,212,255,1) 100%);

 
}

.our-team .canvas{
  z-index: -1;
}

  

.our-team .team-text{
  color: #fff;
  
}
.team-text p{
  margin-bottom: 50px;
  
}

 
 .team-box {
  z-index: 12;
  
  margin: 15px;
  padding: 20px;
  background: rgb(2,0,36);
  background: linear-gradient(45deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 33%, rgba(0,212,255,1) 100%);

  border-radius: 20px;
  border-right-style: groove;
  
  
}

.our-team h3 {
  font-weight: bolder;
  color: #fff;
  font-size: 20px;
  margin-top: 15px;
}

.our-team p {
  color: #fff;
  font-size: 15px;
  
}

.our-team i {
  color: #fff;
  font-size: 35px;
  margin-bottom: 20px;
}
.rounded-circle{
  margin:  10px;
  
  height: 50px;
  width: 50px;

}
.rounded-circle:hover{
  transform: scale(1.5);
}

/*
.our-team  .team-box:hover {
  background-color: #27a0d4;
}
*/
.social a{
  color: #fff;
  padding: 5x;
  font-size: 1.2em;
  transition: 0.3s ease;

}
 .social a:not(:last-child){
  margin-bottom: 20px;

}
.social i{
  padding: 5px;
  font-size: 15px;
  color: #fff;
}
.our-team .social a i:hover{
  transform: scale(1.1);
}

/* testimonial */
.testimonial {
  background: rgb(2,0,36);
  background: linear-gradient(-180deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 33%, rgba(0,212,255,1) 100%);

 
}
.testimonial-text{
  color: #fff;
}

.review{
  padding-top: 2rem;
  
}
.avatar{
  
  
  height: 50px;
  width: 50px;
  
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  

  
}
.avatar:hover{
  transform: scale(1.5);
}
.avatar img{
  
  
  height: 50px;
  width: 50px;
  
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  

  
}
.testimonial_info{
  text-align: center;
  color: #fff;
}
.testimonial_body{
  
  background: #2761f4;
  
 
  padding: 2rem;
 margin-top: 3rem;
 position: relative;
 

}
.testimonial_body p{
  color: #fff;
  font-size:14px;
}
.testimonial_body::before{
  content: "";
  display: block;
  background: #2761f4;
  width: 3rem;
  height: 3rem;
  position: absolute;
  left: 48%;
  top: -1.5rem;
  transform: rotate(45deg);

}

.swiper {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-button-prev{

font-weight: bolder;
margin-bottom: 20px;
}
.swiper-button-next{
  font-weight: bold;
  margin-bottom: 20px;

}
  

/* contact section */
.contact-us{
  background: rgb(2,0,36);
  background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 33%, rgba(0,212,255,1) 100%);
}
.contact-box {

  max-width: 1100px;
  width: 100%;
  background: rgb(2,0,36);
  background: linear-gradient(45deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 33%, rgba(0,212,255,1) 100%);

  border-radius: 20px;
  padding: 20px 60px 30px 40px;

}
.contact-box .content-info {
  display: flex;
  color: #fff;
  align-items: center;
  justify-content: space-between;
}
.contact-box .content-info .left-side {
  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  position: relative;
}
.content-info.left-side::before {
  content: "";
  position: absolute;
  height: 70%;
  width: 2px;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
}
.content-info .left-side .details {
  margin: 14px;
  text-align: center;
}
.content-info .left-side .details i {
  font-size: 30px;
  color: #fff;
  margin-bottom: 10px;
}
.content-info .left-side .details .topic {
  font-size: 18px;
  font-weight: 500;
}
.content-info .left-side .details .text-one,
.content-info .left-side .details .text-two {
  font-size: 14px;
  color: #fff;
}

.container .content-info .right-side {
  width: 75%;
  margin-left: 75px;
}
.content-info .right-side .topic-text {
  font-size: 23px;
  font-weight: 600;
  color: #fff;
}
.right-side .input-box {
  height: 55px;
  width: 100%;
  margin: 12px 0;
}
.right-side .input-box input,
.right-side .input-box textarea {
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  background: #f0f1f8;
  border-radius: 6px;
  padding: 0 15px;
  resize: none;
}
.right-side .message-box {
  min-height: 110px;
}
.right-side .input-box textarea {
  padding-top: 6px;
}
.right-side .button {
  display: inline-block;
  margin-top: 12px;
}
.right-side .button input[type="button"] {
  color: #fff;
  font-size: 18px;
  outline: none;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  background: #2761f4;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button input[type="button"]:hover {
  background: #254bd6;
}


/* footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: rgb(8, 5, 88);
  color: white;
}
 footer .video-credit h1{
  font-size: 10px;
  text-align: center;
  color: #fff;
}

/* particles */

  @media (max-width: 844px){
    header{
      padding: 12px 20px;
    }
    section{
      padding: 100px 30px;
    }
    .home .media-icon{
      right: 15px;

    }
    header .navigation{
    display: none;

    }
    header .navigation.active{
      position: fixed;
      width: 100%;
      height: 100vh;
      top: 0;
      left: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      

    }
    header .navigation .navigation-items a{
     
      color: #222;
      font-size: 1.2em;
      margin: 20px;
    
    }
    header .navigation .navigation-items a:before{
      background: #000;
      height: 5px;

    }

    header .navigation .navigation-items ul{
      background: #e6e6ef;
      
      max-width: 320px;
      margin: 20px;
      padding: 50px;
      display: flex;
      flex-direction: column;
      align-items: center;
      border-radius: 5px;
      box-shadow: 0 5px 25px rgb(1 1 1/20%);
      backdrop-filter: blur(4px);
    }
    .menu-btn{
      background: url(menu.png)no-repeat;
      background-size: 30px;
      background-position: center;
      width: 40px;
      height: 40px;
      padding: 20px;
      cursor: pointer;
      transition: 0.3s ease;
    }
    .menu-btn.active{
      z-index: 999;
      background: url(close.png)no-repeat;
      background-size: 25px;
      background-position: center;
      transition: 0.3s ease;
    }
  }
 
  @media (max-width: 820px) {
    
    

    
    
    .about-section h2 {
      color: #fff;
      font-size: 36px;
      margin-bottom: 20px;
    }
    
    .about-section p {
      color: #fff;
      text-align: justify;
      font-size: 15px;
      line-height: 1.5;
    }
    
    .about-section img {
    
     max-width: 120%;
     
     
     
     
      
    }
    .services .service-box {
      margin: 15px;
      padding: 20px;
      background-color: #254bd6;
      border-radius: 20px;
      border-right-style: groove;
      
    }
    
    .services h3 {
      color: #fff;
      font-size: 30px;
      margin-bottom: 20px;
    }
    
    .services p {
      color: #fff;
      font-size: 15px;
      line-height: 1.5;
    }
    
    .services i {
      color: #fff;
      font-size: 35px;
      margin-bottom: 20px;
    }
    
    .services  .service-box:hover {
      background-color: #27a0d4;
    }
    
    /* team */

    @media (max-width:767px) {
      .team-box h2 {
        margin-bottom:25px;
        padding-top:25px;
        font-size:24px;
      }
    }
    
    .team-box .intro {
      font-size:16px;
      max-width:500px;
      margin:0 auto;
    }
    
    .team-box .intro p {
      margin-bottom:0;
    }
    
    .team-box .people {
      padding:50px 0;
    }
    
    .team-box .item {
      text-align:center;
    }
    
    .team-box .item .box {
      text-align:center;
      padding:30px;
      background-color:#fff;
      margin-bottom:30px;
    }
    
    .team-box .item .name {
      font-weight:bold;
      margin-top:28px;
      margin-bottom:8px;
      color:inherit;
    }
    
    .team-box .item .title {
      text-transform:uppercase;
      font-weight:bold;
      color:#d0d0d0;
      letter-spacing:2px;
      font-size:13px;
    }
    
    .team-box .item .description {
      font-size:15px;
      margin-top:15px;
      margin-bottom:20px;
    }
    
    .team-box .item img {
      max-width:160px;
    }
    
    .team-box .social {
      font-size:18px;
      color:#a2a8ae;
    }
    
    .team-box .social a {
      color:inherit;
      margin:0 10px;
      display:inline-block;
      opacity:0.7;
    }
    
    .team-box .social a:hover {
      opacity:1;
    }
    
    

     
  
  
    
    /* contact  */


    .contact-box {
      margin: 40px 0;
      height: 100%;
    }
    .contact-box .content-info {
      flex-direction: column-reverse;
    }
    .contact-box .content-info .left-side {
      width: 100%;
      flex-direction: column;
      margin-top: 40px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .contact-box .content-info .left-side::before {
      display: none;
    }
    .contact-box .content-info .right-side {
      width: 100%;
      margin-left: 0;
    }
  }
  
  