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

html {
  scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;;
    /* background-color: #6253e1; */
}



::-webkit-scrollbar {
  width: 3px;
}

body::-webkit-scrollbar-track {
  background: transparent;
  max-height: 20px;
  height: 20px;

}

body::-webkit-scrollbar-thumb {
  background: rgb(1, 15, 36);
  border-radius: 20px;

}





.navbar {
    transition: all 1s ease; /* Geçiş efektini tanımlayın */


}
.offcanvas {
  background-color: rgb(1, 15, 36, .9);
  width: 400px;
}


.nav-link1 {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-size: 25px;
  margin-bottom: 10px;
  margin-top: 10px;
  position: relative;
}
.nav-link1:hover , .nav-link1:focus {

  color: #9f4ef7;

}

.br-rg {
  display: inline-block;
  border: 2px solid  #9f4ef7;
  height: 30px;
  text-decoration: none;
  position: relative;

}

.nav-link1:hover + .br-rg{
  transform: translateX(200px);
}


.nav-link {
    font-weight: 800;
    font-size: 16px;
    color: white;
    position: relative;
    display: inline-block;
    padding-bottom: 2px; /* Çizginin alt boşluğu */
    overflow: hidden;
    margin-right: 10px;
    transition: all 1s ease; /* Geçiş efektini tanımlayın */

  }

  .nav-link1:hover + .br-rg {
    margin-left: 20px; /* İstediğiniz kayma miktarı */
    transition: margin-left 0.3s ease; /* Hareketin süresi ve akışı */
  }

  .nav-link:hover {
    color: #fff;
  }
  
  .nav-link::before,
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0; /* Çizginin başlangıç konumu sol köşeden başlasın */
    width: 0;
    height: 2px; /* Çizginin yüksekliği */
    background: linear-gradient(to right, #ff0099, #493240); /* Çizgi rengi */
    transition: all 1.5s ease; /* Animasyon süresi ve geçiş efekti */
  }
  
  .nav-link::before {
    transform-origin: right; /* Dönüşümün orijinini çizginin sağ köşesine ayarlar */
  }
  
  .nav-link::after {
    transform-origin: left; /* Dönüşümün orijinini çizginin sol köşesine ayarlar */
  }
  
  .nav-link:hover::before {
    width: 100%; /* Sola doğru genişleyen çizgi */
    left: 0; /* Sol köşeden başla */
  }
  
  .nav-link:hover::after {
    width: 100%; /* Sağa doğru genişleyen çizgi */
    left: auto; /* Sağ köşeden başla */
    right: 0; /* Sağ köşeye kadar uzan */
  }

  



.background {
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0, .2);
}
.background1 {
  width: 100%;
  height: 100%;
  background: rgb(1, 15, 36, .7)
}
.background2 {
  width: 100%;
  height: 100%;
  background: rgb(1, 15, 36, .7)
}

.text-big {
    font-size: 80px;
    letter-spacing: 4px;
}

