﻿
:root {
    --iust-dept-primary: #fdc800; /* Eikra gold/yellow accent */
    --iust-dept-primary-dark: #e6b800;
    --iust-dept-dark: #002147; /* navy */
    --iust-dept-dark-light: #0c2a5c;
    --iust-text: #333333;
    --iust-text-light: #555555;
    --iust-dept-bg: #f8f9fa;
    --iust-dept-white: #ffffff;
    --iust-shadow: 0 4px 18px rgba(0,0,0,0.07);
    --iust-border: #e0e0e0;
}
.slider-image{
    max-height:300px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/*
body {
    font-family: 'Roboto', sans-serif;
    color: var(--iust-text);
    line-height: 1.7;
    background: var(--iust-dept-bg);
}*/
.vc_custom_1525066600955 {
    padding-top: 30px !important;
    padding-bottom: 42px !important;
    background-image: url() !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}
.iust-dept-hero {
    background: linear-gradient(rgba(0,26,52,0.86), rgba(12,42,92,0.86)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 140px 20px 90px;
}

    .iust-dept-hero h1 {
        font-size: 2.9rem;
        margin-bottom: 14px;
        font-weight: 700;
    }

    .iust-dept-hero p {
        font-size: 1.28rem;
        max-width: 760px;
        margin: 0 auto;
        opacity: 0.93;
    }

.iust-dept-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.iust-dept-section {
    padding: 0px 0 80px;
}

.iust-title {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--iust-dept-primary);
    margin-bottom: 50px;
    position: relative;
}

    .iust-title::after {
        content: '';
        width: 80px;
        height: 4px;
        background: var(--iust-dept-primary);
        position: absolute;
        bottom: -16px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 2px;
    }

.iust-dept-list {
    background: var(--iust-dept-white);
    border-radius: 10px;
    box-shadow: var(--iust-shadow);
    overflow: hidden;
}

    .iust-dept-list table {
        width: 100%;
        border-collapse: collapse;
        font-family: 'Roboto';
        margin: 0 !important;
    }

    .iust-dept-list th,
    .iust-dept-list td {
        padding: 18px 24px;
        text-align: left;
        border-bottom: 1px solid #f0f0f0;
    }

    .iust-dept-list th {
        background: var(--iust-dept-dark);
        color: white;
        font-weight: 600;
        font-size: 1.05rem;
        text-transform: uppercase;
        letter-spacing: 0.4px;
    }

    .iust-dept-list td {
        font-size: 1.03rem;
        vertical-align: middle;
    }

    .iust-dept-list .sno {
        width: 80px;
        font-weight: 500;
/*        color: #444444;*/
    }

    .iust-dept-list .department {
        font-weight: 500;
        color: var(--iust-dept-dark-light);
    }

    .iust-dept-list .email a {
        color: #444444;
        text-decoration: none;
        transition: 0.2s;
    }

        .iust-dept-list .email a:hover {
            color: #444444;
            text-decoration: underline;
        }

    .iust-dept-list tr:hover {
/*        background: #fffef5;*/
    }

    .iust-dept-list tr:last-child td {
        border-bottom: none;
    }

@media (max-width: 768px) {
    .iust-dept-hero {
        padding: 110px 20px 70px;
    }

        .iust-dept-hero h1 {
            font-size: 2.4rem;
        }

    .iust-dept-list thead {
        display: none;
    }

    .iust-dept-list tr {
        display: block;
        margin-bottom: 20px;
        border-bottom: 1px solid #e0e0e0;
        padding-bottom: 12px;
    }

    .iust-dept-list td {
        display: block;
/*        text-align: right;*/
        position: relative;
        padding-left: 50%;
        border: none;
    }

        .iust-dept-list td::before {
            content: attr(data-label);
            position: absolute;
            left: 24px;
            width: 45%;
            font-weight: 600;
            text-align: left;
            color: var(--iust-dept-primary);
        }

        .iust-dept-list td.sno::before {
            content: "S.No.";
        }
}


