@import 'bootstrap-icons/font/bootstrap-icons.css';

html {
    scroll-behavior: smooth;
}  

body{
    font-family: "Poppins", sans-serif !important;
}

.btns {
    background-color: #6A38C2 !important;
    border-color: #6A38C2 !important;
    font-size: 0.82rem !important;
    border-radius: 8px !important;
}

.btns:hover {
    background-color: #ffffff85 !important;
    border-color: #6A38C2 !important;
    color: #6A38C2 !important;
}

.btnsout {
    background-color: #ffffff !important;
    border-color: #6A38C2 !important;
    color: #6A38C2 !important;
    border-radius: 8px !important;
    font-size: 0.82rem !important;
}

.btnsout:hover {
    background-color: #6A38C2  !important;
    border-color: #6A38C2 !important;
    color: #ffffff !important;
}

.head{
    font-size: 4rem;
    font-weight: bolder;
    line-height: 80px;
}

.sub{
    font-weight: bolder;
}

.violet{
    color: #6A38C2;
}

.imgs{
    width: 4%;
    z-index: -5;
    filter: blur(3px);
    animation-name: example;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.imgs1{
    top: 20vh;
    left:10vw;
}

.imgs2{
    top: 20vh;
    right:10vw;
}

.imgs3{
    top:70vh;
    left:20vw;
}

.imgs4{
    top: 40vh;
    right:25vw;
}

.imgs5{
    top: 70vh;
    right:15vw;
}

.smdiv{
    box-shadow: 0px 0px 10px #0000001e;
    border-radius: 10px;
}

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

.main{
    backdrop-filter: blur(10px);
}

.round{
    background: #6b38c222;
    width: 60px;
    height: auto;
    padding: 12px;
    border-radius: 50px;
    color: #6A38C2;
    font-size: 24px;
    margin-bottom: 20px;
}

#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background: #6A38C2;
    color: #ffffff;
    z-index: 1000;
  }

.ma{
    margin-top: 100px;
}

.hoverdiv{
    transition: all 0.3s;
    background: #ffffff !important;
}

.hoverdiv:hover{
    background: #6b38c2 !important;
    cursor:  pointer !important;
    color: #ffffff;
}

.hoverdiv:hover .round{
    background: #ffffffc9 !important;
}

@media screen and (max-width:990px){
    .head{
        font-size: 4rex;
        line-height: 40px;
    }

    .imgs{
        width: 10%;
    }
    .menusd{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 50px;
        padding-bottom: 70px;
    }
    .headp{
        font-size: small;
    }
    section{
        padding: 0vw 2vw 0vh 2vw;
    }
    .navbar-brand{
        font-size: 30px !important;
    }

    .imgs4{
        top: 25vh;
        right:30vw;
    }
    
.ma{
    margin-top: 0px;
}
}

#loader-container {
    display: flex;
    justify-content: center;
    gap: 100px;
    align-items: center;
    width: 100%;
    height: 100vh;
    z-index: 10000;
    position: absolute;
    background: #ffffff;
  }
  
  .loader {
    display: flex;
    justify-content: space-between;
    width: 150px;
  }
  
  .loader div {
    width: 16px;
    height: 16px;
    background-color: #6A38C2;
    border-radius: 50%;
    animation: grow-shrink 1.5s infinite;
  }
  
  .loader div:nth-child(1) {
    animation-delay: 0s;
  }
  
  .loader div:nth-child(2) {
    animation-delay: 0.1s;
  }
  
  .loader div:nth-child(3) {
    animation-delay: 0.2s;
  }
  
  .loader div:nth-child(4) {
    animation-delay: 0.3s;
  }
  
  .loader div:nth-child(5) {
    animation-delay: 0.4s;
  }
  
  @keyframes grow-shrink {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.8);
    }
  }





  

  