@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');/* this is home style */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');


html {
    scroll-behavior: smooth;
  }
  
  .scroll-animation {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.scroll-animation.visible {
    opacity: 1;
    transform: translateY(0px);
}
  /* For modern browsers */
  ::-webkit-scrollbar {
    width: 10px; /* Width of the scrollbar */
  }
  
  ::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background: linear-gradient(135deg,#6a71bdb8,#8286b2b0); /* Color of the scrollbar thumb */
  }
  
  ::-webkit-scrollbar-thumb:hover {
    border-radius: 20px;
    background-color: #989ab0bb; /* Change color on hover */
  }
  
  ::-webkit-scrollbar-track {
    background: #040836; /* Background color of scrollbar track */
  }



  /* this is for go to home hero section isung a btn */
  .gohome-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    border: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 0px 4px rgba(180, 160, 255, 0.253);
    cursor: pointer;
    transition-duration: 0.3s;
    overflow: hidden;
    position: fixed;
  bottom: 20px;
right: 20px;
  float: right;
  }
  
  .gohome-button .svgIcon {
    width: 12px;
    transition-duration: 0.3s;
  }
  
  .gohome-button .svgIcon path {
    fill: #5e48f4;
  }
  
  .gohome-button:hover {
    width: 140px;
    border-radius: 50px;
    transition-duration: 0.3s;
    background-color: #5e48f4;
    align-items: center;
  }
  
  .gohome-button:hover .svgIcon {
    /* width: 20px; */
    transition-duration: 0.3s;
    transform: translateY(-200%);
  }
  
  .gohome-button::before {
    position: absolute;
    bottom: -20px;
    content: "Back to Top";
    color: white;
    /* transition-duration: .3s; */
    font-size: 0px;
  }
  
  .gohome-button:hover::before {
    font-size: 13px;
    opacity: 1;
    bottom: unset;
    /* transform: translateY(-30px); */
    transition-duration: 0.3s;
  }
  


    /* Loader Container */
   /* Loader Container */
   .loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.dot-spinner {
  --uib-size: 3.8rem;
  --uib-speed: .9s;
  --uib-color: #183153;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: var(--uib-size);
  width: var(--uib-size);
}

.dot-spinner__dot {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
}

.dot-spinner__dot::before {
  content: '';
  height: 20%;
  width: 20%;
  border-radius: 50%;
  background-color: var(--uib-color);
  transform: scale(0);
  opacity: 0.5;
  animation: pulse0112 calc(var(--uib-speed) * 1.111) ease-in-out infinite;
  box-shadow: 0 0 20px rgba(18, 31, 53, 0.3);
}

.dot-spinner__dot:nth-child(2) {
  transform: rotate(45deg);
}

.dot-spinner__dot:nth-child(2)::before {
  animation-delay: calc(var(--uib-speed) * -0.875);
}

.dot-spinner__dot:nth-child(3) {
  transform: rotate(90deg);
}

.dot-spinner__dot:nth-child(3)::before {
  animation-delay: calc(var(--uib-speed) * -0.75);
}

.dot-spinner__dot:nth-child(4) {
  transform: rotate(135deg);
}

.dot-spinner__dot:nth-child(4)::before {
  animation-delay: calc(var(--uib-speed) * -0.625);
}

.dot-spinner__dot:nth-child(5) {
  transform: rotate(180deg);
}

.dot-spinner__dot:nth-child(5)::before {
  animation-delay: calc(var(--uib-speed) * -0.5);
}

.dot-spinner__dot:nth-child(6) {
  transform: rotate(225deg);
}

.dot-spinner__dot:nth-child(6)::before {
  animation-delay: calc(var(--uib-speed) * -0.375);
}

.dot-spinner__dot:nth-child(7) {
  transform: rotate(270deg);
}

.dot-spinner__dot:nth-child(7)::before {
  animation-delay: calc(var(--uib-speed) * -0.25);
}

