﻿
#section-01 {
    background: #fff;
}

#section-01 .content-wrap {
    max-width: 1100px;
    margin: 0 auto;
}

#section-01 .page-title {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
}

#section-01 .page-context {
    width: 100%;
}

#section-01 .about-content {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    border-left: 4px solid #006633;
}

    #section-01 .about-content h4 {
        font-size: 24px;
        font-weight: 600;
        color: #006633;
    }

    #section-01 .about-content p {
        font-size: 16px;
        line-height: 1.8;
        color: #555;
        text-align: justify;
        margin-bottom: 15px;
    }

@media (max-width: 767px) {

    #section-01 {
        padding-top: 30px;
        padding-bottom: 30px;
    }

        #section-01 .page-title {
            font-size: 26px;
        }

        #section-01 .about-content {
            padding: 20px;
        }

            #section-01 .about-content h4 {
                font-size: 21px;
            }

            #section-01 .about-content p {
                font-size: 15px;
                line-height: 1.7;
                text-align: left;
            }
}

.faculty-staff-table {
    font-size: 14px !important;
}

    .faculty-staff-table th,
    .faculty-staff-table td {
        font-size: 14px !important;
        vertical-align: middle;
    }

    .faculty-staff-table th {
        font-weight: 600;
    }

    .faculty-staff-table td {
        font-weight: 400;
    }

    .faculty-staff-table a {
        font-size: 14px !important;
    }

    .faculty-staff-table .dept-heading {
        font-weight: 600;
        font-size: 14px !important;
    }

.faculty-card-title {
    font-size: 20px !important;
}


/* =========================================
       Departments Section
    ========================================= */

.departments-section {
    background: #f7f9fc;
    font-family: Arial, Helvetica, sans-serif;
}


/* =========================================
       Section Header
    ========================================= */

.section-title-wrapper {
    max-width: 750px;
    margin: 0 auto;
}

.section-subtitle {
    display: inline-block;
    color: #0d6efd;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-title {
    margin: 0;
    color: #222;
    font-size: 32px;
    font-weight: 700;
}

.title-line {
    width: 55px;
    height: 3px;
    background: #0d6efd;
    margin: 14px auto;
    border-radius: 10px;
}

.section-description {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.7;
    margin: 0 auto;
}


/* =========================================
       Department Card
    ========================================= */

.department-card {
    position: relative;
    display: flex;
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

    .department-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
    }


/* =========================================
       Department Icon
    ========================================= */

.department-icon {
    width: 85px;
    min-width: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0d6efd;
    color: #ffffff;
    font-size: 30px;
}


/* =========================================
       Department Content
    ========================================= */

.department-content {
    flex: 1;
    padding: 24px;
}

.department-label {
    color: #0d6efd;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.department-content h4 {
    color: #212529;
    font-size: 19px;
    font-weight: 600;
    margin-top: 5px;
    margin-bottom: 18px;
}


/* =========================================
       Department List
    ========================================= */

.department-list {
    border-top: 1px solid #edf0f4;
}

.department-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 0;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #edf0f4;
    transition: all 0.25s ease;
}

    .department-item:last-child {
        border-bottom: 0;
    }

    .department-item:hover {
        color: #0d6efd;
        padding-left: 5px;
    }


/* =========================================
       Number
    ========================================= */

.department-number {
    width: 30px;
    min-width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef5ff;
    color: #0d6efd;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
}


/* =========================================
       Department Name
    ========================================= */

.department-name {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}


/* =========================================
       Arrow
    ========================================= */

.department-arrow {
    color: #adb5bd;
    font-size: 16px;
    transition: all 0.25s ease;
}

.department-item:hover .department-arrow {
    color: #0d6efd;
    transform: translateX(4px);
}


/* =========================================
       Responsive
    ========================================= */

