﻿body {
    background: #f7f9fc;
}

/*=============================
Hero Banner
==============================*/

.conference-banner {
    background: linear-gradient(rgba(18,74,122,.90),rgba(18,74,122,.90)), url('../images/breadcrumb.jpg');
    background-size: cover;
    background-position: center;
    padding: 90px 0;
    text-align: center;
    color: #fff;
}

.title-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}
    .conference-banner h1 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .conference-banner p {
        font-size: 20px;
        margin: 0;
    }
.center-cell {
    text-align: center;
    vertical-align: middle !important;
}

.faculty-name {
    text-align: center;
    vertical-align: middle !important;
}

/*=============================
Section
==============================*/

.conference-section {
    padding: 70px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

    .section-title h2 {
        color: #195c90;
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .section-title p {
        width: 80%;
        margin: auto;
        color: #666;
        line-height: 30px;
        font-size: 17px;
    }

/*=============================
Table
==============================*/

.table-responsive {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}
.conference-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.conference-table th {
    background: #1d4f7d;
    color: #fff;
    padding: 15px;
    border: 1px solid #fff;
    text-align: center;
    font-size: 15px;
}

.conference-table td {
    padding: 14px;
    border: 1px solid #d9d9d9;
    vertical-align: top;
    font-size: 14px;
    line-height: 1.7;
    text-align:center;
}

.conference-table tbody tr:nth-child(even) {
    background: #f8fbff;
}

.table-responsive {
    overflow-x: auto;
}
/*=============================
Badges
==============================*/

.badge-success {
    background: #28a745;
    color: #fff;
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}

.badge-primary {
    background: #195c90;
    color: #fff;
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}

/*=============================
Responsive
==============================*/

@media(max-width:991px) {

    .section-title p {
        width: 100%;
    }

    .conference-banner {
        padding: 60px 0;
    }

        .conference-banner h1 {
            font-size: 32px;
        }

        .conference-banner p {
            font-size: 17px;
        }

    .conference-table {
        min-width: 900px;
    }
}
/* =========================================================
   CONFERENCE SECTION HEADING
========================================================= */

.conference-section-heading {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 10px 0 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e6eaf0;
}

    .conference-section-heading .heading-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        background: #eef5ff;
        color: #1769aa;
        font-size: 20px;
    }

    .conference-section-heading h2 {
        margin: 0;
        color: #1d3557;
        font-size: 26px;
        font-weight: 700;
    }

    .conference-section-heading p {
        margin: 5px 0 0;
        color: #718096;
        font-size: 14px;
    }

.organized-heading {
    margin-top: 55px;
}

.organized-icon {
    background: #f1f8f3 !important;
    color: #2e7d32 !important;
}


/* =========================================================
   TABLE
========================================================= */

.conference-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #ffffff;
    border: 1px solid #e5e9ef;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(25, 50, 80, 0.05);
}

    .conference-table thead th {
        background: #f5f8fc;
        color: #34495e;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .3px;
        padding: 15px 14px;
        border-bottom: 1px solid #e2e7ed;
    }

    .conference-table tbody td {
        padding: 16px 14px;
        color: #4a5568;
        font-size: 14px;
        border-bottom: 1px solid #edf0f4;
        vertical-align: middle;
    }

    .conference-table tbody tr:last-child td {
        border-bottom: none;
    }

    .conference-table tbody tr {
        transition: background .2s ease;
    }

        .conference-table tbody tr:hover {
            background: #f8fbff;
        }


    /* =========================================================
   FACULTY
========================================================= */

    .conference-table .faculty-name {
        color: #1d3557;
        font-weight: 600;
        line-height: 1.5;
    }


    /* =========================================================
   EVENT TITLE
========================================================= */

    .conference-table .event-title {
        color: #1769aa;
        font-weight: 600;
        line-height: 1.5;
    }


    /* =========================================================
   DATE
========================================================= */

    .conference-table .conference-date {
        display: inline-block;
        padding: 5px 10px;
        background: #f1f5f9;
        color: #475569;
        border-radius: 6px;
        font-size: 12px;
        font-weight: 600;
        white-space: nowrap;
    }


    /* =========================================================
   TYPE BADGE
========================================================= */

    .conference-table .type-badge {
        display: inline-block;
        padding: 5px 9px;
        border-radius: 20px;
        background: #eef5ff;
        color: #1769aa;
        font-size: 11px;
        font-weight: 600;
    }


    /* =========================================================
   ACADEMIC DETAILS
========================================================= */

    .conference-table .academic-details {
        color: #5f6b7a;
        line-height: 1.7;
    }

        .conference-table .academic-details strong {
            color: #34495e;
        }

.credit-hours {
    display: inline-block;
    margin-top: 4px;
    color: #2e7d32;
    font-size: 12px;
    font-weight: 600;
}


/* =========================================================
   NO DATA
========================================================= */

.conference-table .no-data {
    padding: 35px 15px;
    text-align: center;
    color: #8995a5;
    font-size: 14px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .conference-section-heading {
        gap: 12px;
        margin-top: 30px;
    }

        .conference-section-heading .heading-icon {
            width: 42px;
            height: 42px;
            min-width: 42px;
        }

        .conference-section-heading h2 {
            font-size: 21px;
        }

        .conference-section-heading p {
            font-size: 13px;
        }

    .conference-table {
        min-width: 950px;
    }
}