.dot-spinner__dot:nth-child(8) {
  transform: rotate(315deg);
}

.dot-spinner__dot:nth-child(8)::before {
  animation-delay: calc(var(--uib-speed) * -0.125);
}

@keyframes pulse0112 {
  0%,
  100% {
    transform: scale(0);
    opacity: 0.5;
  }

  50% {
    transform: scale(1);
    opacity: 1;
  }
}

    /* this is for snipper loader */
 
    /* .loader {
      position: fixed;
      z-index: 1000;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #010315;
      transition: opacity 0.75s, visibility 0.75s;
    }
    
    .loader--hidden {
      opacity: 0;
      visibility: hidden;
    }
    
    .loader::after {
      content: "";
      width: 110px;
      height: 110px;
      border: 15px solid #dddddd;
      border-top-color: #5e48f4;
      border-radius: 50%;
      animation: loading 0.75s ease infinite;
    }
    
    @keyframes loading {
      from {
        transform: rotate(0turn);
      }
      to {
        transform: rotate(1turn);
      }
    }
  */

    .login-btn{
      background: #5E5DF0;
  border-radius: 999px;
  box-shadow: #5E5DF0 0 10px 20px -10px;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  font-family: Inter,Helvetica,"Apple Color Emoji","Segoe UI Emoji",NotoColorEmoji,"Noto Color Emoji","Segoe UI Symbol","Android Emoji",EmojiSymbols,-apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans",sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  opacity: 1;
  outline: 0 solid transparent;
  padding: 8px 18px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: fit-content;
  word-break: break-word;
  border: 0;
    }

  .start-learn-btn{
    background: #5E5DF0;
  border-radius: 9px;
  box-shadow: #5E5DF0 0 10px 20px -10px;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  font-family: Inter,Helvetica,"Apple Color Emoji","Segoe UI Emoji",NotoColorEmoji,"Noto Color Emoji","Segoe UI Symbol","Android Emoji",EmojiSymbols,-apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans",sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  opacity: 1;
  outline: 0 solid transparent;
  padding: 18px 28px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: fit-content;
  word-break: break-word;
  border: 0;
  }

  

  /* this is for myads style in simple blog  */
  .subscribe-btn {
    cursor: pointer;
    position: relative;
    padding: 5px 15px;
    font-size: 15px;
    color: #5E5DF0;
    border: 2px solid #5E5DF0;
    border-radius: 010px;
    background-color: transparent;
    font-family: 'poppins';
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    overflow: hidden;
  }

  
  #ads-btn-1 {
    padding: 10px 30px;
    border-radius: 5px;
    background: #5E5DF0;
    color: white;
    border: none;
    font-family: inherit;
    text-align: center;
    cursor: pointer;
    transition: 0.4s;
   }
   
   #ads-btn-1:hover {
    box-shadow: 7px 5px 56px -14px #5E5DF0;
   }
   
   #ads-btn-1:active {
    transform: scale(0.97);
    box-shadow: 7px 5px 56px -10px #5E5DF0;
   }

   #ads-btn-2 {
    padding: 10px 30px;
    border-radius: 5px;
    border:0px solid #dcdcff;
    background-color: rgb(184, 187, 255);
    color: rgb(14, 5, 63);
    font-family: inherit;
    margin-left: 10px;
    text-align: center;
    cursor: pointer;
    transition: 0.4s;
   }
   
   #ads-btn-2:hover {
    box-shadow: 7px 5px 56px -14px #5E5DF0;
   }
   
   #ads-btn-2:active {
    transform: scale(0.97);
    box-shadow: 7px 5px 56px -10px #5E5DF0;
   }



   /* this btn for blog-posts
    */



/* CSS */
.button-47 {
  align-items: center;
  background: #FFFFFF;
  border: 0 solid #E2E8F0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  color: #1A202C;
  display: inline-flex;
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  height: 56px;
  justify-content: center;
  line-height: 24px;
  overflow-wrap: break-word;
  padding: 24px;
  text-decoration: none;
  width: auto;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}