@media (max-width: 767px) {

    .departments-section {
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }

    .section-title {
        font-size: 26px;
    }

    .section-description {
        font-size: 13px;
    }

    .department-card {
        display: block;
    }

    .department-icon {
        width: 100%;
        height: 65px;
        min-width: 100%;
    }

    .department-content {
        padding: 20px;
    }

        .department-content h4 {
            font-size: 18px;
        }

    .department-name {
        font-size: 13px;
    }
}

/* ==============================
           Courses Section
        ============================== */

.courses-section {
    background: #f7f9fc;
    font-family: Arial, Helvetica, sans-serif;
}

/* ==============================
           Section Header
        ============================== */

.section-header {
    text-align: center;
    margin-bottom: 35px;
}

.section-subtitle {
    display: inline-block;
    color: #0d6efd;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-title {
    color: #212529;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.title-line {
    width: 55px;
    height: 3px;
    background: #0d6efd;
    border-radius: 5px;
    margin: 0 auto 15px;
}

/* ==============================
           Course Card
        ============================== */

.course-card {
    background: #ffffff;
    border: 1px solid #e7ebf0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

/* ==============================
           Course Card Header
        ============================== */

.course-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: #0d6efd;
    color: #ffffff;
}

.course-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    font-size: 23px;
}

.course-header h4 {
    margin: 0;
    font-size: 19px;
    font-weight: 600;
}

.course-header p {
    margin: 3px 0 0;
    font-size: 12px;
    opacity: 0.9;
}

/* ==============================
           Table
        ============================== */

.course-table {
    margin-bottom: 0;
    font-size: 14px;
}

    .course-table thead th {
        background: #f1f5f9;
        color: #343a40;
        font-size: 13px;
        font-weight: 600;
        padding: 13px 15px;
        vertical-align: middle;
        border-bottom: 2px solid #dee2e6;
    }

    .course-table tbody td {
        padding: 13px 15px;
        font-size: 14px;
        vertical-align: middle;
        color: #444;
    }

    .course-table tbody tr {
        transition: all 0.2s ease;
    }

        .course-table tbody tr:hover {
            background-color: #f8fbff;
        }

/* Serial Number */

.serial-number {
    width: 42px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef5ff;
    color: #0d6efd;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

/* Course Name */

.course-name {
    font-weight: 500;
    color: #212529;
}

/* Intake */

.intake {
    font-weight: 600;
    color: #0d6efd;
}

/* ==============================
           Total Row
        ============================== */

.total-row {
    background: #f1f5f9 !important;
}

    .total-row td {
        font-weight: 700 !important;
        color: #212529 !important;
        border-top: 2px solid #dee2e6;
    }

.total-badge {
    display: inline-block;
    padding: 5px 14px;
    background: #0d6efd;
    color: #ffffff;
    border-radius: 20px;
    font-size: 13px;
}

/* ==============================
           Responsive
        ============================== */

@media (max-width: 767px) {

    .courses-section {
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }

    .section-title {
        font-size: 26px;
    }

    .course-header {
        padding: 16px;
    }

        .course-header h4 {
            font-size: 17px;
        }

    .course-table {
        font-size: 13px;
    }

        .course-table thead th {
            font-size: 12px;
            padding: 10px;
        }

        .course-table tbody td {
            font-size: 13px;
            padding: 10px;
        }

    .course-name {
        white-space: normal;
    }
}

/* =========================================
           General
        ========================================= */

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #444;
    background: #f7f9fc;
}

.placement-section {
    padding: 50px 0;
}


/* =========================================
           Section Header
        ========================================= */

.section-header {
    text-align: center;
    margin-bottom: 35px;
}

.section-subtitle {
    display: inline-block;
    color: #0d6efd;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-title {
    color: #212529;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 12px;
}

.title-line {
    width: 55px;
    height: 3px;
    background: #0d6efd;
    border-radius: 10px;
    margin: 0 auto;
}


/* =========================================
           Content Card
        ========================================= */

