/* ==========================================
   ENHANCED MODERN DARK + GOLD THEME
========================================== */
.tech-dark-section p {
    text-align: start;
}

/* Main Background */
.tech-dark-section {
    background: linear-gradient( 180deg, #000000 0%, #111111 100% );
    color: var(--gt-white);
    position: relative;
    overflow: hidden;
}

    /* Glow Effects */
    .tech-dark-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient( circle at top right, rgba(221, 31, 37, 0.15), transparent 30% ), radial-gradient( circle at bottom left, rgba(244, 197, 66, 0.08), transparent 25% );
        pointer-events: none;
    }

/* Cards */
.tech-card,
.tech-feature-card,
.tech-info-box {
    background: linear-gradient( 145deg, rgba(29, 29, 29, 0.95), rgba(18, 18, 18, 0.98) );
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--gt-box-shadow);
    backdrop-filter: blur(10px);
    transition: 0.35s ease;
}

    /* Hover */
    .tech-card:hover,
    .tech-feature-card:hover,
    .tech-info-box:hover {
        transform: translateY(-5px);
        border-color: rgba(244, 197, 66, 0.3);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }

/* Main Title */
.tech-title {
    color: var(--gt-white);
    line-height: 1.1;
}

    .tech-title span {
        color: var(--gt-gold);
    }

/* Text */
.tech-text {
    color: rgba(255, 255, 255, 0.68);
}

/* Badge */
.tech-badge {
    background: rgba(221, 31, 37, 0.12);
    border: 1px solid rgba(221, 31, 37, 0.25);
    color: var(--gt-white);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Icon Box */
.tech-icon-box {
    width: 62px;
    height: 62px;
    background: linear-gradient( 145deg, rgba(221, 31, 37, 0.18), rgba(244, 197, 66, 0.12) );
    border: 1px solid rgba(244, 197, 66, 0.15);
    color: var(--gt-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

/* Circle */
.tech-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient( 145deg, rgba(221, 31, 37, 0.15), rgba(244, 197, 66, 0.08) );
    border: 1px solid rgba(244, 197, 66, 0.15);
    color: var(--gt-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

/* Section Titles */
.tech-section-heading {
    color: var(--gt-white);
}

.tech-section-subtitle {
    color: rgba(255, 255, 255, 0.55);
}

/* Feature Items */
.tech-feature-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--gt-white);
    transition: 0.3s ease;
}

    .tech-feature-item:hover {
        background: linear-gradient( 145deg, rgba(244, 197, 66, 0.08), rgba(221, 31, 37, 0.05) );
        transform: translateX(4px);
    }

/* Small Badge */
.tech-small-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(244, 197, 66, 0.12);
    color: var(--gt-white);
    transition: 0.3s ease;
}

    .tech-small-badge:hover {
        border-color: rgba(244, 197, 66, 0.4);
        color: var(--gt-gold);
    }

/* Highlight */
.tech-highlight {
    color: var(--gt-gold);
    width:100%;
}

/* Table Wrapper */
.modern-table-wrapper {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    
}

/* Table */
.tech-table {
    --bs-table-bg: transparent;
    --bs-table-color: var(--gt-white);
    margin-bottom: 0;
}

    /* Table Header */
    .tech-table thead th {
        background: linear-gradient( 145deg, rgba(221, 31, 37, 0.22), rgba(244, 197, 66, 0.14) );
        color: var(--gt-white);
        border-color: rgba(255, 255, 255, 0.08);
        padding: 1rem;
        font-size: 0.92rem;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }

    /* Table Body */
    .tech-table tbody td {
        border-color: rgba(255, 255, 255, 0.05);
        padding: 1rem;
        color: rgba(255, 255, 255, 0.82);
        vertical-align: middle;
    }

    /* Row Hover */
    .tech-table tbody tr {
        transition: 0.25s ease;
    }

        .tech-table tbody tr:hover {
            background: rgba(255, 255, 255, 0.03);
        }

/* Highlight Column */
.highlight-column {
    background: linear-gradient( 180deg, rgba(244, 197, 66, 0.08), rgba(244, 197, 66, 0.03) );
    color: var(--gt-gold) !important;
}

/* Alert */
.comparison-alert {
    background: linear-gradient( 145deg, rgba(244, 197, 66, 0.08), rgba(221, 31, 37, 0.05) );
    border: 1px solid rgba(244, 197, 66, 0.15);
}

.alert-icon {
    color: var(--gt-gold);
    font-size: 1.2rem;
    margin-top: 2px;
}

/* Footer Badge */
.performance-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--gt-white);
}

/* Indicator Dot */
.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gt-theme);
}

    .indicator-dot.gold {
        background: var(--gt-gold);
    }

/* Responsive */
@media (max-width: 991px) {
    .tech-card, .tech-feature-card{
        padding:8px !important;
    }
    .tech-title {
        font-size: 2.4rem;
    }

    .tech-circle {
        width: 90px;
        height: 90px;
        font-size: 2rem;
    }
    .modern-table-wrapper{
        overflow:scroll !important;
    }

    .tech-table thead th,
    .tech-table tbody td {
        padding: 0.85rem;
    }

}