/* this is for search btn  */

.search-container {
  position: relative;
  display: block;
  width: 50%;
  margin: 30px auto;
}

.search-box {
  width: 100%;
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  background-color: #b1b1ec87;
  color: rgb(2, 3, 39);
  font-size: 16px;
  outline: none;
  font-family: 'poppins';
}

.search-box::placeholder {
  color: #5c5e91;
  font-style: 'poppins';
}

.close-btn {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #5e49b8;
  font-size: 26px;
  cursor: pointer;
}

.close-btn:hover {
  color: white;
}


/* this btn for contact form */


.animated-button {
  position: relative;
  display: inline-block;
  padding: 12px 24px;
  border: none;
  font-size: 16px;
  background-color:rgba(255, 255, 255, 0);
  border-radius: 100px;
  border: 2px solid rgba(14, 14, 68, 0.389);
  font-weight: 600;
  color: rgba(14, 14, 68, 0.389);
  box-shadow: 0 0 0 2px #ffffff20;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.animated-button span:last-child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #5e48f4;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.animated-button span:first-child {
  position: relative;
  z-index: 1;
}

.animated-button:hover {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  color: #ffffff;
}

.animated-button:active {
  scale: 0.95;
}

.animated-button:hover span:last-child {
  width: 150px;
  height: 150px;
  opacity: 1;
}






/* this is for subscirbe page css started */
.subscribe-form {
  display: flex;
  flex-direction: column;
  background:white;
  background: -webkit-linear-gradient(to right, white, white);
  background: linear-gradient(to right, white, white);
  box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
  padding: 100px;
  border-radius: 50px;
  width: 70%;
  max-width: 97%;
  margin: 100px auto;
}

.title {
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: rgb(14, 4, 49);
}

.description {
  line-height: 1.5rem;
  font-size: 1rem;
  margin-top: 1rem;
  color: rgb(60, 51, 115);
}

.subscribe-form div {
  display: flex;
  width: 50%;
  margin: 1rem auto;
  column-gap: 0.5rem;
}

.subscribe-form div input {
  outline: none;
  line-height: 1.5rem;
  font-size: 0.875rem;
  color: rgb(3, 3, 53);
  padding: 0.7rem 0.875rem;
  background-color: rgba(255, 255, 255, 0.116);
  border: 2px solid rgba(35, 12, 82, 0.745);
  border-radius:50px;
  flex: 1 1 auto;
}

.subscribe-form div input::placeholder {
  color: rgb(23, 9, 82);
}

.subscribe-form div input:focus {
  border: 1px solid rgb(99 102 241);
}






.bookmarkBtn {
  width: 120px;
  height: 50px;
  border-radius: 50px;
  border: 1px solid rgba(21, 16, 87, 0.601);
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition-duration: 0.3s;
  overflow: hidden;
}

.IconContainer {
  width: 50px;
  height: 40px;
  background: linear-gradient(to bottom, rgb(214, 207, 214), rgb(209, 210, 221));
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
  transition-duration: 0.3s;
}

.icon {
  border-radius: 1px;
}

.text {
  height: 100%;
  width: 60px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #110856;
  z-index: 1;
  font-weight: 700;
  transition-duration: 0.3s;
  font-size: 1.04em;
}

.bookmarkBtn:hover .IconContainer {
  width: 110px;
  transition-duration: 0.3s;
}

.bookmarkBtn:hover .text {
  transform: translate(10px);
  width: 0;
  font-size: 0;
  transition-duration: 0.3s;
}

.bookmarkBtn:active {
  transform: scale(0.95);
  transition-duration: 0.3s;
}



/* this is for follow icons on subscribe page started */


/* btn 1 for insta */
.insta {
  position: relative;
  width: 130px;
  height: 35px;
  border-radius: 30px;
  background-color: white;
  border: 1px #FFB700 solid;
  overflow: hidden;
}

 .insta .text1 {
  font-size: 15px;
  font-weight: 600;
  margin-left: 22%;
}