.placement-card {
    background: #ffffff;
    border: 1px solid #e5e9ef;
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

    .placement-card:hover {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }

.card-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #212529;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 18px;
}

.card-heading-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef5ff;
    color: #0d6efd;
    border-radius: 9px;
    font-size: 20px;
}

.placement-card p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
    text-align: justify;
}


/* =========================================
           Recruiters
        ========================================= */

.recruiter-box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.recruiter-badge {
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    background: #f5f8fc;
    border: 1px solid #e1e7ef;
    border-radius: 6px;
    color: #343a40;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.25s ease;
}

    .recruiter-badge:hover {
        background: #0d6efd;
        border-color: #0d6efd;
        color: #ffffff;
        transform: translateY(-2px);
    }


/* =========================================
           Achievements
        ========================================= */

.achievement-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .achievement-list li {
        position: relative;
        padding: 12px 15px 12px 40px;
        margin-bottom: 8px;
        background: #f8fafc;
        border-left: 3px solid #0d6efd;
        border-radius: 5px;
        color: #444;
        font-size: 14px;
        line-height: 1.6;
    }

        .achievement-list li::before {
            content: "\f26a";
            font-family: "bootstrap-icons";
            position: absolute;
            left: 13px;
            top: 13px;
            color: #0d6efd;
            font-size: 15px;
        }


/* =========================================
           Training Highlight
        ========================================= */

.training-highlight {
    background: #eef5ff;
    border: 1px solid #d8e7ff;
    border-radius: 8px;
    padding: 18px;
    margin-top: 18px;
}

    .training-highlight strong {
        color: #0d6efd;
    }


/* =========================================
           Training Programs
        ========================================= */

.training-programs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.training-program {
    padding: 9px 13px;
    background: #ffffff;
    border: 1px solid #dce3eb;
    border-radius: 6px;
    font-size: 13px;
    color: #444;
}


/* =========================================
           Contact Card
        ========================================= */

.contact-card {
    background: #0d6efd;
    color: #ffffff;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.18);
}

    .contact-card .card-heading {
        color: #ffffff;
    }

    .contact-card .card-heading-icon {
        background: rgba(255, 255, 255, 0.15);
        color: #ffffff;
    }

.contact-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-designation {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 18px;
}

.contact-institute {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

    .contact-detail i {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 50%;
    }

    .contact-detail a {
        color: #ffffff;
        text-decoration: none;
    }

        .contact-detail a:hover {
            text-decoration: underline;
        }


/* =========================================
           Responsive
        ========================================= */

@media (max-width: 767px) {

    .placement-section {
        padding: 35px 0;
    }

    .section-title {
        font-size: 26px;
    }

    .placement-card,
    .contact-card {
        padding: 20px;
    }

    .card-heading {
        font-size: 18px;
    }

    .placement-card p {
        font-size: 13px;
        text-align: left;
    }

    .recruiter-badge {
        font-size: 12px;
        padding: 8px 10px;
    }

    .achievement-list li {
        font-size: 13px;
        padding-left: 35px;
    }

    .contact-name {
        font-size: 18px;
    }
}

.campus-section {
    padding: 50px 0;
}


/* =========================================
           Section Header
        ========================================= */

.section-header {
    text-align: center;
    margin-bottom: 35px;
}

.section-subtitle {
    display: inline-block;
    color: #0d6efd;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-title {
    margin: 0;
    color: #212529;
    font-size: 30px;
    font-weight: 700;
}

.title-line {
    width: 55px;
    height: 3px;
    background: #0d6efd;
    border-radius: 10px;
    margin: 14px auto 0;
}


/* =========================================
           Common Card
        ========================================= */

.campus-card {
    background: #ffffff;
    border: 1px solid #e5e9ef;
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

    .campus-card:hover {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }


/* =========================================
           Card Heading
        ========================================= */

.card-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #212529;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.card-heading-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef5ff;
    color: #0d6efd;
    border-radius: 9px;
    font-size: 20px;
}


/* =========================================
           Site Description
        ========================================= */

.site-description {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin: 0;
    text-align: justify;
}


/* =========================================
           Facilities
        ========================================= */

.facility-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.facility-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #f8fafc;
    border: 1px solid #e9edf2;
    border-radius: 7px;
    font-size: 14px;
    color: #444;
    transition: all 0.25s ease;
}

    .facility-item:hover {
        background: #eef5ff;
        border-color: #cfe0ff;
        transform: translateY(-2px);
    }

