/* css reset */
* { 

    margin: 0;
    padding: 0;
    /* font-family: 'Baloo Bhaijaan 2', cursive; */
    font-family: 'Raleway', sans-serif;
    font-size: 0.99rem;
    box-sizing: border-box;
    color: rgb(44, 37, 30);
}
html, body{
    overflow-x: hidden;
}
  
.section-heading{
    padding-top: 2rem;
    font-weight: bolder;
    padding-bottom: 1rem;
}

/* navbaar */
@media screen and (min-width: 1000px) {
    .navy-btn{
        color: #ffffff;
        background-color:rgb(90,159,224);
        margin: 5px 25px 0px 0px;
        border-radius: 8px;
        padding: 5px 15px 5px 15px;

    }
    .join-btn{
        color: rgb(44, 37, 30);
        background-color:rgb(213,126,42);
        margin: 5px 0px 0px 10px;
        border-radius: 8px;
        padding: 5px 15px 5px 15px;
        transition: 0.3s;
    }
    .join-btn:hover{
        background-color: #ff7b00;
        transform: scale(1.05);
        
    }
    .bg-l{
        background-color: rgba(246, 247, 249, 0.9);
    }
}
@media screen and (max-width: 1000px) {
    
    .join-btn{
        color: rgb(44, 37, 30);
        
    }
    .bg-l{
        background-color: rgb(246, 247, 249);
    }
}



/* home section */

#home {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 654px;
}

#home::before {
    content: "";
    background: url('../images/shakehand.jpg') no-repeat center center/cover;
    position: absolute;
    top: 20px; 
    height: 700px;
    width: 100%;
    z-index: -1;
    opacity: 0.2;
}

#home h1 {
    font-size: 4rem;
    font-weight: bold;
    
}

#home p {
    font-size: 1.5rem;
    text-align: center;
    padding-top: 10px;
    color: rgb(0, 0, 0);
}
.home-content{
    padding-top: 80px;
    position: relative;
}

.btn1 {
    font-size: 1rem;
    border: 1px solid rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    padding: 6px 20px;
    background-color: rgb(90,159,224);
    border-radius: 8px;
    margin: 15px;
    box-shadow: 5px 5px 10px 2px rgba(0,0,0,.4);
    cursor: pointer;
    transition: 0.3s;
}
.btn1:hover{
    transform: scale(1.1);
    color: rgb(44, 37, 30);
}
div.sticky{
    
    position: fixed;
    bottom: 10px;
    right: 10px;   
    z-index: 300;
}
.top-btn{
    text-decoration: none;
    background-color: rgb(90,159,224);
    width: 3rem;
    height: 3rem;
    border: 0;
    border-radius: 100%;
}
.top-btn:hover{
    transform: scale(1.05);
}
.join-btn1{
    color: rgb(44, 37, 30);
    background-color:rgb(213,126,42);
    margin: 5px 0px 0px 10px;
    border-radius: 8px;
    padding: 5px 15px 5px 15px;
    transition: 0.3s;
}
.join-btn1:hover{
    background-color: rgb(255, 123, 0);
    transform: scale(1.05);
    
}
/* scroll down */
.arrows {
    width: 60px;
    height: 72px;
    margin-top: 40px;
  }
  
  .arrows path {
    stroke: #000000;
    fill: transparent;
    stroke-width: 2px;  
    animation: arrow 2s infinite;
    -webkit-animation: arrow 2s infinite; 
  }
  
  @keyframes arrow
  {
  0% {opacity:0}
  40% {opacity:1}
  80% {opacity:0}
  100% {opacity:0}
  }
  
  @-webkit-keyframes arrow /*Safari and Chrome*/
  {
  0% {opacity:0}
  40% {opacity:1}
  80% {opacity:0}
  100% {opacity:0}
  }
  
  .arrows path.a1 {
    animation-delay:-1s;
    -webkit-animation-delay:-1s; /* Safari 和 Chrome */
  }
  
  .arrows path.a2 {
    animation-delay:-0.5s;
    -webkit-animation-delay:-0.5s; /* Safari 和 Chrome */
  }
  
  .arrows path.a3 { 
    animation-delay:0s;
    -webkit-animation-delay:0s; /* Safari 和 Chrome */
  }
