/* 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;
}

header {
    min-height: 100vh;
    /* background-color: aqua; */
}

/* 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;
}

/* heropage */

.heroPage {

    margin-top: 100px;

}
.container.heroPage {
    max-width: 100%;
    overflow-x: hidden;
}



.name {
    color: rgb(255, 0, 149);
    
    font-size: 40px;
}

.socialIcons {
    margin-bottom: 10px;
}

.socialIcons span {
    padding: 10px;


}

.card {
    
    background-color: #006aff !important;

}

.resumeBtn {
    background-color: #006aff !important;
    color: #ffffff !important;
}

.contactBtn {
    border: 1px solid #006aff !important;
    color: #006aff !important;
    transition: 0.7s !important;
}

.contactBtn:hover {
    background-color: #006aff !important;
    color: #ffffff !important;
    
}

/* tool tips */

.custom-tooltip {
    --bs-tooltip-bg: #006aff !important;
    --bs-tooltip-color: rgb(255, 255, 255) !important;
}


/* Education time line */

.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%;
}

/* Research Profile*/
.researchProfileContainer {
    margin-top: 200px;

}

.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;
}

.card-footer {
    border-top: none !important;
}


/* Awards and Recognitions */
.awardsList{
    list-style-type:none ;
    padding: 0px;   
}

.awardsList > li{
    position: relative;
    padding-left: 40px;
    margin: 10px auto;
    color: #000000;
}

.awardsList > li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(./src/trophy-star.png);
}

/* Research Area */
.researchArea{
    list-style-type: none ;
    padding: 0px;
}

.researchArea > li{
    padding-left: 40px;
    position: relative;
    margin: 10px auto;
}

.researchArea > li::before{
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    background-image: url(./src/market-analysis.png);
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
}
/* selectedJournals */

.selectedJournals{
    list-style-type: none;
    padding: 0px;
}
.selectedJournals >li{
    margin: 15px auto;
    padding-left: 40px;
    position: relative;
}
.selectedJournals >li::before{
    content: "";
    position: absolute;
    background-image: url(./src/diary.png);
    left: 0;
    top: 5px;
    width: 25px;
    height: 25px;
    background-size: cover;
    background-repeat: no-repeat;
}

/* patentDetails */
.patentDetails{
    list-style-type: none ;
    padding: 0px;
}
.patentDetails >li{
    position: relative;
    padding-left: 40px;
    margin: 15px auto;

}

.patentDetails > li::before{
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    background-image: url(./src/certificate.png);
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
}


/* researchProjects */
.researchProjects{
    list-style-type: none;
    padding: 0px;
}

.researchProjects > li{
    margin: 15px auto;
    position: relative;
    padding-left: 40px;
}


.researchProjects > li::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    background-image: url(./src/idea.png);
    background-size: cover;
    background-repeat: no-repeat;
}



/* preloader */
.preloader{
    background: #070707 url(https://cdn.dribbble.com/users/2689687/screenshots/7064797/media/8ddd20e96e8baca19c35d86f500d017b.gif) no-repeat center center;
    background-size: 20%;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 100000;
}

.loading-text{
    position: absolute;
    top: 61%;
    left: 50%;
    transform: translate(-50%,-50%);
    
}

/* Foooter */

footer{
    margin-top: 300px;
    background-color: #a6bbff;
    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 #9800b1;
        border-left: 0;
        left: -13px;
        z-index: 1;
    }
    .loading-text{
        top: 55%;
        left: 50%;
        transform: translate(-50%,-50%);
    }
}