.facility-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9f2ff;
    color: #0d6efd;
    border-radius: 50%;
    font-size: 13px;
}


/* =========================================
           Scholarship Items
        ========================================= */

.facility-category {
    margin-top: 25px;
    margin-bottom: 12px;
    color: #0d6efd;
    font-size: 16px;
    font-weight: 600;
}


/* =========================================
           Committee Card
        ========================================= */

.committee-card {
    background: #ffffff;
    border: 1px solid #e5e9ef;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-top: 2%;
}

    .committee-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    }

.committee-header {
    padding: 17px 20px;
    background: #0d6efd;
    color: #ffffff;
}

.committee-number {
    display: inline-block;
    width: 27px;
    height: 27px;
    line-height: 27px;
    text-align: center;
    background: rgba(255,255,255,0.18);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    margin-right: 7px;
}

.committee-title {
    font-size: 17px;
    font-weight: 600;
}

.committee-order {
    display: block;
    margin-top: 7px;
    font-size: 11px;
    opacity: 0.9;
}

.committee-body {
    padding: 15px 20px;
}


/* =========================================
           Committee Members
        ========================================= */

.member-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #edf0f4;
}

    .member-row:last-child {
        border-bottom: 0;
    }

.member-name {
    font-size: 13px;
    color: #343a40;
    font-weight: 500;
}

.member-role {
    flex-shrink: 0;
    padding: 4px 9px;
    background: #eef5ff;
    color: #0d6efd;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}


/* =========================================
           Contact
        ========================================= */

.contact-card {
    background: #0d6efd;
    color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.18);
}

    .contact-card .card-heading {
        color: #ffffff;
    }

    .contact-card .card-heading-icon {
        background: rgba(255,255,255,0.15);
        color: #ffffff;
    }

.contact-institute {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 7px;
}

.contact-address {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
}

    .contact-item i {
        width: 32px;
        height: 32px;
        min-width: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.15);
        border-radius: 50%;
    }

    .contact-item a {
        color: #ffffff;
        text-decoration: none;
    }

        .contact-item a:hover {
            text-decoration: underline;
        }

.admission-note {
    font-size: 12px;
    opacity: 0.85;
    margin-top: -5px;
    margin-left: 44px;
}


/* =========================================
           Responsive
        ========================================= */

@media (max-width: 991px) {

    .facility-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {

    .campus-section {
        padding: 35px 0;
    }

    .section-title {
        font-size: 26px;
    }

    .campus-card {
        padding: 20px;
    }

    .card-heading {
        font-size: 18px;
    }

    .site-description {
        font-size: 13px;
        text-align: left;
    }

    .facility-item {
        font-size: 13px;
    }

    .committee-header {
        padding: 15px;
    }

    .committee-body {
        padding: 12px 15px;
    }

    .member-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .member-role {
        font-size: 10px;
    }

    .contact-card {
        padding: 22px;
    }

    .contact-institute {
        font-size: 16px;
    }
}


.contact-section {
    background: #f7f9fc;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}

/* Section Header */

.section-header {
    margin-bottom: 30px;
}

.section-subtitle {
    display: inline-block;
    color: #0d6efd;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.section-title {
    color: #212529;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}

.title-line {
    width: 55px;
    height: 3px;
    background: #0d6efd;
    border-radius: 10px;
    margin: auto;
}


/* Contact Card */

.contact-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e3e8ef;
    border-radius: 14px;
    padding: 35px;
    box-shadow: 0 7px 25px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

    .contact-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: #0d6efd;
    }


/* Main Icon */

.contact-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef5ff;
    color: #0d6efd;
    border-radius: 12px;
    font-size: 25px;
    margin-bottom: 18px;
}


/* Institute */

.contact-title {
    color: #212529;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 20px;
}


/* Address */

.contact-address {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 15px;
    background: #f8fafc;
    border: 1px solid #edf0f4;
    border-radius: 8px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

    .contact-address i {
        color: #0d6efd;
        font-size: 18px;
        margin-top: 2px;
    }


/* Contact Item */

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 15px 0;
    border-bottom: 1px solid #edf0f4;
}

    .contact-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

.contact-item-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef5ff;
    color: #0d6efd;
    border-radius: 50%;
}

