@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

html{
  scroll-behavior: smooth;
}


body{
  overflow-x: hidden;
}
.container{
width: 1200px;
max-width: 100%;
margin: 0 auto;
}

nav{
  width: 100%;
  height: 75px;
  background-color: transparent;
  position: absolute;
  top: 0;
  right: 0;
}

.navbar{
  height: 100%;
}

ul{
  width: 80%;
}

ul li a{
  color: white;
  transition: letter-spacing .4s ease;
  padding: 10px 30px;
}

a.active{
  display: block;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 30px;
}

ul li a:hover{
  letter-spacing: 4px;
  display: block;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 30px;
}





#backToTop{
  position: fixed;
  bottom: 40px;
  right: 40px;
  font-size: 20px;
  background-color: crimson;
  padding: 20px 20px ;
  border-radius: 30px;
  color : white;
  cursor: pointer;
  z-index: 100000;
transform: scale(0) rotate(360deg); 
transition: transform .2s ease;

}

.visible{
  transform: scale(1) rotate(0deg) !important;
}










/* Content Starts heres */


section.hero{
  background: url('./images/bg.jpg') no-repeat;
  background-size: cover;
background-attachment: fixed;
background-position: center center;
}

section.hero .container {
  align-items: center;
}

.container .hero-text{
  text-align: left;
}
.container .hero-text h2{
 color: white;
 text-align: left;
 font-weight: bolder;
 font-size: 100px;
 line-height: 120px;
 text-transform: uppercase;

 /* text-shadow: 1px 0px 11px #ffffff; */
}

.dot{
  width: 30px;
  height: 30px;
  background-color: white;
  display: inline-block;
  position: relative;
  top: -123px;
  left: 350px;
  border-radius: 50%;
}

.magic-laptop img{
  width: 600px;
}

.magic-laptop{
  position: relative;
}

.images-roller{
  position: absolute;

  width: 480px;
  display: none;
  pointer-events: none;
}

.images-roller img{
  border-radius: 10px;
}

.images-roller.slick-slider{
  position: absolute;
  top: -133px;
  left: 64px;
}

section.hero{
  text-align: center;
}

section.hero i{
  margin-top: 50px;
  font-size: 40px;
  color: white;
  animation: arrow 1s ease  infinite forwards;
}


@keyframes arrow {

  0%{
    transform: translateY(0);
  }

  50%{
    transform: translateY(20px);
  }

  100%{
    transform: translateY(0);
  }

}


/* section services */