/* services section */

#services-container {
    text-align: center;
    background-color: rgb(255, 255, 255);
}

#services {
    display: flex;
    margin: 0px auto;
    margin-bottom: 35px;
}

@media only screen and (max-width:840px) {
    #services {
        flex-direction: column;
        margin: 2px 15px;
        margin-bottom: 35px;
    }
}

#services .box {
    border: 2px solid black;
    border-radius: 25px;
    background-color: rgb(234 239 243);
    padding: 25px 50px;
    margin: 0px 15px;
}

#services .box img {
    height: 100px;
}
/* service-card styling */
.card-bg{
    background-color: rgba(255, 166, 0, 0.1);
}
.hover-card{
    transition: 0.5s;
}
.hover-card:hover{
    transform: scale(1.05);
}
.hire-btn{
    background-color: rgb(213,126,42);
    transition: 0.5s;
    box-shadow: 5px 5px 18px 18px rgba(213, 125, 42, 0.2);
}
.hire-btn:hover{
    background-color: rgb(255, 123, 0);
    transform: scale(1.05);
}

/* our-team */
#our-team {
    position: relative;
    text-align: center;
}

#our-team::before {
    content: "";
    background: linear-gradient(180deg, rgba(23, 233, 215, 0.88), rgb(252,239,239));
    position: absolute;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.2;
}

/* insigths */
#insights {
    background: linear-gradient(180deg, rgb(252,239,239), rgb(255,255,255));
  }
/* trusted-by */
#trusted-by {
    background: linear-gradient(to bottom right,#e8a76da7, rgba(23, 233, 216, 0.276), rgb(252,239,239));
}
/* testimonials */
#testimonials{
    /* background: linear-gradient(#e8a76da7, rgba(23, 233, 216, 0.276), rgb(252,239,239)); */
    background: linear-gradient(180deg, rgb(252,239,239), rgb(255,255,255));

}
.carousel-control-next,
.carousel-control-prev, .carousel-indicators /*, .carousel-indicators */ {
    filter: invert(100%);
}
/* package */
#package{
    background: linear-gradient(180deg, rgba(23, 233, 216, 0.403), rgb(252,239,239));
}

/* contact section */
#contact h1 {
    text-align: center;
}
.bg1{
    background-color: rgba(0, 255, 255, 0.126);
}
.bg2{
    background-color: rgba(255, 140, 0, 0.084);
}


/* contact */

#contact::before {
    content: "";
    background: url('../images/contact.jpg') no-repeat center center/cover;
    position: absolute;
    left: 0px;
    width: 100%;
    height: 700px;
    z-index: -1;
    opacity: 0.2;
}



.bg-translucent{
    background-color: rgba(248, 249, 250, 0.526);
}
.my-selector {
    backdrop-filter: blur(3px);
 }

 /* fontawesome styling */
.fa-hover:hover {
    opacity: 0.6;
}
.fa, .fas, .fa-regular{
    color: rgba(0, 0, 0, 0.759);
    font-size: 40px;
    text-decoration: none;
}

.fa-top{
    font-size: 25px;
    color: white;
}
.fa-solid{
    color: rgb(44, 37, 30);
}


/* Trustedby.css */
.holderCircle {
    width: 600px;
    height: 600px;
    border-radius: 100%;
    margin-top: 30px;
    margin-bottom: 70px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}


.dotCircle {
    width: 100%;
    height: 100%;
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 100%;
    z-index: 20;
}

.dotCircle .itemDot {
    display: block;
    width: 100px;
    height: 100px;
    position: absolute;
    background: #ffffff;
    color: #7d4ac7;
    border-radius: 20px;
    text-align: center;
    line-height: 80px;
    font-size: 30px;
    z-index: 3;
    cursor: pointer;
    border: 2px solid #e6e6e6;
}

.dotCircle .itemDot img{
    width: 95px;
    border-radius: 6px;
}

.dotCircle .itemDot .forActive {
    width: 56px;
    height: 56px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
}