.contact-label {
    font-size: 12px;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 3px;
    text-transform: uppercase;
}

.contact-item a {
    color: #0d6efd;
    text-decoration: none;
    font-size: 14px;
}

    .contact-item a:hover {
        text-decoration: underline;
    }

.admission-number {
    color: #777;
    font-size: 12px;
    margin-top: 4px;
}


/* Mobile */

@media (max-width: 767px) {

    .contact-section {
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }

    .section-title {
        font-size: 26px;
    }

    .contact-card {
        padding: 22px;
    }

    .contact-title {
        font-size: 17px;
    }

    .contact-address {
        font-size: 13px;
    }

    .contact-item a {
        font-size: 13px;
    }
}

/* Main Box */
.placement-contact-box {
    background: #ffffff;
    border: 1px solid #e2e6eb;
    border-radius: 12px;
    padding: 28px 30px;
    margin-top: 20px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

    /* Top Border */
    .placement-contact-box::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: #0d6efd;
    }


/* Heading */
.placement-contact-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: #333333;
    font-size: 19px;
    font-weight: 600;
}


/* Heading Icon */
.placement-contact-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef5ff;
    color: #0d6efd;
    border-radius: 8px;
    font-size: 19px;
}


/* Name */
.placement-contact-name {
    color: #333333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}


/* Designation */
.placement-contact-designation {
    color: #777777;
    font-size: 13px;
    margin-bottom: 15px;
}


/* Institute */
.placement-contact-institute {
    color: #555555;
    font-size: 14px;
    line-height: 1.7;
    padding: 12px 15px;
    background: #f8f9fa;
    border-left: 3px solid #0d6efd;
    border-radius: 4px;
    margin-bottom: 18px;
}


/* Contact Detail */
.placement-contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid #eeeeee;
}

    .placement-contact-detail:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }


/* Detail Icon */
.placement-contact-detail-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef5ff;
    color: #0d6efd;
    border-radius: 50%;
    font-size: 14px;
}


/* Label */
.placement-contact-label {
    display: block;
    color: #888888;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 2px;
}


/* Links */
.placement-contact-detail a {
    color: #555555;
    font-size: 14px;
    text-decoration: none;
}

    .placement-contact-detail a:hover {
        color: #0d6efd;
        text-decoration: underline;
    }


/* =========================================
       Mobile
    ========================================= */

@media (max-width: 767px) {

    .placement-contact-box {
        padding: 22px 18px;
        margin-top: 15px;
    }

    .placement-contact-heading {
        font-size: 17px;
        margin-bottom: 18px;
    }

    .placement-contact-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 17px;
    }

    .placement-contact-name {
        font-size: 17px;
    }

    .placement-contact-designation {
        font-size: 12px;
    }

    .placement-contact-institute {
        font-size: 13px;
    }

    .placement-contact-detail a {
        font-size: 13px;
    }
}


/* =========================================
       Faculty Section
    ========================================= */