section.services{
  background: url('./images/services/bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  min-height: 920px;
  padding-top: 50px;
}

section.services .container{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  
}

.section-title{
  font-size: 30px;
  letter-spacing: 5px;
  text-align: center ;
  background: url('./images/services/bgtext2.png') no-repeat;
  background-position: center 0px;
  padding: 10px 0;
  margin-bottom: 60px;
  text-transform: uppercase;
  color: white;
}

.section-title h2{
  font-family: 'Roboto';
  font-weight: 300;
}
section.services .container div{
  width: 448px;
  height: 270px;
  margin: 30px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background-position: center center;
}

section.services .container div h2{
  position: absolute;
  width: 248px;
  font-size: 30px;
  text-align: center;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

section.services .container div::after{
position: absolute;
content: '';
width: 100%;
height: 100%;
top: 0;
right: 0;
background: linear-gradient(to bottom, rgba(255, 70, 193, 0.281), rgba(255, 8, 8, 0.178) 50%);
z-index: 5;
transition: transform .5s ease;
}

/* section.services .container div:hover::after{
  transform: translateY(0%);
} */

section.services .container div img{
  transition: transform .5s ease;
  transform: scale(1.3);
}

section.services .container div:hover img{
  transform: scale(1.5);
}









/* sectionCOUTNER */
section.my-counter{
  width: 100%;
  height: 300px;
  background: url('./images/bg.jpg');
  background-attachment:scroll;
  background-position: center center;
  margin: 0 auto;
  padding-top: 27px;
}

section.my-counter .container{
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}

/* section gallery */

.work{
  background: url(./images/services/bg.jpg);
  padding: 50px 100px;
}

section.work{
  height: 900px;
}

.my-slider .items{
    width: 300px;
    height: 250px;
    margin: 0 60px;
    border-radius: 50px;
    outline: none;
    border: none;
  }

 .slick-track{
    padding-top: 250px;
    padding-bottom: 250px;
    height: 900px;
    display: flex;
    align-items: center;
  } 

  .my-slider .items img{
    max-width: 100%;
    border-radius: 50px;
    transition: 0.5s;
    outline: none;
    border: none;
    box-shadow: 0px 0px 5px 1px rgb(157, 219, 255);
  }
  
  .my-slider .slick-center img{
    transform: scale(2.2);
  }


  .images-roller.slick-slider {
    position: absolute;
    top: -273px;
    left: 0px;
}


.images-roller {
    position: absolute;
    width: 605px;
    transform: scale(0.79);

}


  /* ABOUT ME SECTION */


  section.about-me{

    margin-bottom: 70px;
  }
  section.about-me .section-title{
    color: black;
  }
  section.about-me .container{
    box-shadow:
  0 2.8px 2.2px rgba(0, 0, 0, 0.024),
  0 6.7px 5.3px rgba(0, 0, 0, 0.038),
  0 12.5px 10px rgba(0, 0, 0, 0.06),
  0 22.3px 17.9px rgba(0, 0, 0, 0.052),
  0 41.8px 33.4px rgba(0, 0, 0, 0.0116),
  0 100px 80px rgba(0, 0, 0, 0.12)
;
    padding: 10px 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 30px;
  }
  section.about-me .col-6 img{
    width: 300px;
    border-radius: 500px;
  }

  section.about-me .col-6 img{
    width: 300px;
    border-radius: 500px;
  }

  section.about-me .col-6:last-child{
    width: 700px;
  }
  section.about-me .col-6 h2{
    font-size: 40px;
    color: gray;
  }

  section.about-me .col-6 p{
    font-size: 25px;
    color: gray;
  }

  .style-intro{
    font-size: 60px;
    background: linear-gradient(to bottom, rgb(255, 178, 35), rgb(255, 0, 98));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .para-about{
    margin-top: 30px;
    font-size: 15px !important;
  }

  .social-media{
    padding-top: 50px;
  }
  
  .social-media i{
    margin-right: 30px;
    font-size: 40px;
    background: linear-gradient(to bottom, rgb(255, 178, 35), rgb(255, 0, 98));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }


  /* section contact us */

section.contact-us{
  background:rgb(51,51,51);
  height: 950px;
  position: relative;
}

section.contact-us .container{
  display: flex;
  align-content: center;
  justify-content: space-between;
}

section.contact-us .container .col-6:last-child{
  width: 500px;
}

section.contact-us .container .form-control{
  margin: 20px 0;
}

.form-control input[type='text'],
.form-control input[type='email']{
  border: 0;
  border-bottom: 1px solid #b4becb;
  width: 100%;
  padding: 20px 30px;
  font-size: 16px;
  border-radius: 20px;
}


.form-control input:focus{
  outline: none;
}



.contact-us .container .col-6:first-child{
  background: linear-gradient(to bottom, rgb(219, 120, 54), rgb(255, 0, 98));
  padding: 30px;
  border-radius: 30px;
  
}



.contact-us .container .col-6 h2{
  font-family: Pacifico;
  color: white;
  font-size: 50px;
}

.contact-us .container .col-6 p{
  color: white;
  font-size: 20px;
  text-align: center;
}

.contact-us .contact-spl-p{
  padding-top: 30px;
}

.contact-us .contact-spl-p>span{
  padding-top: 30px;
}

.credits span{
  background: linear-gradient(to bottom, rgb(255, 178, 35), rgb(255, 0, 98));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.credits{
  position: absolute;
  color: white;
  background: rgb(22, 22, 22);
  bottom: 0;
  transform: translateX(-1%);
  width: 100%;
  padding: 20px 30px;
  text-align: center;
}

















/* FIRST TABLET SIZE */

@media (max-width: 1250px) {

  .navbar{
    justify-content: space-around;
  }

  ul {
    width: 70%;
  }


    section.hero{
      height: 1200px;
    }
    
    section.hero .container{
      flex-direction: column;
    }
    
    section.hero i{
      margin-top: 100px;
    }

  
  .magic-laptop img {
    width: 800px;
    margin-top: 30px;
  }

  .images-roller{
    width: 650px;
  }


  .images-roller.slick-slider{
    top: -181px;
    left: 80px;
  }

  .container .hero-text {
    text-align: center;
  }




  .container .hero-text h2{
    font-size: 100px;
      line-height: 99px;
      text-align: center;

  }

  .btn{
    margin: 20px;
  }



  section.services{
  height: 1600px;
  }

  section.services .container{
    flex-direction: column;
    align-items: center;
  }



  /* work gallery*/

  .work{
  background: url(./images/services/bg.jpg);
  padding: 50px 0px;
  }

  section.work{
  height: 800px;
  }

  .my-slider .items{
    width: 300px;
    height: 250px;
    margin: 0 60px;
    border-radius: 20px;
    outline: none;
    border: none;
  }

 .slick-track{
   padding: 200px 0;
    display: flex;
    align-items: center;
  } 

  .my-slider .items img{
    max-width: 100%;
    border-radius: 10px;
    transition: 0.5s;
    outline: none;
    border: none;
    box-shadow: 0px 0px 5px 1px rgb(157, 219, 255);
  }
  
  .images-roller.slick-slider {
    top: -211px;
    left: 29px;
}

.images-roller {
    transform: scale(0.85);
	width: 753px;
}

  /* about me */

  section.about-me{
    height: 1000px;
  }

  section.about-me .container{
    flex-direction: column;
    width: 800px;
    padding-bottom: 30px;
  }

  /* contact us */

  section.contact-us .container {
    padding: 0px 50px;
  }

  section.contact-us .container .col-6:first-child{
    text-align: center;
    width: 370px;

  }

}










/* SMALL TABLET */
/* BURGER MENU STARTS HERE */

@media (max-width: 1000px){

  ul.navbar{
    display: none;
  }




  .magic-laptop img {
    width: 700px;
    margin-top: 30px;
  }

  .images-roller.slick-slider {
    top: -236px;
    left: -23px;
}

.images-roller {
    transform: scale(0.75);
    width: 753px;
}


  section.contact-us .container .col-6:first-child{
    text-align: center;
    width: 330px;
    margin-right: 20px;

  }


}








/* for mobile */

@media (max-width: 640px){

  section.hero {
    height: 946px;
}

.container .hero-text {
    margin-top: 34px;
}

section.hero i {
    margin-top: 0px;
}

  section.hero .container {
    flex-direction: column-reverse;
}

  .container .hero-text h2{
  font-size: 61px;
  line-height: 75px;
  text-align: center;
 
}
.magic-laptop img {
  width: 446px;
  margin-top: 30px;
}

.images-roller {
  width: 591px;
  transform: scale(0.595);
}

.images-roller.slick-slider {
  top: -107px;
  left: -70px;
}



section.services .container div {
  width: 360px;
  height: 270px;

}







section.my-counter {
    height: 800px;
    background-size: cover;
    background-repeat: no-repeat;
}

section.my-counter .container{
  flex-direction: column;
}




/* slider */



section.work {
  height: 600px;
}

  .my-slider .items{
    width: 200px;
    height: 150px;
    margin: 0 60px;
    border-radius: 20px;
    outline: none;
    border: none;
  }

 .slick-track{
   padding: 50px 0;
   height: 500px;
    display: flex;
    align-items: center;
  } 

  .my-slider .items img{
    max-width:100%;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 10px;
    transition: 0.5s;
    outline: none;
    border: none;
    box-shadow: 0px 0px 5px 1px rgb(157, 219, 255);
  }
  
  .my-slider .slick-center img{
    transform: scale(1.1);
  }












  section.about-me{
    height: 1200px;
  }

  section.about-me .container{
  width: 500px;
}

section.about-me .col-6:last-child {
  width: 400px;
  text-align: center;
}






/* contact us */

section.contact-us{
  height: auto;
}

section.contact-us .container{
  flex-direction: column;
}

section.contact-us .container .col-6:first-child{
  width: 100%;
}

section.contact-us .container .col-6:last-child{
  width: 100%;
}



}


@media (max-width: 400px){

  .magic-laptop {
    position: relative;
    transform: scale(0.7);
}


section.services .container div {
  width: 322px;
  height: 270px;
}

.section-title h2 {
  font-family: 'Roboto';
  font-weight: 300;
  font-size: 30px;
}



.style-intro {
  font-size: 48px;
}

.social-media i {
  font-size: 30px;
}

section.about-me .col-6 p {
  font-size: 25px;
  color: gray;
  width: 300px;
  margin: 21px auto;
}

.contact-us .container .col-6 h2 {
  font-family: Pacifico;
  color: white;
  font-size: 40px;
}
}