.Annual_Report .quick-main .fixed-top-section .item-top {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: flex-start;
    gap: 40px;
}

.Annual_Report .quick-main .legacy-wrapper .item-cente {
    text-align: center;
}

.Annual_Report .quick-main .legacy-wrapper .item-center img {
    width: 70%;
    height: auto;
    border-radius: 12px;
}

.Annual_Report .quick-main .fixed-top-section .item-top .right-item {
    margin-top: 80px;
}

.Annual_Report .quick-main .legacy-wrapper {
    padding: 60px 73px;
}

.Annual_Report .quick-main .fixed-top-section .item-top .right-item .bnr-btn {
    margin-top: 30px;
}

.Annual_Report .quick-main .legacy-wrapper {
    background: none;
    background: linear-gradient(90deg, #6B4F9F 0%, #23428D 100%);
}

.subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.reports-container {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-bottom: 50px;
}

.report-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 0px;
    overflow: hidden;
    display: flex;
    min-height: auto;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid #E4E4E4;
    border-left: 0;
    border-right: 0;
    padding: 66px 0;
}

.content {
    flex: 1;
    padding: 0px 30px;
    position: relative;
    z-index: 2;
    transition: all 0.4s;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}


.year {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 0px;
    color: #242424;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.4;
    transition: all 0.3s ease;
    color: #242424;
    font-weight: 500;
}

.hover-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    opacity: 0;
}

.description {
    font-size: 14px;
    line-height: 22px;
    margin: 20px 0 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
    max-width: 300px;
    color: #EDEDEDCC;
}

.buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn {
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.btn-primary {
    background: #4cc9f0;
    color: #1a2a6c;
}

.btn-primary:hover {
    background: #3aa8d0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(76, 201, 240, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffd166;
    border: 2px solid #ffd166;
    position: relative;
}

.btn-secondary:hover {
    background: rgba(255, 209, 102, 0.1);
    transform: translateY(-3px);
}

.right-content {
    width: 50%;
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    position: absolute;

    border-radius: 10px;
    transform: rotate(-12deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.image-placeholder img {

    box-shadow: none;
    border-radius: 16px;
}

.report-list {
    position: absolute;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 25px;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s ease;
    border-left: 2px solid #ffd166;
    overflow-y: auto;
    background: transparent;
    border: 0;
    height: auto;
}

.list-column {
    flex: 1;
    min-width: 150px;
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.list-item {
    padding: 12px 15px;
    margin-bottom: 20px;
    background: transparent;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    border-bottom: 1px solid #EDEDED1A;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.list-item span {
    line-height: 2;
}

.list-item span:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
}

.list-item:hover {
    background: rgba(255, 255, 255, 0.2);

}

.list-item i {
    margin-right: 12px;
    color: #4cc9f0;
}
.report-item{border-radius: 20px;}

/* Hover effects */
.report-item:hover {
    background: linear-gradient(90deg, #8D43A6 0%, #FF7E1F 100%);
    /* transform: translateY(-5px); */
    border-radius: 16px;

}

.report-item:hover .hover-content {
    max-height: 500px;
    opacity: 1;
}

.report-item:hover .description,
.report-item:hover .buttons {
    opacity: 1;
    transition-delay: 0.2s;
}

.report-item:hover .image-placeholder {
    opacity: 1;

}

.report-item:hover .content .year,
.report-item:hover .content .title {
    color: #fff;
}

/* Disable hover effects at 992px and above */
@media (max-width: 992px) {
    .report-item:hover {
        background: none;
        border-radius: 0;
    }

    .report-item:hover .hover-content {
        max-height: 0;
        opacity: 0;
    }

    .report-item:hover .description,
    .report-item:hover .buttons {
        opacity: 0;
        transition-delay: 0s;
    }

    .report-item:hover .image-placeholder {
        opacity: 0;
    }

    .report-item:hover .content .year,
    .report-item:hover .content .title {
        color: #242424;
    }

    .btn-primary:hover {
        background: #4cc9f0;
        transform: none;
        box-shadow: none;
    }

    .btn-secondary:hover {
        background: transparent;
        transform: none;
    }

    .list-item:hover {
        background: transparent;
    }
}

/* Active state for mobile */
.report-item.active {
    background: linear-gradient(90deg, #8D43A6 0%, #FF7E1F 100%);
    ;
}

.report-item.active .hover-content {
    max-height: 500px;
    opacity: 1;
}

.report-item.active .description,
.report-item.active .buttons {
    opacity: 1;
}

.report-item.active .image-placeholder {
    opacity: 1;
    height: 100%;
}

/* When list is shown */
.show-list .report-list {
    opacity: 1;
    transform: translateY(0);
    max-height: 250px;
    overflow-y: auto;
    overflow: auto;         /* Or scroll */
    scrollbar-width: none;  /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.show-list .image-placeholder {
    opacity: 0 !important;
    transform: rotate(-8deg) scale(0.8);
}

.toggle-icon {
    transition: all 0.3s ease;
    font-size: 1.1rem;
    width: 20px;
    display: inline-block;
    text-align: center;
}


.search-years {
    position: relative;
    display: inline;
}

.search-years input.search-by {
    border: 0;
    border-bottom: 1px solid rgba(172, 172, 172, 1);
    border-radius: 90px;
    width: 251px;
    height: 42px;
    position: relative;
    outline: 0;
    padding-left: 40px;
    padding-right: 10px;
    background-color: transparent;
}

.search-years::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    background: url('../images/icons/search-by.svg')no-repeat center;
    background-size: contain;
    z-index: 1;
    width: 17px;
    height: 20px;
}

.search-years input.search-by::placeholder {
    font-size: 14px;
    color: rgba(154, 154, 154, 1);
    font-weight: 500;
    margin-bottom: -10px;
}

.yearly-main .fixed-top-section .item-bottom .d-flex {
    justify-content: flex-start;
}

.special-link.toggle-list-btn {
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 14px;
}

.cta-button .text {
    font-size: 13px;
}

.list-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0px;
    width: 100%;
}

.acc-icons {
    display: none;
}


/* .quick-main .fixed-top-section .legacy-deatils h3{max-width: 310px;} */
.Annual_Report .yearly-main{background-color: #F9F9F9;}


/* Responsive design */
@media (min-width: 1599px) {
    .year {
        font-size: 30px;
    }

    .title {
        font-size: 24px;
    }

    .cta-button .text {
        font-size: 16px;
    }

    .list-item {
        font-size: 16px;
    }

    .special-link.toggle-list-btn {
        font-size: 16px;
    }

    .quick-main .fixed-top-section .right-item p{margin-bottom: 20px;}
}

@media (min-width: 1280px) {
    .Annual_Report .quick-main .fixed-top-section .item-top .right-item {
        margin-top: 40px;
    }

    .quick-main .fixed-top-section .legacy-deatils h3 {
        font-size: 28px;
    }

    .year {
        font-size: 22px;
    }
}

@media (max-width: 1598px) {
.quick-main .fixed-top-section .right-item p{margin-bottom: 30px;}
}

@media (max-width: 1288px) {
    .Annual_Report .quick-main .legacy-wrapper {
        padding: 40px;
    }

    .quick-main .fixed-top-section .legacy-deatils p {
        font-size: 14px;
    }

    .quick-main .fixed-top-section .legacy-deatils h3 {
        font-size: 28px;
    }

    .Annual_Report .quick-main .fixed-top-section .item-top .right-item {
        margin-top: 0;
    }

    .Annual_Report .quick-main .fixed-top-section .item-top {
        gap: 20px;
    }

        .quick-main .fixed-top-section .right-item p{margin-bottom: 0px;}

}

@media (max-width: 991px) {
    .report-item {
        flex-direction: column;
        border-radius: 20px;
        padding: 20px 0 !important;
        
    }
    .year{font-size: 22px;}
    .report-list{
        overflow: auto;         /* Or scroll */
        scrollbar-width: none;  /* Firefox */
        -ms-overflow-style: none; /* Internet Explorer 10+ */
      
    }
    


    .right-content {
        width: 100%;
        height: 300px;
    }

    .image-placeholder {
        width: 60%;
    }

    h1 {
        font-size: 2.8rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .legacy-wrapper .item-top {
        display: grid;
    }

    .Annual_Report .quick-main .legacy-wrapper .item-center img {
        width: 100%;
    }
    .Annual_Report .quick-main .legacy-wrapper{margin-top: 50px;}
    .fixed-top-section .right-item{margin-top: 0;}

    .image-placeholder {
        display: none;
    }

    .report-item.active .right-content .report-list {
        opacity: 1;
        transform: translateY(0%);
    }

    .list-column {
        grid-template-columns: auto;
        padding: 10px 0;
    }

    .list-item {
        padding: 0;
    }

    .content {
        display: block;
        padding: 0 20px;
    }

    .title {
        display: none;
    }

    .report-item.active .year {
        color: #fff
    }

    .report-item.active .title {
        display: block;
        font-size: 16px;
        color: #fff;
        margin: 20px 0 30px;
    }

    .report-item.active .description,
    .report-item.active .buttons {
        display: none;
    }

    .report-item.active .right-content {
        height: auto;
    }

    .fixed-top-section .item-bottom .d-flex {
        flex-direction: row;
    }

    .report-list {
        position: relative;
    }

    .bnr-btn .transparent-btn {
        width: 190px;
    }

    .list-item {
        margin-bottom: 0;
    }

    .report-list {
        padding: 20px;
    }

    .list-list {
        padding: 10px;
    }

    .right-content {
        display: none;
    }

    .report-item.active .right-content {
        display: block;
    }

    .reports-container {
        gap: 0;
        margin-bottom: 0;
    }

    .yearly-main .fixed2-top-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .report-item .acc-icons {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translate(0, -50%);
        font-size: 24px;
        color: #aeaeae;
        line-height: 1;

    }

    .report-item.active .acc-icons.plus-icon,
    .report-item .acc-icons.minus-icon {
        display: none;
    }

    .report-item.active .acc-icons.minus-icon {
        display: block;
        color: #fff;
        font-size: 34px;
        top: 32px;
        line-height: 0;
    }

    .list-column {
        min-width: auto;
        display: flex;
        width: 600px;
    }

    .list-list {
        gap: 20px;
        white-space: nowrap;
    }

    .report-item.active .right-content .report-list {
        padding-bottom: 0;
    }

    .report-item:hover {
        background: none;
    }

    .report-item.active {
        background: linear-gradient(90deg, #8D43A6 0%, #FF7E1F 100%);
        border-radius: 20px;
    }

    .report-item:hover .hover-content .description {
        display: none;
    }

    .report-item:hover .content .year,
    .report-item:hover .content .title {
        color: unset;
    }

    .report-item.active .content .title,
    .report-item.active .content .year {
        color: #fff;
    }

    .report-item .hover-content .bnr-btn {
        display: none;
    }

    .report-item.active .hover-content .bnr-btn {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-top: 40px;
    }

    .report-item.active .hover-content .bnr-btn .special-link.toggle-list-btn {
        padding-left: 14px;
    }

}


@media (max-width: 767px) {
    .buttons {
        flex-direction: column;
    }
    .fixed-top-section .item-bottom{margin-top: 40px;}

    .btn {
        width: 100%;
        justify-content: center;
    }
    /* .report-item .acc-icons{top: 44px;} */

    .list-column {
        min-width: 100%;
    }

    h1 {
        font-size: 2.3rem;
    }

    .year {
        font-size: 20px;
    }

    .title {
        font-size: 1.5rem;
    }

    .legacy-wrapper .item-top {
        display: block;
    }

    .Annual_Report .quick-main .legacy-wrapper {
        padding: 20px;
        margin-top: 50px;
    }

    .Annual_Report .quick-main .legacy-wrapper .item-center img {
        margin: 24px 0;
        border-radius: 16px;
    }

    .quick-main .fixed-top-section .legacy-deatils p {
        font-size: 16px;
    }

    .quick-main .fixed-top-section .legacy-deatils h3 {
        font-size: 32px;
    }

    .quick-main .fixed-top-section .right-item p {
        font-size: 16px;
    }

    .yearly-main .fixed-top-section .item-top {
        display: block;
    }

    .search-years input.search-by {
        width: 100%;
    }

    /* .title-details{display: none;} */
    .report-item {
        padding: 20px 0;
        border-radius: 20px;
    }

    .right-content {
        height: auto;
    }

    .report-item.active .right-content {
        height: auto;
    }

    .list-list {
        font-size: 12px;
    }

    .report-item.active .acc-icons.minus-icon{top: 30px;}
    .Annual_Report .bnr-btn .transparent-btn{width: 100%;}

    .special-link.toggle-list-btn{display: none;}
}

@media (max-width: 480px) {
    .fixed-top-section .item-bottom .d-flex {
        gap: 5px;
    }
    .year{font-size: 18px;}
}


@media (max-width: 375px) {
    .fixed-top-section .item-bottom .d-flex {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 20px;
    }

    .special-link.toggle-list-btn {
        padding-left: 14px;
        width: 190px;
    }

    .year{font-size: 16px;}
}






/* css krishna */

@media screen and (min-width:1599px) {

    .Annual_Report .quick-main .legacy-wrapper{padding: 90px 150px 90px 60px;}
    .Annual_Report .quick-main .fixed-top-section .legacy-deatils h3{max-width: 350px;}
    .Annual_Report .quick-main .legacy-wrapper .item-center img{width: 90%;}
    .year{font-size: 30px;}
}


@media screen and (max-width:767px) {

    .fixed2-top-section .item-top .right-item{margin-top: 30px;}
}