@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: "Albert Sans", sans-serif;
}
html{
    scroll-behavior: smooth;
}
body{
    font-family: "Albert Sans", sans-serif;
}
a{
    text-decoration: none;
}
/* nav section */
nav{
    display:flex;
    height: 70px;
    align-items: center;
    justify-content: space-between;
    padding: 0px 50px 0px 100px;
    background:#000000;
    position: sticky;
    top:0;
    z-index: 99;
    
}

.logo img{
    align-items: start;
    display: flex;
    justify-content: flex-start;
    padding:10px 10px 10px 10px;
}

nav ul{
    display:flex;
    list-style: none;
}
nav ul li{
    margin: 0px 5px;

}
nav ul li a{
  color:black;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 8px 10px;
  color:#ffffff;
  border-radius: 4px;
  transition: all 0.3 ease;
 
}
nav ul li a:hover,
nav ul li a.active{
    background:#5e17eb;
    color:#ffffff;
}
nav .menu-btn i{
    color:white;
    font-size: 21px;
    cursor: pointer;
    display: none;
}
#check{
    display:none;
}
/* mediaqueries for responsiveness */
@media (max-width:940px){
    nav .menu-btn i{
        display: block;
    }
    
    nav ul{
       position: fixed;
        top:80px;
        left:-100%;
        background-color: #000000;
        height:60vh;
        width:25%;
        display:block;
        text-align: center;
        transition: all 0.4s ease;

    }
    nav ul li a{
        font-size:1rem;
    }
    #check:checked ~ ul{
        left:0%;

    }
    nav ul li{
        margin:40px 0px;
        display: block;
    }
    .section{
        width:100%;
        height:80vh;
        display:grid;
        place-items: center;
        
    }
    .image-slider{
        margin-top: 10px;
        width:70%;
        height:300px;
        background-image: url("d1.jpg");
        background-size: 100% 100% ;
        box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
        animation:changeImage 12s ease infinite;
    }
    .h2{
        text-align: center;
        font-weight: 600;
        font-size: 4vmin;
        margin-top: 100px;
        color:#ffffff;

    }
     .divh3{
        width:100%;
        border-radius: 10px;
        background-color: #ffffff;
        display:flex;
        justify-content: center;
        flex-wrap: wrap;
        margin-top:10px;
        border-radius: 5px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; 
        margin-bottom: 50px;
        height:15%;
    }
    #About{
        margin-top: 80px;
    }
 
   .footer{
    margin-left: 5px;
   }
    }
/* middle section(header) */
.section{
    width:100%;
    height:100vh;
    display:grid;
    place-items: center;
    margin-top: 10px;
    
}
.image-slider{
    margin-top:0px;
    width:70%;
    height:600px;
    background-image: url("assests/d1.jpg");
    background-size: 100% 100%;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    animation:changeImage 12s ease infinite;
}
@keyframes changeImage {
    0%{
        background-image:url("assests/m2.jpg") ;
    }
    25%{
        background-image: url("assests/d1.jpg");
    }
    50%{
        background-image:url("assests/search.jpg") ;
    }
    75%{
        background-image:url("assests/d4.jpg") ;
    }
    100%{
        background-image:url("assests/m2.jpg") ;
    }
}
header{
    height:100vh;
    width:100vw;
    background-color: #ffffff;
    display:flex;
    justify-content: center;
    align-items: flex-end;
}
img{
    height:100px;
    width:100px;
    border-radius: 50%;
   
}
a{
    text-decoration: none;
}
.btn{
    padding : 8px 15px;
    background-color:#5e17eb;
    border-radius : 10px;
    color:#ffffff;

}
.header-content{
    text-align: center;
    margin-top: 30px;

}
.header-content h2{
    font-size: 5vmin;
    overflow: hidden;
    white-space: nowrap;
    font-family: "Albert Sans", sans-serif;

}
.header-content h2{
    animation: animated-text 2s ease
}
@keyframes animated-text {
    from{
      opacity: 0;
      transition-duration: 2s;
      transform: rotateY(160deg);
    }
    to{
      opacity: 1;
      scale:1;
    }
  }
.line{
    width:160px;
    height:4px;
    background-color: #5e17eb;
    margin:10px auto;
    border-radius: 12px;
}

.ss{
    font-size : 4vmin;
    font-weight: 600;
    margin-bottom:90px;
    overflow: hidden;
    white-space: nowrap;
    color:#ffffff;
    text-align: center;
    margin-top: 260px;
  
}


