.clip {
    clip-path: polygon(0% 100%, 30% 0%, 100% 56%, 0 100%, 15% 16%);
    /* background: #3498db; Or any other color */
    /* clip-path: ellipse(50% 100% at 50% 50%); */
    background: rgb(44, 92, 104);
    background: linear-gradient(90deg, rgb(44, 92, 104) 0%, rgb(241, 255, 255, 1) 100%);
    background: -moz-linear-gradient(90deg, rgb(44, 92, 104) 0%, rgb(241, 255, 255, 1) 100%);
    background: -webkit-linear-gradient(90deg, rgb(44, 92, 104) 0%, rgb(241, 255, 255, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#392D69", endColorstr="#B57BEE", GradientType=1);
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 1;
    opacity: .2;
}

.cli {
    z-index: -10;
    background-color: var(--primary-50-501);
    border-bottom-left-radius: 150px;
    height: 100%;
    position: absolute;
    /* inset: 0% 0% auto; */
    overflow: hidden;
}



.main {
    background-color: #2C3444;
}


/* First section */

.main-wrapper {
    z-index: 1;
    display: flex;
    flex-direction: row;
    height: 100%;
    gap: 50px;
    align-items: center;
    position: absolute;
    width: 100%;
}

.hero-image {
    max-width: 700px;
    width: 98%;
}

.left-block {
    z-index: 2;
    display: flex;
    width: 50%;
    height: 100%;
    padding-left: 10%;
    flex-direction: column;
    align-content: space-around;
    justify-content: space-evenly;
    color: white;
}

.right-block {
    z-index: 2;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    /* width: 50%; */
    width: 35%;

}

.hero-section {
    min-height: 500px;
    background-color: #2C3444 !important;
    margin-top: 90px;
}

/* End first section */

.title-wrapper {
    justify-content: center;
    text-align: center;
    font-size: 28px;
    color: white;
    border-top: 1px solid #606060;
    border-bottom: 1px solid #606060;
    padding: 15px 0 20px 0;
    font-weight: 700;
    /* font-family: Quicksand; */
    line-height: 35px;
    display: flex;
}


.heading {
    font-size: 40px;
    line-height: 49px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 0;
}

.datatext,
.heading {
    /* text-align: center; */
    color: #fff;
}

.datatext {
    max-width: 700px;
    font-size: 18px;
    line-height: 30px;
    /* margin: 20px auto; */
}

.cardWrp {
    padding-top: 25px;
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    /* Ensure cards stay in a row */
    /* justify-content: center; */
    gap: 30px;
}


.publication-card {
    display: flex;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    /* width: 600px; */
    width: calc(50% - 30px);
    /* Ensure two cards fit in one row */
    transition: transform 0.2s;
}

.publication-card:hover {
    transform: scale(1.03);
}

.publication-year {
    background-color: #3498db;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: 120px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;

}

.publication-info {
    padding: 20px;
    flex-grow: 1;
    width: calc(100% - 120px);
    /* Ensure two cards fit in one row */

}

.publication-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.publication-details {
    font-size: 16px;
    color: #555;
}

.publication-details a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

.publication-details a:hover {
    text-decoration: underline;
}

.explore-year {
    /* background-color: #2ecc71; */
    background-color: #34c471;
    /* Green color */
}

.explore-card .publication-details {

    display: flex;
    /* Flexbox added */
    align-items: center;
    /* Vertically align the image and text */
    gap: 10px;
    /* Space between text and logo */

}

.google-scholar-logo {
    width: 30px; /* Set a small size for the logo */
    height: auto;
}



@media (max-width: 991px) and (max-width: 1075px) {

    .right-block {
        width: 100%;
        align-items: center;
    }

    .dashboard-svg {
        width: 100%;
    }

    .csb-2 {
        padding: 15px;
        flex-direction: column;
    }


    .csb-2>img {
        width: 100%;
    }


    .hero-section {
        margin-top: 50px;
    }

    .main-wrapper {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: auto;
        position: relative;
    }

    .left-block {
        padding: 0;
        width: 95%;
    }

    .hero-image {
        height: 100%;
        width: 70%;
    }



}


/************* responsive css *******************/
@media screen and (max-width: 768px) {

    .cardWrp {
        flex-direction: column;
    }

    .publication-card {
        width: 100%;
    }

}

@media screen and (max-width: 600px) {
    .publication-year {
        padding: 15px;
        width: 80px;
        font-size: 18px;
    }

    .publication-info {
        padding: 15px;
        width: calc(100% - 80px);
    }

    .publication-title {
        font-size: 16px;
        font-weight: bold;
        color: #333;
        margin-bottom: 10px;
    }

    .publication-details {
        font-size: 14px;
        color: #555;
    }
}