/* custom font */
@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');


body {
    background-color: aliceblue !important;
    font-family: "Poppins", serif !important;

}

a{
    text-decoration: none !important;
}

/* navbar */


.logoIcon {
    width: 50px;
    height: 50px;
}

.navbar {
    box-shadow: 0px 2px 5px #ffffff2a;
    width: 100% !important;
    background-color: #006aff !important;
}
.nav-link {
    position: relative;

    text-decoration: none;

    background-color: #333;
    color: white !important;
}
.active{
    color: #00031c !important;
}

.navbar-toggler {
    outline: none !important;
}

.navbar a {
    text-decoration: none;
}

.navbar .nav-link:hover {
    color: #000000 !important;
}

/* dropdown */
.dropdown-menu {
    background-color: #353535 !important;
}

.dropdown-item>a {
    color: rgb(255, 255, 255) !important;
}
.dropdown-item>a:hover{
    color: #ffffff !important;
}
.dropdown-item{
    background-color: transparent !important;
}
.researchHeading {
    
    font-weight: bold;
    position: relative;
    display: inline-block;
    /* padding: 1px; */
}

.researchHeading::after {
    content: "";
    position: absolute;

    background-color: #00c89c;
    bottom: -5px;
    right: 0;
    left: 1%;
    border-radius: 10px;
    width: 45%;
    height: 5px;
}


.experienceTimeLine {
    position: relative;
    max-width: 1200px;
    margin: 80px auto;
}

.experienceTimeLine::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 100%;
    border-radius: 10px;
    background-color: rgb(0, 0, 0);
    top: 0;
    left: 50%;
    margin-left: -3px;
    z-index: -1;
    animation: moveline 7.5s linear forwards;
    /* box-shadow: 0px 0px 3px #00ffff; */
    
}

@keyframes moveline {
    0% {
        height: 0;
    }

    100% {
        height: 100%;
    }

}

.timeLineContainer {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    /* border: 1px solid var(--primary-color) !important; */
    border-radius: 10px;
    /* box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px !important; */
    animation: movedown 1s linear forwards;
    opacity: 0;
}

.timeLineContainer:nth-child(1) {
    animation-delay: 0s;
}


.timeLineContainer:nth-child(2) {
    animation-delay: 2s;
}

.timeLineContainer:nth-child(3) {
    animation-delay: 3s;
}

.timeLineContainer:nth-child(4) {
    animation-delay: 4.5s;
}

.timeLineContainer:nth-child(5){
    animation-delay: 5s;
}
.timeLineContainer:nth-child(6){
    animation-delay: 6s;
}

@keyframes movedown {
    0% {
        opacity: 1;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(30px);
    }
}

.text-box {
    padding: 20px 30px;
    /* border: #f200ff 1px solid; */
    position: relative;
    background-color: #9800b0 !important;
    border-radius: 6px;
    font-size: 15px !important;
}

.text-box h5 {
    font-weight: 700;
}

.text-box small {
    display: inline-block;
}

.left-container-arrow {
    position: absolute;
    height: 0;
    width: 0;
    top: 15px;
    z-index: 1;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #9800b0;
    right: -14px;
}

.right-container-arrow {
    position: absolute;
    height: 0;
    width: 0;
    top: 15px;
    z-index: 1;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid #9800b0;
    left: -14px;
}

.circle-left {
    width: 30px;
    height: 30px;
    background-color: #2600ff !important;
    position: absolute;
    z-index: 10;
    border-radius: 50%;
    right: -15px;
    top: 20px;
}

.circle-left::after {

    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #00e5ff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;

}

.circle-right {
    width: 30px;
    height: 30px;
    background-color: #2b00ff !important;
    position: absolute;
    z-index: 10;
    border-radius: 50%;
    left: -15px;
    top: 20px;
}

.circle-right::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #00d5ff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;

}


.left-container {
    left: 0;
}

.right-container {
    left: 50%;
}


.socialIcons {
    margin-bottom: 10px;
}

.socialIcons span {
    padding: 10px;


}
.custom-tooltip {
    --bs-tooltip-bg: #006aff !important;
    --bs-tooltip-color: #fff;
}




/* Footer */
footer{
    margin-top: 300px;
    background-color: #aca6ff;
    padding: 30px;
    min-height: 40vh;
}
footer ul>li>a{
    color: #000;
}
footer ul>li>a:hover{
    color: #fff;
}



/* Media Queries */

@media screen and (max-width : 600px) {
    /* .heroPage img {
        width: 100%;
    } */
    .experienceTimeLine {
        margin: 50px auto;
    }

    .experienceTimeLine::after {
        left: 31px;
    }

    .timeLineContainer {
        width: 100%;
        padding-left: 60px;
    }

    .text-box {
        font-size: 10px !important;
        /* padding: 10px; */
    }

    .text-box small {
        margin-bottom: 10px;
    }

    .right-container {
        left: 0;
    }

    .left-container .circle-left,
    .right-container .circle-right {
        left: 15px;
    }

    .left-container-arrow {
        border-right: 15px solid #9800b0;
        border-left: 0;
        left: -13px;
        z-index: 1;
    }
    .loading-text{
        top: 55%;
        left: 50%;
        transform: translate(-50%,-50%);
    }
}