.faculty-section {
    padding: 35px 0 50px;
    background: #f7f9fc;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}


/* =========================================
       Page Title
    ========================================= */

.faculty-page-title {
    text-align: center;
    color: #212529;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
}


/* =========================================
       Page Context
    ========================================= */

.faculty-page-context {
    width: 100%;
}


/* =========================================
       Faculty Card
    ========================================= */

.faculty-card {
    width: 100%;
    background: #ffffff;
    border: 1px solid #e1e6ec;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}


/* =========================================
       Card Header
    ========================================= */

.faculty-card-header {
    padding: 1px 18px;
    background: #0d6efd;
    color: #ffffff;
}

.faculty-card-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
}


/* =========================================
       Card Body
    ========================================= */

.faculty-card-body {
    padding: 0;
}


/* =========================================
       Faculty Table
    ========================================= */

.faculty-staff-table {
    width: 100%;
    margin: 0;
    font-size: 13px;
    color: #444444;
}


    /* Table Header */

    .faculty-staff-table thead th {
        background: #f1f4f8;
        color: #343a40;
        font-size: 13px;
        font-weight: 600;
        text-align: center;
        vertical-align: middle;
        padding: 11px 10px;
        border-color: #dfe3e8;
        white-space: nowrap;
    }


    /* Table Body */

    .faculty-staff-table tbody td {
        padding: 10px;
        vertical-align: middle;
        border-color: #e1e5ea;
        line-height: 1.5;
    }


    /* Hover */

    .faculty-staff-table tbody tr:not(.faculty-department-row):hover {
        background-color: #f8fbff;
    }


/* =========================================
       Principal
    ========================================= */

.faculty-principal-row {
    background: #fffdf5;
}

    .faculty-principal-row td {
        font-size: 13px;
    }


/* =========================================
       Department Heading
    ========================================= */

.faculty-department-row td {
    background: #eaf3ff;
    color: #0d6efd;
    font-size: 14px;
    font-weight: 600;
    padding: 11px 15px !important;
    border-top: 2px solid #cfe2ff;
    border-bottom: 1px solid #cfe2ff;
}

.faculty-department-row i {
    font-size: 13px;
}


/* =========================================
       Email
    ========================================= */

.faculty-staff-table a {
    color: #555555;
    text-decoration: none;
    word-break: break-word;
}

    .faculty-staff-table a:hover {
        color: #0d6efd;
        text-decoration: underline;
    }


/* =========================================
       Serial Number
    ========================================= */

.faculty-sno {
    width: 8%;
}


/* =========================================
       Content Awaited
    ========================================= */

.faculty-content-awaited {
    margin-top: 25px;
}

    .faculty-content-awaited img {
        max-width: 100%;
        height: auto;
        border-radius: 6px;
    }


/* =========================================
       Tablet
    ========================================= */

@media (max-width: 991px) {

    .faculty-section {
        padding: 30px 0 40px;
    }

    .faculty-page-title {
        font-size: 25px;
    }

    .faculty-staff-table {
        font-size: 12px;
        min-width: 850px;
    }

        .faculty-staff-table thead th {
            font-size: 12px;
        }

        .faculty-staff-table tbody td {
            padding: 9px;
        }
}


/* =========================================
       Mobile
    ========================================= */

@media (max-width: 767px) {

    .faculty-section {
        padding: 25px 0 35px;
    }

    .faculty-page-title {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .faculty-card {
        border-radius: 7px;
    }

    .faculty-card-header {
        padding: 12px 15px;
    }

    .faculty-card-title {
        font-size: 16px;
    }

    /*
           Horizontal scrolling is enabled on mobile
           so the table remains readable.
        */

    .faculty-card-body .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .faculty-staff-table {
        min-width: 850px;
        font-size: 12px;
    }

        .faculty-staff-table thead th {
            font-size: 12px;
            padding: 9px 8px;
        }

        .faculty-staff-table tbody td {
            padding: 9px 8px;
        }

    .faculty-department-row td {
        font-size: 13px;
    }

    .faculty-content-awaited {
        margin-top: 20px;
    }
}



