@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/*
h2 {
  background: linear-gradient(to right, #b927fc 0%, #2c64fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
*/

body {
  padding: 0;
  margin: 0;
  font-family: sans-serif;
  background: #101020;
  color: #f5f5f5;
  font-style: italic;
  font-family: sans-serif;
}

nav {
  padding: 5px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  z-index: 1;
  position: sticky;
  top: 0;
}
nav .logo {
  display: flex;
  align-items: center;
}
nav .logo img {
  height: 105px;
  width: auto;
  margin-right: 10px;
}
nav .logo h1 {
  font-size: 1.1rem;
  background: linear-gradient(to right, #b927fc 0%, #2c64fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav ul {
  list-style: none;
  display: flex;
}
nav ul li {
  margin-left: 1.5rem;
}
nav ul li a {
  text-decoration: none;
  background: linear-gradient(to right, #b927fc 0%, #2c64fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 95%;
  font-weight: 400;
  padding: 4px 8px;
  border-radius: 5px;
}

nav ul li a:hover {
  background-color: #f5f5f5;
}

.hamburger {
  display: none;
  cursor: pointer;
  
}

.hamburger .line {
  width: 25px;
  height: 1px;
  background-color: #f1f1f1;
  display: block;
  margin: 7px auto;
  transition: all 0.3s ease-in-out;
}
.hamburger-active {
  transition: all 0.3s ease-in-out;
  transition-delay: 0.6s;
  transform: rotate(45deg);
}

.hamburger-active .line:nth-child(2) {
  width: 0px;
}

.hamburger-active .line:nth-child(1),
.hamburger-active .line:nth-child(3) {
  transition-delay: 0.3s;
}

.hamburger-active .line:nth-child(1) {
  transform: translateY(12px);
}

.hamburger-active .line:nth-child(3) {
  transform: translateY(-5px) rotate(90deg);
}

.menubar {
  position: absolute;
  top: 0;
  left: -60%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 60%;
  height: 100vh;
  padding: 20% 0;
  background: #101020;
  transition: all 0.5s ease-in;
  z-index: 2;
  position: fixed;
  top: 0;
}
.active {
  left: 0;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.menubar ul {
  padding: 0;
  list-style: none;
}
.menubar ul li {
  margin-bottom: 12px;
}

.menubar ul li a {
  text-decoration: none;
  background: linear-gradient(to right, #b927fc 0%, #2c64fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 95%;
  font-weight: 400;
  padding: 5px 10px;
  border-radius: 5px;
}

.menubar ul li a:hover {
  background-color: #f5f5f5;
}

.menu-img {
  height: 85px;
  width: auto;
  margin-right: 10px;

}

/* --- END OF NAVBAR AND MOBİLE NAVBAR --- */


/* --- start of home page --- */
.title-page {
  text-align: center;
  display: flex;
  justify-content: space-evenly;
  margin-top: 2rem;
  background: linear-gradient(to right, #b927fc 0%, #2c64fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.title-left {
  align-content: center;
}
.title-left p {
  padding-top: 1rem;
  font-size: 1.5rem;
}
.title-page h1 {
  background: linear-gradient(to right, #b927fc 0%, #2c64fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 4rem;
}

.title-p {
  text-align: left;
  margin: 1rem 20rem 3rem 20rem;
  font-size: 1.2rem;
  background: linear-gradient(to right, #b927fc 0%, #2c64fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title-right img {
  height: 355px;
  width: 300px;
  border-radius: 2rem;
  background-repeat: no-repeat;
}

/* --- start of about page --- */

.about-title h2 {
  margin: 7.5rem 5rem 1rem 5rem;
  padding-bottom: 1rem;
  text-align: center;
  background: linear-gradient(to right, #b927fc 0%, #2c64fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-title p {
  margin: 5rem 5rem 1rem 5rem;
  text-align: center;
  background: linear-gradient(to right, #b927fc 0%, #2c64fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  
}

.about-page {
  text-align: center;
  margin-top: 1rem;
  display: flex;
  justify-content: space-evenly;
}
.about-page h2 {
  background: linear-gradient(to right, #b927fc 0%, #2c64fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  
  
}


.about-page p {
  margin: auto 5rem 2rem 5rem;
  background: linear-gradient(to right, #b927fc 0%, #2c64fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.4rem;
}


/* --- end of about page --- */

/* --- start of services page --- */

.services-job {
  margin: 3rem 5rem 3rem 5rem ;
  text-align: center;
  background: linear-gradient(to right, #b927fc 0%, #2c64fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-page {
  margin-top: 4rem;
  
}

.services-page h2 {
  background: linear-gradient(to right, #b927fc 0%, #2c64fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;

}

.services-page p{
  margin: auto 5rem 2rem 5rem;
  
}


/* --- marquee --- */



.marquee-text {
  overflow: clip;
}

.marquee-text-track {
  display: flex;
  padding-left: 4.8rem;
  gap: 4.8rem;
  width: max-content;
  color: white;
  animation: marquee-move-text var(--speed, 15s) linear infinite var(
      --direction,
      forwards
    );
}

.marquee-text p {
  
  background: linear-gradient(to right, #b927fc 0%, #2c64fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  
}

@keyframes marquee-move-text {
  to {
    transform: translateX(-50%);
  }
}


/* --- end of services page --- */

/* --- grid --- */

.grid-3{
  display: flex;
  justify-content: space-evenly;
  margin-top: 2rem;
}

.grid {
  box-sizing: border-box;
  border: 1px solid #1f1f1f;
  width: 250px;
  height: 250px;
  background-color: #1f1f1f;
}


.grid:nth-child(1) {
  background-image: url(jobdone2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.grid:nth-child(2) {
  background-image: url(jobdone3.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.grid:nth-child(3) {
  background-image: url(jobdone1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
/* --- grid --- */

/* --- start of contact us --- */

.contact-us h2 {
  text-align: center;
  margin-top: 5rem;
}

.contact-us p {
  text-align: center;
  margin: 1rem 5rem  4rem 5rem;
  background: linear-gradient(to right, #b927fc 0%, #2c64fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.4rem;

}
.contact-us a {
  text-decoration: none;
  background: linear-gradient(to right, #b927fc 0%, #2c64fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-us-email {
  text-align: center;
  background: linear-gradient(to right, #b927fc 0%, #2c64fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact-us-ins {
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: linear-gradient(to right, #b927fc 0%, #2c64fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- end of contact us --- */

/* --- footer --- */

footer {
  height: 200px;
  background-color: #212529;
  display: flex;
  justify-content: space-evenly;
  background: linear-gradient(to right, #b927fc 0%, #2c64fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer- img {
  width: 100px;
  height: 100px;
}
    



/* --- footer --- */


.copy {
  background-color: #101020;
  height: 30px;
  color: #f5f5f5;
  text-align: center;
}




 /*Style Snowballs */
.snow-ball-container .snow-ball {
  position: absolute;
  border-radius: 50%;
  background: darkgoldenrod;
}

.snow-ball-container .snow-ball:nth-child(even) {
  width: 16px;
  height: 16px;
  animation: flake-motion 5s linear infinite;
}


/* Position the Snowballs above the screen */

.snow-ball-container .snow-ball:nth-child(1) {
  top: -50%;
  left: 5%;
  width: 20px;
  height: 20px;
  animation: snowball-animation 12s linear 2s infinite;
}

.snow-ball-container .snow-ball:nth-child(2) {
  top: -20%;
  left: 10%;
}

.snow-ball-container .snow-ball:nth-child(3) {
  top: -50%;
  left: 15%;
  animation: snowball-animation 12s linear infinite;
}

.snow-ball-container .snow-ball:nth-child(4) {
  top: -10%;
  left: 20%;
}

.snow-ball-container .snow-ball:nth-child(5) {
  top: -20%;
  left: 25%;
  width: 20px;
  height: 20px;
  animation: snowball-animation 12s linear 2s infinite;
}

.snow-ball-container .snow-ball:nth-child(6) {
  top: -40%;
  left: 30%;
}

.snow-ball-container .snow-ball:nth-child(7) {
  top: -30%;
  left: 35%;
  width: 5px;
  height: 5px;
  animation: snowball-animation 12s linear infinite;
}

.snow-ball-container .snow-ball:nth-child(8) {
  top: -20%;
  left: 40%;
}

.snow-ball-container .snow-ball:nth-child(9) {
  top: -50%;
  left: 45%;
  width: 5px;
  height: 5px;
  animation: snowball-animation 12s linear 2s infinite;
}

.snow-ball-container .snow-ball:nth-child(10) {
  top: -5%;
  left: 50%;
}

.snow-ball-container .snow-ball:nth-child(11) {
  top: -20%;
  left: 60%;
  animation: snowball-animation 12s linear infinite;
}

.snow-ball-container .snow-ball:nth-child(12) {
  top: -10%;
  left: 70%;
}

.snow-ball-container .snow-ball:nth-child(13) {
  top: -50%;
  left: 80%;
  width: 5px;
  height: 5px;
  animation: snowball-animation 12s linear 2s infinite;
}

.snow-ball-container .snow-ball:nth-child(14) {
  top: -20%;
  left: 90%;
}

.snow-ball-container .snow-ball:nth-child(15) {
  top: -50%;
  left: 95%;
  width: 30px;
  height: 30px;
  animation: snowball-animation 12s linear infinite;
}

/* Define animations of Snowball and Snowflakes */

@keyframes snowball-animation {
  0% {
      transform: translate(0);
      opacity: 1;
  }
  20% {
      transform: translate(4px, 100px);
      opacity: 0.8;
  }
  40% {
      transform: translate(-7px, 200px);
      opacity: 0.7;
  }
  60% {
      transform: translate(10px, 400px);
      opacity: 0.5;
  }
  80% {
      transform: translate(-14px, 700px);
      opacity: 0.2;
  }
  100% {
      transform: translate(16px, 900px);
      opacity: 0;
  }
}

@keyframes flake-motion {
  0% {
      transform: translate(-2px, 0);
      opacity: 1;
  }
  20% {
      transform: translate(-9px, 200px);
      opacity: 0.9;
  }
  40% {
      transform: translate(14px, 300px);
      opacity: 0.7;
  }
  60% {
      transform: translate(-22px, 400px);
      opacity: 0.6;
  }
  80% {
      transform: translate(30px, 600px);
      opacity: 0.5;
  }
  90% {
      transform: translate(-40px, 800px);
      opacity: 0.3;
  }
  100% {
      transform: translate(52px, 1000px);
      opacity: 0;
  }
}

*/





.star{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  /* https://lh3.googleusercontent.com/ka_5IYJDRkXZnbptxq64LPuggGL5FM8gnpJlsuSiOQh4b39kMkiRbVfX8iK8bjMg5SLkdfoix09P60wyFjN2=w681-h614 */
  background: url("https://i.postimg.cc/c1Q3njM0/bg2.jpg");
/*   background-color:black; */
  background-size: cover;
  animation: animateBg 50s linear infinite;
}

@keyframes animateBg{
  0%,100%{
      transform: scale(1);
  }
  50%{
      transform: scale(1.2);
  }
}

.spanstar{
  position: absolute;
  top:50%;
  left:50%;
  width: 5px;
  height: 5px;
  background: red;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.1),0 0 0 8px rgba(255,255,255,0.1),0 0 20px rgba(255,255,255,0.1);
  animation: animate 3s linear infinite;
}
.spanstar::before{
  content:'';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, gold,transparent);
}
@keyframes animate
{
  0%
  {
      transform: rotate(315deg) translateX(0);
      opacity: 1;
  }
  70%
  {
      opacity: 1;
  }
  100%
  {
      transform: rotate(315deg) translateX(-1000px);
      opacity: 0;
  }
}
.spanstar:nth-child(1){
  top: 0;
  right: 0;
  left: initial;
  animation-delay: 0s;
  animation-duration: 1s;
}
.spanstar:nth-child(2){
  top: 0;
  right: 80px;
  left: initial;
  animation-delay: 0.2s;
  animation-duration: 3s;
}
.spanstar:nth-child(3){
  top: 80;
  right: 0px;
  left: initial;
  animation-delay: 0.4s;
  animation-duration: 2s;
}
.spanstar:nth-child(4){
  top: 0;
  right: 180px;
  left: initial;
  animation-delay: 0.6s;
  animation-duration: 1.5s;
}
.spanstar:nth-child(5){
  top: 0;
  right: 400px;
  left: initial;
  animation-delay: 0.8s;
  animation-duration: 2.5s;
}
.spanstar:nth-child(6){
  top: 0;
  right: 600px;
  left: initial;
  animation-delay: 1s;
  animation-duration: 3s;
}
.spanstar:nth-child(7){
  top: 300px;
  right: 0px;
  left: initial;
  animation-delay: 1.2s;
  animation-duration: 1.75s;
}
.spanstar:nth-child(8){
  top: 0px;
  right: 700px;
  left: initial;
  animation-delay: 1.4s;
  animation-duration: 1.25s;
}
.spanstar:nth-child(9){
  top: 0px;
  right: 1000px;
  left: initial;
  animation-delay: 0.75s;
  animation-duration: 2.25s;
}
.spanstar:nth-child(9){
  top: 0px;
  right: 450px;
  left: initial;
  animation-delay: 2.75s;
  animation-duration: 2.75s;
}
  




  


/* ---  --- 

h1 {
  position: relative;
  font-size: 14vw;
  color: #252839;
  -webkit-text-stroke: 0.3s #383d52;
  text-transform: uppercase;
}
h1::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  color: #01fe87;
  -webkit-text-stroke: 0vw #383d52;
  border-right: 2px solid #01fe87;
  overflow: hidden;
  animation: animate 6s linear infinite;
}
@keyframes animate {
  0%,10%,100%
  {
      width: 0;
  }
  70%,90%
  {
    width:100%;
  }
}
*/




  