.features-section {
    padding: 75px 0;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        rgba(150, 188, 51, 0.03) 0px,
        rgba(150, 188, 51, 0.03) 1px,
        transparent 1px,
        transparent 10px
    );
    pointer-events: none;
    will-change: transform;
    transform: translateZ(0);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-column {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.feature-column h3 {
    color: #96BC33;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.interval {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(46, 204, 113, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-left: 0.5rem;
    white-space: nowrap;
}

.feature-item strong {
    color: #fff;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
/*     background: #96BC33; */
    opacity: 0.5;
}

.feature-header {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-feature {
    font-weight: 500;
}

.header-interval {
    margin-right: 0.5rem;
}

@media (max-width: 992px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Time Series Demo Styles */
.time-series-showcase {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin: 2rem 0;
}

.time-series-showcase h3 {
    color: #555;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.time-series-showcase h3 i {
    color: #2ecc71;
    font-size: 1.4rem;
}

.graph-container {
    width: 100%;
    height: 300px;
    margin-bottom: 1rem;
}

.graph-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 3px;
}

.legend-color.cpu { background: #2ecc71; }
.legend-color.memory { background: #3498db; }
.legend-color.disk { background: #9b59b6; }
.legend-color.success { background: #2ecc71; }
.legend-color.timeout { background: #e74c3c; }
.legend-color.online { background: #2ecc71; }
.legend-color.storage { background: #f1c40f; }

.legend-label {
    color: #666;
    font-size: 0.8rem;
}

.time-series-highlight {
    background: rgba(46, 204, 113, 0.08);
    border: 1px solid rgba(46, 204, 113, 0.2);
    border-left: 4px solid #2ecc71;
    padding: 1.5rem;
    margin: 1.5rem auto;
    max-width: 800px;
    border-radius: 12px;
    color: #666;
    line-height: 1.6;
    box-shadow: 0 2px 4px rgba(46, 204, 113, 0.05);
}

.time-series-highlight .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
}

.time-series-highlight .icon-wrapper i.fa-clock-rotate-left,
.time-series-highlight .icon-wrapper i.fa-clock-rotate-left svg {
    color: #2ecc71;
    font-size: 4rem !important;
    height: 4rem !important;
    width: 4rem !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.time-series-highlight .icon-wrapper .svg-inline--fa {
    height: 4rem !important;
    width: 4rem !important;
    vertical-align: 0 !important;
}

.time-series-highlight .highlight-text {
    margin: 0;
    padding: 0.5rem 0;
}

.time-series-showcase h3 .planned-badge {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    border: 1px solid rgba(46, 204, 113, 0.2);
    margin-left: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}




.metrics-intro {
    /*margin-bottom: 3rem;*/
    text-align: center;
}

    .metrics-intro h2 {
        color: #fff;
        margin-bottom: 1rem;
        font-weight: 400;
    }

    .metrics-intro p {
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 2rem;
        font-weight: 300;
        font-size: 1rem;
        line-height: 1.6;
    }



.legend-color.online {
    background: #2ecc71;
}

.legend-color.storage {
    background: #f1c40f;
}

.retention-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-top: 1.5rem;
    padding-top: 0.5rem;
}

.retention-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

    .retention-badge i {
        font-size: 1rem;
    }

    .retention-badge.detailed {
        background: rgba(52, 152, 219, 0.1);
        color: #3498db;
        border: 1px solid rgba(52, 152, 219, 0.2);
    }

    .retention-badge.summary {
        background: rgba(46, 204, 113, 0.1);
        color: #2ecc71;
        border: 1px solid rgba(46, 204, 113, 0.2);
    }

.tooltip {
    font-family: var(--bs-body-font-family);
}

    .tooltip .tooltip-inner {
        max-width: 300px;
        padding: 8px 12px;
        background-color: rgba(52, 73, 94, 0.98);
        font-size: 0.9rem;
        line-height: 1.4;
        text-align: left;
    }


/* Live Features */
.feature-column:nth-child(1) .feature-item {
    border-left: 3px solid #2ecc71; /* Green */
    background: rgba(255, 255, 255, 0.02);
}

/* In Development Features */
.feature-column:nth-child(2) .feature-item {
    border-left: 3px solid #3498db; /* Blue */
    background: rgba(255, 255, 255, 0.02);
}

/* Planned Features */
.feature-column:nth-child(3) .feature-item {
    border-left: 3px solid #f39c12; /* Amber */
    background: rgba(255, 255, 255, 0.02);
}

/* Live Features Column Header */
.feature-column:nth-child(1) h3 {
    color: #2ecc71; /* Green */
}

/* In Development Column Header */
.feature-column:nth-child(2) h3 {
    color: #3498db; /* Blue */
}

/* Planned Features Column Header */
.feature-column:nth-child(3) h3 {
    color: #f39c12; /* Amber */
}




/*RESPONSIVE STYLES PER BREAK POINT*/

/* SM Screen (600px and up) */
@media (min-width: 600px) {

}

/* MD Breakpoint (tablets, 768px and up) */
@media (min-width: 768px) {
    .metrics-intro p {
        font-size: 1.1rem;
    }
}


/* LG Breakpoint (tablets, 992px and up) */
@media (min-width: 992px) {
    .metrics-intro p {
        font-size: 1.2rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}


/* Normal Screen 18 Inch - 19 Inch ( (Resolution 1366x768 ) 1349px and up) */
@media (min-width: 1349px) {
    .metrics-intro p {
        font-size: 1.4rem;
        max-width: 1000px;
    }
}


/*High Definition Plus (HD+) ( (Resolution 1600x900), 1600px and up) */
@media (min-width: 1600px) {
}

/*Extra Large Screen 23 Inch ( (Resolution 1920x1080 ) 1800px and up) */
@media (min-width: 1800px) {
    .metrics-intro p {
        font-size: 1.5rem;
        max-width: 1200px;
    }
}

/*Extra Large Screen 27 Inch ( (Resolution 2560x1440 ) 2560px and up) */
@media (min-width: 2560px) {

    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1620px;
    }
}
