.tree-container {
            width: 100%;
            padding: 20px;
            position: relative;
            margin-top: 50px; /* Pushed down to test scroll effect */
        }

        /* Top Horizontal Connecting Line */
        .top-line {
            position: absolute;
            top: 20px;
            left: 10.8%;
            right: 10.8%;
            height: 1px;
            background-color: #ffffff;
        }

        .tree-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 15px;
            position: relative;
        }

        /* Individual Tree Column Setup */
        .column {
            display: flex;
            flex-direction: column;
            position: relative;
        }

        /* Staggered Heights to match image */
        .col-high { /* padding-top: 20px; */ }
        .col-low { padding-top: 280px; } 

        /* Vertical Drop Lines */
        .column::before {
            content: '';
            position: absolute;
            top: 0px; 
            left: 50%;
            width: 1px;
            background-color: #ffffff;
            z-index: 1;
        }
        .col-high::before { height: 35px; }
        .col-low::before { height: 315px; }

        /* Downward Arrowheads */
        .column::after {
            content: '';
            position: absolute;
            left: calc(50% - 4px);
            border-left: 4px solid transparent;
            border-right: 4px solid transparent;
            border-top: 6px solid #ffffff;
            z-index: 2;
        }
        .col-high::after { top: 35px; } 
        .col-low::after { top: 315px; } 

        .btn-wrapper {
            width: 100%;
            display: flex;
            justify-content: center;
            margin-top: 40px;
            position: relative;
            z-index: 3;
        }

        /* Category Buttons */
        .toggle-btn1 {
            background-color: #ffffff;
            color: #0b0b0b;
            border: none;
            padding: 11px 15px;
            font-weight: 500;
            font-size: 16px;
            cursor: default; /* Removed pointer since it is no longer clickable */
            width: 90%;
            border-radius: 2px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
            text-align: center;
        }
        
        /* Active button state when scroll opens the list */
        .toggle-btn1.btn-active {
            background-color: #eef2f9;
            box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
        }

        /* Expandable Content Container */
        .content1 {
            width: 100%;
            display: grid;
            grid-template-rows: 0fr; 
            opacity: 0;
            visibility: hidden;
            transition: grid-template-rows 0.5s cubic-bezier(0.25, 1, 0.5, 1), 
                        opacity 0.4s ease-in-out,
                        visibility 0.5s;
            position: relative;
        }

        .content1.active {
            grid-template-rows: 1fr; 
            opacity: 1;
            visibility: visible;
        }

        .content-inner {
            overflow: hidden;
        }

        /* Sub-items List Styles */
       .tree-grid ul {
            list-style: none;
            padding-top: 20px;
            padding-bottom: 10px;
            width: 100%;
            position: relative;
            z-index: 2;
        }

        /* Vertical Trunk Line inside the list */
        .tree-grid ul::before {
            content: '';
            position: absolute;
            top: 0px;
            left: 20px;
            /* bottom: 30px;  */
            width: 1px;
            background-color: rgba(255, 255, 255, 0.4);
        }

        .tree-grid li {
            position: relative;
            padding-left: 45px;
            margin-bottom: 25px;
            text-align: left;
            padding-right: 10px;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.4s ease-out;
        }

        .content1.active li {
            opacity: 1;
            transform: translateY(0);
        }
        
        .content.active .tree-grid li:nth-child(1) { transition-delay: 0.2s; }
        .content.active li:nth-child(2) { transition-delay: 0.25s; }
        .content.active li:nth-child(3) { transition-delay: 0.3s; }
        .content.active li:nth-child(4) { transition-delay: 0.355s; }

        /* Horizontal Branch Line */
        .tree-grid li::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 20px;
            width: 15px;
            height: 1px;
            background-color: rgba(255, 255, 255, 0.4);
        }

        /* Circle Dot Indicator */
        .tree-grid li::after {
            content: '';
            position: absolute;
            top: 7.5px; 
            left: 35px;
            width: 6px;
            height: 6px;
            background-color: #ffffff;
            border-radius: 50%;
        }

        /* Text Styling */
        .item-title {
            font-weight: 400;
            font-size: 14.5px;
            display: block;
            color: #ffffff;
            line-height: 1.3;
        }

        .item-desc {
            font-size: 12px;
            color: #a2add0;
            display: block;
            margin-top: 6px;
            line-height: 1.4;
        }
        .card-btn1::before{
            bottom:83px;
        }
        .card-btn2::before{
            bottom:119px;
        }
        .card-btn3::before{
            bottom:66px;
        }
        .card-btn4::before{
           bottom: 83px;
        }
        .card-btn5::before{
            bottom: 83px;
        }

        /* Tablet and Mobile Responsive Adjustments */
        @media (max-width: 1024px) {
            .tree-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .top-line, .column::before, .column::after {
                display: none; 
            }
            .col-high, .col-low {
                padding-top: 0;
            }
            .btn-wrapper {
                margin-top: 0 !important;
            }
            .toggle-btn1 {
                width: 100%;
            }
        }


/* recom card css start */

:root {
    --report-lavender: #ececf4;
    --report-beige: #fdfaf0;
    --report-mint: #f2f7f4;
    --report-rose: #fff3f2;
    --report-sky: #ebf5fa;
    --report-text: #1a1a1a;
}

.report-heat-wrapper {
    max-width: 1350px;
    width: 100%;
    margin: 40px auto;
    padding: 20px;
}

.report-heat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns as per image */
    gap: 15px;
}

.report-card-box {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    height: fit-content;
}

/* Color Themes */
.report-theme-lavender { background-color: var(--report-lavender); }
.report-theme-beige { background-color: var(--report-beige); }
.report-theme-mint { background-color: var(--report-mint); }
.report-theme-rose { background-color: var(--report-rose); }
.report-theme-sky { background-color: var(--report-sky); }

.report-card-head {
    position: relative;
}

.report-card-img {
    width: 100%;
    /* aspect-ratio: 16 / 9; */
    aspect-ratio: 20 / 9;
    object-fit: cover;
    display: block;
    mix-blend-mode: multiply; /* Helps achieve that tinted photo look */
    opacity: 0.9;
    padding: 20px 20px 10px;
}

.report-card-title {
    margin: 0;
    padding: 18px 20px;
    font-size: 22px;
    font-weight: 500;
    color: var(--report-text);
    line-height: 1.3;
}

/* Accordion Logic Content */
.report-card-body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 20px;
    /* transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); */
    transition: max-height 1.5s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 1s ease-in-out,
                padding 0.8s ease;
}

.report-card-box.report-is-open .report-card-body {
    /* max-height: 500px; */
    max-height: 1000px;
    opacity: 1;
    padding: 0 20px 25px 20px;
}

.report-body-text {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 15px;
}

.report-sep {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.1);
    margin: 12px 0;
}

.report-body-details p {
    font-size: 16px;
    margin: 8px 0;
}

/* Responsive: 1 column on mobile */
@media (max-width: 768px) {
    .report-heat-grid {
        grid-template-columns: 1fr;
    }

    .card-btn1::before {
    bottom: 68px;
}
.card-btn5::before {
    bottom: 68px;
}

.card-btn3::before {
    bottom: 68px;
}
.card-btn4::before {
    bottom: 68px;
}
.card-btn2::before {
    bottom: 68px;
}

}


@media (max-width: 480px) {

.card-btn1::before, .card-btn4::before, .card-btn2::before {
    bottom: 85px;
}
    .card-btn5::before, .card-btn3::before {
        bottom: 69px;
    }

}
/* recom card css end */