section{
    width:80%;
    margin : 80px auto;
    background-color: #ffffff;
    margin-top: 10px;
    color:#000000;
    text-align: center;


}
/* about section */
#About{
    text-align: center;
    font-weight: 500;
    font-size: 4vmin;
    font-family: "Albert Sans", sans-serif;
    
}
.content{
    width:100%;
    background-color: #ffffff;
    display:flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
    border-radius: 5px;
    margin-bottom: 10px;
}
.divh3{
    width:60%;
    height:20%;
    border-radius: 10px;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; 
    margin-bottom: 10px;
}
/* services section */
#service{
  text-align: center;
  font-weight: 500;
  font-size: 4vmin;
  margin-top: 20px;
  font-family: "Albert Sans", sans-serif;
  
}
.h4{
  text-align: center;
  font-weight: 400;
  font-size: 3vmin;
  margin-left: 50px;
  margin-right: 50px;
  margin-top: 10px;
  margin-bottom: 20px;
  font-family: "Albert Sans", sans-serif;
  font-size: 0.9rem;
 
}
.services{
    display:flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    width:100%;


}
.box1{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    border-radius: 20px;
    height:300px;
    width:200px;
    background-color:#ffffff;
    margin:10px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
    transition: all 0.9s ease;
}
.box2{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    border-radius: 20px;
    height:300px;
    width:200px;
    background-color:#ffffff;
    margin:10px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
    transition: all 0.9s ease;
}
.box1 h2{
    color:#5e17eb;
    font-family: "Albert Sans", sans-serif;
    font-size: 3vmin;
    font-weight: 600;
    padding:10px;
}
.box2 h2{
    color:#5e17eb;
    font-family: "Albert Sans", sans-serif;
    font-size: 3vmin;
    font-weight: 600;
    padding:10px;
}
.box1 h3{
    color:#000000;
    font-family: "Albert Sans", sans-serif;
    font-size:0.9rem;
    font-weight: 300;
    text-align:left;
    padding-left:5px;
    padding-right:5px;
    padding:5px;

}
.box2 h3{
    color:#000000;
    font-family: "Albert Sans", sans-serif;
    font-size:0.9rem;
    font-weight: 300;
    text-align: start;
    padding:5px;

}
.box3{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    border-radius: 20px;
    height:300px;
    width:200px;
    background-color:#ffffff;
    margin:10px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
    transition: all 0.9s ease;
}
.box3 h2{
    color:#5e17eb;
    font-family: "Albert Sans", sans-serif;
    font-size: 3vmin;
    font-weight: 600;
    padding:10px;
}
.box3 h3{
    color:#000000;
    font-family: "Albert Sans", sans-serif;
    font-size:0.9rem;
    font-weight: 300;
    text-align: start;
    padding:5px;

}
.box4{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    border-radius: 20px;
    height:300px;
    width:200px;
    background-color:#ffffff;
    margin:10px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
    transition: all 0.9s ease;
}
.box4 h2{
    color:#5e17eb;
    font-family: "Albert Sans", sans-serif;
    font-size: 3vmin;
    font-weight: 600;
    padding:10px;
}

.box4 h3{
    color:#000000;
    font-family: "Albert Sans", sans-serif;
    font-size:0.9rem;
    font-weight: 300;
    text-align:start;
    padding:5px;
    

}
.box1:hover{
   
    background-image: url("assests/ppp.jpg");
    background-size: cover;
    background-position: center;
   
   
   
}
.box2:hover{
    background-image: url("assests/seo.jpg");
    background-size: cover;
    background-position: center;
   
}
.box3:hover{
   
    background-image: url("assests/mini.jpg");
    background-size: cover;
    background-position: center;
}
.box4:hover{

    background-image: url("assests/web.jpg");
    background-size: cover;
    background-position: center;

  
}
/* contact section */
#Contact{
    text-align: center;
    font-weight: 500;
    font-size: 4vmin;
    margin-top: 20px;
    font-family: "Albert Sans", sans-serif;
}
.pixel{
    font-family: "Albert Sans", sans-serif;
    font-weight: 500;
    font-size: 3vmin;
    color:#5e17eb;

}
.plat{
    display: flex;
    justify-content:center;
    flex-wrap: wrap;
}
.insta{
    height:40px;
    width:40px;
    color:#666;
    animation:effect 5s ease infinite;
    margin-top: 20px;
}
.insta:hover{
    color:#000000
}
/* footer section */
.footer{
    height:50px;
    display: flex;
    justify-content:space-evenly;
    margin-top: 20px;
    margin-left: 10px;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-bottom: 10px;
    
}
.foot-panel1{
       display: flex;
       justify-content: space-evenly;
       flex-wrap: wrap;
       margin-right: 40px;

}
.foot-panel2{
    height: 20px;
    display: flex;
    justify-content:space-evenly;
    flex-wrap: wrap;
    margin-right: 50px;
    

   
}
.ad1{
    font-family:"Albert Sans", sans-serif;
    font-size: 1rem;
    font-weight: 200;
    color:#5e17eb;
    margin-right: 10px;

}
.ad2{
    font-family:"Albert Sans", sans-serif;
    font-size: 1rem;
    font-weight: 200;
    color:#5e17eb;
    
}
.ad3{
    font-family:"Albert Sans", sans-serif;
    font-size: 1rem;
    font-weight: 200;
    color:#5e17eb;
    margin-right: 10px;

}
span{
    text-align: left;
    font-family:"Albert Sans", sans-serif;
    font-size: 0.9rem;
    font-weight: 200;
    color:#666;
    margin-left: 10px;

}
/* form page styling */
.container{
    width:100%;
    height:100vh;
    display:flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
form{
    background-color: #5e17eb;
    display: flex;
    flex-direction: column;
    padding:2vw 4vw;
    width:90%;
    max-width: 600px;
    border-radius: 20px;
   
}
.get{
   color:#ffffff;
   font-weight: 800;
   margin-bottom: 20px;
   font-family: "Albert Sans", sans-serif;;
}
form input, form textarea{
    border:0;
    margin: 10px 0;
    padding:20px;
    outline:none;
    background:#f5f5f5 ;
    font-size:16px;
    border-radius: 20px;
}
form button{
    padding:15px;
    background: #000000;
    color:#f5f5f5;
    font-family: "Albert Sans", sans-serif;
    font-size: 18px;
    border:0;
    outline:none;
    cursor:pointer;
    width:150px;
    margin: 20px auto 0;
    border-radius: 10px;
   transition: all 0.5s ease;
}
form button:hover{
    background: #10012d;
    color:#ffffff;
    border-radius: 20px;
}
/* ending of code */
/* ps: both html files linked with one css file */
