.elementor-3068 .elementor-element.elementor-element-be2c62b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-311px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-3068 .elementor-element.elementor-element-a306523 > .elementor-widget-container{margin:0px 0px 45px 0px;}.elementor-3068 .elementor-element.elementor-element-a306523 img{max-width:100%;height:346px;}.elementor-3068 .elementor-element.elementor-element-b796dda{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-3068 .elementor-element.elementor-element-cb544f3 .tf-title-section .title-section{text-align:center;}.elementor-3068 .elementor-element.elementor-element-cb544f3 .tf-title-section .title-section .sub-title{font-family:"Arimo", Sans-serif;font-size:16px;font-weight:400;line-height:26px;}.elementor-3068 .elementor-element.elementor-element-cb544f3 .tf-title-section .title-section .heading{font-family:"Arimo", Sans-serif;font-size:45px;font-weight:700;line-height:1.2222222222222223em;}.elementor-3068 .elementor-element.elementor-element-e7360e4{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-a36d940 */<style>
    .publications-container {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        max-width: 900px;
        margin: 0 auto;
        padding: 20px;
    }
    
    .publications-main-title {
        color: #062686;  /* Updated title color */
        text-align: center;
        margin-bottom: 40px;
        position: relative;
        font-size: 2.5rem;
        animation: fadeIn 1s ease-out;
    }
    
    .publications-main-title::after {
        content: '';
        display: block;
        width: 100px;
        height: 4px;
        background: #06097c;
        margin: 15px auto;
        border-radius: 2px;
    }
    
    .publication-year {
        color: #06097c;
        font-size: 24px;
        font-weight: bold;
        margin: 50px 0 20px 0;
        padding-bottom: 8px;
        border-bottom: 2px solid rgba(6, 9, 124, 0.3);
        position: relative;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .publication-year:hover {
        transform: translateX(10px);
        color: #3764eb;
    }
    
    .publication-year::before {
        content: '▼';
        position: absolute;
        left: -25px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 14px;
        color: #06097c;
        transition: transform 0.3s ease;
    }
    
    .publication-year.collapsed::before {
        transform: translateY(-50%) rotate(-90deg);
    }
    
    .publication-items-wrapper {
        overflow: hidden;
        transit/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-e7360e4 *//* Base styles for the publication list */
.publication-list {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
}

/* General styles for list items */
.publication-list ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 0;
}

/* Styling for each publication item */
.publication-list ul li {
    margin-bottom: 20px;
    padding: 12px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for list items */
.publication-list ul li:hover {
    transform: translateY(-5px); /* Lift the item slightly */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); /* Add shadow */
}

/* Styling for the links */
.publication-list ul li a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover effect on the links */
.publication-list ul li a:hover {
    color: #0056b3;
    transform: scale(1.05); /* Slight zoom effect */
    text-decoration: underline; /* Underline on hover */
}

/* Book Chapters title styles */
.publication-list h3 {
    font-size: 24px;
    color: #333;
    margin-top: 40px;
    font-weight: bold;
}

/* Styling for the "strong" elements inside the list items */
.publication-list ul li strong {
    font-weight: bold;
    color: #000;
}

/* Add some space between each list item */
.publication-list ul li + li {
    margin-top: 10px;
}

/* Mobile-friendly responsive design */
@media (max-width: 768px) {
    .publication-list {
        padding: 15px;
    }
    .publication-list ul li {
        padding: 10px;
    }
}/* End custom CSS */