:root{
    --maroon:#6b0f1a;
    --gold:#d4af37;
    --light:#f8f6f3;
    --white:#fff;
    --text:#2c2c2c;
    --shadow:0 10px 30px rgba(0,0,0,0.08);
}
/* Section Layout */
.faculty-section{
    padding:40px 20px;
    background:#f8f6f3;
}

.faculty-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap:25px;
}

/* Card */
.faculty-card{
    background:#fff;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    padding:20px;
    text-align:center;
    transition:0.3s;
}

.faculty-card:hover{
    transform:translateY(-5px);
}

/* Image */
.faculty-img{
    width:200px;
    height:200px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid var(--gold);
    margin-bottom:10px;
}

/* Name */
.faculty-name{
    font-size:18px;
    font-weight:700;
    color:var(--maroon);
}

/* Designation */
.faculty-designation{
    font-size:14px;
    color:#555;
    margin-bottom:10px;
}

/* Info */
.faculty-info{
    font-size:13px;
    text-align:left;
    margin-top:10px;
    color:#444;
}

.faculty-info span{
    font-weight:600;
    color:#000;
}

/* Button */
.profile-btn{
    display:inline-block;
    margin-top:10px;
    padding:6px 14px;
    background:var(--gold);
    color:#000;
    border-radius:20px;
    text-decoration:none;
    font-size:12px;
    font-weight:600;
}

.profile-btn:hover{
    background:var(--maroon);
    color:#fff;
}
/* Page Title */
.page-title{
    text-align:center;
    font-size:32px;
    font-weight:700;
    color:var(--maroon);
    margin:30px 0 10px;
}

.title-line{
    width:80px;
    height:3px;
    background:var(--gold);
    margin:10px auto 25px;
}

/* Table Container */
.table-container{
    background:#fff;
    border-radius:12px;
    box-shadow:var(--shadow);
    padding:15px;
    overflow-x:auto;
}

/* Table */
.lefty{
    width:100%;
    border-collapse:collapse;
    font-size:13px;
    min-width:1200px;
}

/* Header */
.lefty thead{
    background:var(--maroon);
    color:#fff;
    position:sticky;
    top:0;
    z-index:10;
}

.lefty th{
    padding:12px;
    text-align:center;
    font-weight:600;
    border:1px solid #eee;
}

/* Body */
.lefty td{
    padding:10px;
    border:1px solid #eee;
    text-align:center;
    vertical-align:middle;
}

/* Alternate rows */
.lefty tbody tr:nth-child(even){
    background:#fafafa;
}

/* Hover */
.lefty tbody tr:hover{
    background:#fff7e6;
    transition:0.3s;
}

/* Image */
.faculty-img{
    width:60px;
    height:60px;
    object-fit:cover;
    border-radius:8px;
    border:2px solid var(--gold);
}

/* Email formatting */
.lefty td:last-child{
    font-size:12px;
    color:#555;
}
.lefty td:first-child,
.lefty th:first-child{
    position:sticky;
    left:0;
    background:#fff;
    color:black;
    z-index:5;
}
/* Responsive */
@media(max-width:768px){
    .page-title{
        font-size:22px;
    }
}
tr.highlight{
    background:#fff3cd !important;
}
/* Profile Button */
.profile-btn{
    display:inline-block;
    padding:6px 12px;
    font-size:12px;
    background:var(--gold);
    color:#000;
    border-radius:20px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.profile-btn:hover{
    background:var(--maroon);
    color:#fff;
}