.insta .text2 {
  position: absolute;
  top: 25%;
  left: -50px;
  font-weight: 700;
  font-size: 14px;
  color: white;
}

.insta .icon {
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.5s;
}

.insta .icon::before {
  position: absolute;
  left: -100px;
  top: 0;
  z-index: -1;
  content: '';
  width: 130px;
  height: 33px;
  border-radius: 30px;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  ;
}

.insta:hover .icon {
  transform: translateX(96px);
  transition: transform 0.5s;
}

.insta:hover .text2 {
  transform: translateX(100px);
  transition: transform 0.6s;
}

.insta:active {
  transform: scale(1.03);
}


/* this is for twitter icon started */

.twitter {
  position: relative;
  width: 130px;
  height: 35px;
  border-radius: 30px;
  background-color: white;
  border: 1px #00acee solid;
  overflow: hidden;
}

.twitter .text1 {
  font-size: 17px;
  font-weight: 700;
  margin-left: 22%;
}

.twitter .text2 {
  position: absolute;
  top: 25%;
  left: -50px;
  font-weight: 700;
  font-size: 14px;
  color: white;
}

.twitter .icon {
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.5s;
}

.twitter .icon::before {
  position: absolute;
  left: -100px;
  top: 0;
  z-index: -1;
  content: '';
  width: 130px;
  height: 33px;
  border-radius: 30px;
  background-color: #00acee;
}

.twitter:hover .icon {
  transform: translateX(96px);
  transition: transform 0.5s;
}

.twitter:hover .text2 {
  transform: translateX(100px);
  transition: transform 0.6s;
}

.twitter:active {
  transform: scale(1.03);
}


/* this is for tellegram icon started */

.tele{
  position: relative;
  width: 130px;
  height: 35px;
  border-radius: 30px;
  background-color: white;
  border: 1px #08c solid;
  overflow: hidden;
}

.tele .text1 {
  font-size: 15px;
  font-weight: 600;
  margin-left: 22%;
}
 
.tele .text2 {
  position: absolute;
  top: 25%;
  left: -50px;
  font-weight: 700;
  font-size: 14px;
  color: white;
}

.tele .icon {
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.5s;
}

.tele .icon::before {
  position: absolute;
  left: -100px;
  top: 0;
  z-index: -1;
  content: '';
  width: 130px;
  height: 33px;
  border-radius: 30px;
  background-color: #08c;
}

.tele:hover .icon {
  transform: translateX(96px);
  transition: transform 0.5s;
}

.tele:hover .text2 {
  transform: translateX(100px);
  transition: transform 0.6s;
}

.tele:active {
  transform: scale(1.03);
}


/* this is for github icon started */

.github {
  position: relative;
  width: 130px;
  height: 35px;
  border-radius: 30px;
  background-color: white;
  border: 1px #000000 solid;
  overflow: hidden;
}

.github .text1 {
  font-size: 17px;
  font-weight: 700;
  margin-left: 22%;
}

.github .text2 {
  position: absolute;
  top: 25%;
  left: -50px;
  font-weight: 700;
  font-size: 14px;
  color: white;
}

.github .icon {
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.5s;
}

.github .icon::before {
  position: absolute;
  left: -100px;
  top: 0;
  z-index: -1;
  content: '';
  width: 130px;
  height: 33px;
  border-radius: 30px;
  background-color: #000000;
}

.github .icon::after {
  position: absolute;
  left: 0.5px;
  top: 0.5px;
  z-index: -1;
  content: '';
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background-color: white;
}

.github:hover .icon {
  transform: translateX(97.5px);
  transition: transform 0.5s;
}

.github:hover .text2 {
  transform: translateX(100px);
  transition: transform 0.6s;
}

.github:active {
  transform: scale(1.03);
}