.dotCircle .itemDot .forActive::after {
    content: '';
    width: 5px;
    height: 5px;
    border: 3px solid #7d4ac7;
    bottom: -31px;
    left: -14px;
    filter: blur(1px);
    position: absolute;
    border-radius: 100%;
}

.dotCircle .itemDot .forActive::before {
    content: '';
    width: 6px;
    height: 6px;
    filter: blur(5px);
    top: -15px;
    position: absolute;
    transform: rotate(-45deg);
    border: 6px solid #a733bb;
    right: -39px;
}

.dotCircle .itemDot.active .forActive {
    display: block;
}

.round {
    position: absolute;
    left: 40px;
    top: 45px;
    width: 510px;
    height: 510px;
    border: 2px dotted #a733bb;
    border-radius: 100%;
    -webkit-animation: rotation 100s infinite linear;
}

.dotCircle .itemDot:hover,
.dotCircle .itemDot.active {
    color: #ffffff;
    transition: 0.5s;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#7d4ac7+0,a733bb+100 */
    background: #7d4ac7;
    /* Old browsers */
    background: -moz-linear-gradient(left, #baabd0 0%, #c194c9 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #baabd0  0%, #c194c9 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #baabd06e 0%, #c194c947 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7d4ac7', endColorstr='#a733bb', GradientType=1);
    /* IE6-9 */
    border: 2px solid #ffffff;
    -webkit-box-shadow: 0 30px 30px 0 rgba(0, 0, 0, .13);
    -moz-box-shadow: 0 30px 30px 0 rgba(0, 0, 0, .13);
    box-shadow: 0 30px 30px 0 rgba(0, 0, 0, .13);
}

.dotCircle .itemDot {
    font-size: 40px;
}

.contentCircle {
    width: 250px;
    border-radius: 100%;
    color: #222222;
    position: relative;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contentCircle .CirItem {
    border-radius: 100%;
    color: #222222;
    position: absolute;
    text-align: center;
    bottom: 0;
    left: 0;
    opacity: 0;
    transform: scale(0);
    transition: 0.5s;
    font-size: 15px;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    margin: auto;
    line-height: 250px;
}

.CirItem.active {
    z-index: 1;
    opacity: 1;
    transform: scale(1);
    transition: 0.5s;
}

.contentCircle .CirItem i {
    font-size: 180px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -90px;
    color: #000000;
    opacity: 0.1;
}
@media only screen and (max-width:599px) {
    .holderCircle {
        width: 300px;
        height: 300px;
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 150px;
    }

    .holderCircle::after {
        width: 100%;
        height: 100%;
    }

    .dotCircle {
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
    }
    .round {
        position: absolute;
        left: 40px;
        top: 45px;
        width: 205px;
        height: 205px;
        border: 2px dotted #a733bb;
        border-radius: 100%;
        -webkit-animation: rotation 100s infinite linear;
    }
    .contentCircle{
        top: 25%;
    }
    .dotCircle .itemDot {
        display: block;
        width: 70px;
        height: 70px;
        position: absolute;
        background: #ffffff;
        color: #7d4ac7;
        border-radius: 20px;
        text-align: center;
        line-height: 80px;
        font-size: 30px;
        z-index: 3;
        cursor: pointer;
        border: 2px solid #e6e6e6;
    }
    
    .dotCircle .itemDot img{
        width: 60px;
        border-radius: 6px;
    }
}


.title-box .title {
    font-weight: 600;
    letter-spacing: 2px;
    position: relative;
    z-index: -1;
}

.title-box span {
    text-shadow: 0 10px 10px rgba(0, 0, 0, .15);
    font-weight: 800;
    color: #640178;
}

.title-box p {
    font-size: 17px;
    line-height: 2em;
}



/* trustedby.css */

.holderCircle {
    width: 600px;
    height: 600px;
    border-radius: 100%;
    margin-top: 30px;
    margin-bottom: 70px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}


.dotCircle {
    width: 100%;
    height: 100%;
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 100%;
    z-index: 20;
}

.dotCircle .itemDot {
    display: block;
    width: 100px;
    height: 100px;
    position: absolute;
    background: #ffffff;
    color: #7d4ac7;
    border-radius: 20px;
    text-align: center;
    line-height: 80px;
    font-size: 30px;
    z-index: 3;
    cursor: pointer;
    border: 2px solid #e6e6e6;
}

.dotCircle .itemDot img{
    width: 95px;
    border-radius: 6px;
}

.dotCircle .itemDot .forActive {
    width: 56px;
    height: 56px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
}

.dotCircle .itemDot .forActive::after {
    content: '';
    width: 5px;
    height: 5px;
    border: 3px solid #7d4ac7;
    bottom: -31px;
    left: -14px;
    filter: blur(1px);
    position: absolute;
    border-radius: 100%;
}

.dotCircle .itemDot .forActive::before {
    content: '';
    width: 6px;
    height: 6px;
    filter: blur(5px);
    top: -15px;
    position: absolute;
    transform: rotate(-45deg);
    border: 6px solid #a733bb;
    right: -39px;
}

.dotCircle .itemDot.active .forActive {
    display: block;
}

.round {
    position: absolute;
    left: 40px;
    top: 45px;
    width: 510px;
    height: 510px;
    border: 2px dotted #a733bb;
    border-radius: 100%;
    -webkit-animation: rotation 100s infinite linear;
}

.dotCircle .itemDot:hover,
.dotCircle .itemDot.active {
    color: #ffffff;
    transition: 0.5s;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#7d4ac7+0,a733bb+100 */
    background: #7d4ac7;
    /* Old browsers */
    background: -moz-linear-gradient(left, #baabd0 0%, #c194c9 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #baabd0  0%, #c194c9 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #baabd06e 0%, #c194c947 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7d4ac7', endColorstr='#a733bb', GradientType=1);
    /* IE6-9 */
    border: 2px solid #ffffff;
    -webkit-box-shadow: 0 30px 30px 0 rgba(0, 0, 0, .13);
    -moz-box-shadow: 0 30px 30px 0 rgba(0, 0, 0, .13);
    box-shadow: 0 30px 30px 0 rgba(0, 0, 0, .13);
}

.dotCircle .itemDot {
    font-size: 40px;
}

.contentCircle {
    width: 250px;
    border-radius: 100%;
    color: #222222;
    position: relative;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contentCircle .CirItem {
    border-radius: 100%;
    color: #222222;
    position: absolute;
    text-align: center;
    bottom: 0;
    left: 0;
    opacity: 0;
    transform: scale(0);
    transition: 0.5s;
    font-size: 15px;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    margin: auto;
    line-height: 250px;
}

.CirItem.active {
    z-index: 1;
    opacity: 1;
    transform: scale(1);
    transition: 0.5s;
}

.contentCircle .CirItem i {
    font-size: 180px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -90px;
    color: #000000;
    opacity: 0.1;
}
@media only screen and (max-width:599px) {
    .holderCircle {
        width: 300px;
        height: 300px;
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 150px;
    }

    .holderCircle::after {
        width: 100%;
        height: 100%;
    }

    .dotCircle {
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
    }
    .round {
        position: absolute;
        left: 40px;
        top: 45px;
        width: 205px;
        height: 205px;
        border: 2px dotted #a733bb;
        border-radius: 100%;
        -webkit-animation: rotation 100s infinite linear;
    }
    .contentCircle{
        top: 25%;
    }
    .dotCircle .itemDot {
        display: block;
        width: 70px;
        height: 70px;
        position: absolute;
        background: #ffffff;
        color: #7d4ac7;
        border-radius: 20px;
        text-align: center;
        line-height: 80px;
        font-size: 30px;
        z-index: 3;
        cursor: pointer;
        border: 2px solid #e6e6e6;
    }
    
    .dotCircle .itemDot img{
        width: 60px;
        border-radius: 6px;
    }
}


.title-box .title {
    font-weight: 600;
    letter-spacing: 2px;
    position: relative;
    z-index: -1;
}

.title-box span {
    text-shadow: 0 10px 10px rgba(0, 0, 0, .15);
    font-weight: 800;
    color: #640178;
}

.title-box p {
    font-size: 17px;
    line-height: 2em;
}