.title {
  background: -webkit-linear-gradient( #6253e1, #852d91);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}
.sub-title {
  font-size: 50px;
  font-weight: 400;
}
.sub-title1 {
  font-size: 20px;
  font-weight: 400;
}
.ani-icon {
  background: -webkit-linear-gradient( #6253e1, #852d91);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;  
  animation: headShake 2s;
}
.text {
  font-size: large;
  animation: fadeIn 2s;
}

.ct-about {
    /* background: url(images/blurry-neon-light-background.jpg); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;


    background-color: #010f24;
}

.num-ct {
  background-image: url(images/bgist4.jpg);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  z-index: -1;
  height: 600px;
}
.num-title {
  background: -webkit-linear-gradient( #e51595, #f5bdde );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; 
}
.num, .num1, .num2 {
  font-size: 80px;
  font-weight: 900;
}


.contact-form input, .contact-form textarea {
  width: 100%;
  background-color: transparent;
  border-color: gray !important;
}
.send::placeholder {
  color: white;
}

footer {
  position: relative;
  width: 100%;
  background: #010f24;
  min-height: 100px;
  padding: 20px 50px;
  display: flex;

  flex-direction: column;
  margin-top: 100px;
}

footer .social-icon, footer .menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
}
footer .social-icon li, footer .menu li{
  list-style: none;
}
footer .social-icon li a{
  font-size: 2em;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
}
footer .social-icon li a:hover{
 transform: translateY(-10px);
}
footer .menu li a {
  font-size: 1em;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  text-decoration: none;
  opacity: 0.75;
}
footer .menu li a:hover {
  opacity: 1;
}
footer p {
  color: #fff;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 0.8em;
}
footer .wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background-image:  url(images/wave8.png) ;
  background-size: 1000px 100px;
}
footer .wave#wave1 {
  z-index: 1000;
  opacity: 1;
  bottom: 0;
  animation: animateWawe 4s linear infinite;
}
footer .wave#wave2 {
  z-index: 999;
  opacity: 0.5;
  bottom: 10px;
  animation: animateWave2 4s linear infinite;
}
footer .wave#wave3 {
  z-index: 1000;
  opacity: 0.2;
  bottom: 15px;
  animation: animateWawe 3s linear infinite;
}
footer .wave#wave4 {
  z-index: 999;
  opacity: 0.7;
  bottom: 20px;
  animation: animateWave2 3s linear infinite;
}

/* .logo-container img {
  width: 180px;

} */


.logo-container .col-6 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px !important;
  animation: fadeIn 1s; 

}

@keyframes animateWawe {
  0% {
    background-position-x: 1000px;
  }
  100% {
    background-position-x: 0px;
  }
}
@keyframes animateWave2 {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: 1000px;
  }
}





.num1::before {
  content: "+";
}

.num2::before {
  content: "%";
}

.bn632-hover {
  width: 160px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  margin: 0px;
  height: 45px;
  text-align: center;
  border: none;
  background-size: 300% 100%;
  border-radius: 50px;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.bn632-hover:hover {
  background-position: 100% 0;
  moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.bn632-hover:focus {
  outline: none;
}

.bn632-hover.bn24 {
  background-image: linear-gradient(
      to right,
      #6253e1,
      #852d91,
      #a3a1ff,
      #f24645
    );
  box-shadow: 0 4px 15px 0 rgba(126, 52, 161, 0.75);
}

.parallax-ct {
  background-image: url(images/about.jpg); 
  background-position: center; 
  background-size: cover; 
  height: 500px; 
  background-attachment: fixed; 
  z-index: -1;
}
.text-title {
  background: -webkit-linear-gradient( #6253e1, #852d91);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-ct {
  background-position: center; 
  background-size: cover; 
  height: 260px; 
  background-attachment: fixed; 
  z-index: -1;
}
.solutions-ct {
  background-position: center; 
  background-size: cover; 
  height: 260px; 
  background-attachment: fixed; 
  z-index: -1;
}

.ref-ct {
  background-position: center; 
  background-size: cover; 
  height: 260px; 
  background-attachment: fixed; 
  z-index: -1;
}
.contact-ct {
  background-position: center; 
  background-size: cover; 
  height: 260px; 
  background-attachment: fixed; 
  z-index: -1;
}




@media (max-width:970px) {

    .text-big {
        font-size: 60px;
        letter-spacing: 4px;
    }
    .text-title {
        font-size: 50px !important;
    }
    .offcanvas {
      background-color: rgb(1, 15, 36, .9);
      width: 320px !important;
    }
    .parallax-ct {
      background-image: url(images/about.jpg); 
      background-position: center; 
      background-size: cover; 
      height: 500px; 
      background-attachment:local; 
      z-index: -1;
    }
    .num, .num1, .num2 {
      font-size: 50px;
      font-weight: 900;
    }
    .num-ct {
      background-attachment: local !important;
    }

    .about-ct {
      background-image: url(images/bg1.png); 
      background-position: center; 
      background-size: cover; 
      height: 260px; 
      background-attachment: local;
    }
    .solutions-ct {
      background-position: center; 
      background-size: cover; 
      height: 260px; 
      background-attachment: local; 

    }
    
    .ref-ct {
      background-image: url(images/bg.png); 
      background-position: center; 
      background-size: cover; 
      height: 260px; 
      background-attachment: local; 

    }
    .contact-ct {
      background-position: center; 
      background-size: cover; 
      height: 260px; 
      background-attachment: local; 

    }
}













