/* ===============================
   Page Spacing
================================ */

.pbmit-title-bar-wrapper {
    /* margin-bottom: 60px; */
    margin-bottom: 40px;
}

/* ===============================
   Section Background
================================ */

.about-area {
    background: linear-gradient(180deg, #f8fafc, #eef2f7);
    padding-top: 40px;
}

/* ===============================
   Section Heading
================================ */

.about-content h2 {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    color: #0f172a;
    position: relative;
    margin-top: 20px;
    /* margin-bottom: 40px; */
    margin-bottom: 0px;
    /* padding-bottom: 20px; */
    padding-bottom: 10px;
}

/* ===============================
   Table Container
================================ */

.table-responsive {
    background: #ffffff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    overflow-x: auto;
    margin-top: 20px;
    margin-bottom: 40px;
}

/* ===============================
   Table Base
================================ */

.table {
    border-collapse: separate;
    border-spacing: 0;
    font-size: 14px;
}

/* ===============================
   TABLE HEADER – HOVER UNDERLINE
================================ */

.table thead th {
    background: linear-gradient(180deg, #020617, #1e293b);
    color: #ffffff;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 16px 12px;
    border: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Hidden underline */
.table thead th::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 6px;
    width: 0;
    height: 2px;
    /* background: linear-gradient(90deg, #0ea5e9, #2563eb); */
    background:#fff;
    transform: translateX(-50%);
    transition: width 0.35s ease;
}

/* Show underline on hover */
.table thead th:hover::after {
    width: 70%;
}

/* Optional text color change */
.table thead th:hover {
    /* color: #38bdf8; */
    color:#f5f5f5;
}

/* Rounded header corners */
.table thead th:first-child {
    border-top-left-radius: 12px;
}
.table thead th:last-child {
    border-top-right-radius: 12px;
}

/* ===============================
   TABLE BODY
================================ */

.table tbody td {
    padding: 14px 12px;
    color: #334155;
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
    vertical-align: middle;
}

/* Zebra rows */
.table-striped tbody tr:nth-child(odd) td {
    background: #f8fafc;
}

/* Row hover */
.table tbody tr:hover td {
    background: #e0f2fe;
    transition: background 0.25s ease;
}

/* ===============================
   TOTAL ROW
================================ */

.table tbody tr td {
    background: linear-gradient(90deg, #e5e7eb, #f8fafc);
    /* font-weight: 800; */
    font-weight: 500;
    color: #020617;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 991px) {
    .about-content h2 {
        font-size: 24px;
    }

    .table thead th,
    .table tbody td {
        font-size: 12px;
        padding: 10px;
    }
}
