<style>
/* --- 2. Faculty Section Styling --- */
        .faculty-section {
            padding: 60px 0;
            background-color: #f9f9f9;
        }

        .section-heading {
            color: #1A3082;
            font-weight: 800;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;            
            border-bottom: 3px solid #FF8C00;
            padding-bottom: 5px;
			 padding-top: 15px;			
        }
        /* --- THE FACULTY CARD --- */
        .faculty-card {
            position: relative;
            background: #fff;
            border-radius: 8px;
            border: 1px solid #eee;
            padding: 20px;
            height: 100%;
            transition: all 0.3s ease;
            overflow: hidden; 
        }

        /* --- IMAGE BOX (Default Desktop Size) --- */
        .faculty-img-box {
            width: 170px; 
            height: 195px;
            
            flex-shrink: 0; 
            border-radius: 6px;
            overflow: hidden;
            background: #f0f0f0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.55); /* Shadow */
        }

        .faculty-img-box img {
            width: 100%; 
            height: 100%;
            object-fit: cover; 
            object-position: top center;
        }

        /* --- TEXT CONTENT --- */
        .faculty-info {
            width: 100%;
        }

        .faculty-name {
            font-family: 'Segoe UI', sans-serif;
            font-weight: 700;
            margin-bottom: 5px;
            font-size: 1.25rem;
            text-transform: none; 
            background: linear-gradient(-180deg, #385EB8 0%, #1A3082 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .faculty-qual {
            display: block; font-size: 0.85rem; color: #6c757d; font-weight: 600; margin-bottom: 4px;
        }

        .faculty-desig {
            display: block; font-size: 0.95rem; color: #FF8C00; font-weight: 700; margin-bottom: 12px; 
        }

        .faculty-meta {
            font-size: 0.95rem; color: #444; margin-bottom: 6px; display: flex; align-items: flex-start; 
        }

        .faculty-meta i {
            color: #1A3082; width: 20px; margin-right: 8px; margin-top: 3px; font-size: 0.9rem;
        }

        .email-link {
            color: #555; text-decoration: none; word-break: break-all; transition: color 0.2s;
        }
        .email-link:hover { color: #FF8C00; }

        /* --- HOVER EFFECTS --- */
        .faculty-card::before {
            content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 4px; 
            background: linear-gradient(-180deg, #385EB8 0%, #1A3082 100%);
            opacity: 0; transition: opacity 0.3s ease;
        }

        .faculty-card:hover {
            transform: translateX(5px); 
            box-shadow: 10px 5px 20px rgba(0,0,0,0.1); 
            border-color: transparent;
        }
        .faculty-card:hover::before { opacity: 1; }

        /* --- MOBILE TWEAKS --- */
        @media (max-width: 767px) {
            .faculty-info {
                text-align: left; /* Text remains left aligned */
                margin-top: 15px;
            }
            .faculty-meta {
                justify-content: flex-start; 
            }
            
            /* --- UPDATED IMAGE SIZE FOR MOBILE --- */
            .faculty-img-box {
                width: 100%; 
                max-width: 270px; /* UPDATED: Width set to 250px */
                height: 290px;    /* UPDATED: Height increased to maintain aspect ratio */
                margin-bottom: 15px;
            }
        }
/* --- 2. Department Page Layout --- */
        .dept-section {
            padding: 60px 0;
            background-color: #f4f6f9;
        }

        .dept-title {
            color: #1A3082;
            font-weight: 800;
            margin-bottom: 30px;
            text-transform: uppercase;
            position: relative;
            padding-bottom: 10px;
        }
        .dept-title::after {
            content: "";
            display: block; width: 60px; height: 4px;
            background: #FF8C00; margin-top: 5px;
        }

        /* --- 3. Vertical Tab Navigation (Left Side) --- */
        .vertical-tabs {
            background: #fff;
            padding: 0;
            border-radius: 5px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            overflow: hidden;
        }

        .nav-pills .nav-link {
            border-radius: 0; /* Square edges */
            color: #444;
            font-weight: 600;
            padding: 18px 25px;
            text-align: left;
            transition: all 0.3s ease;
            position: relative;
            background-color: #fff;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Icon styling inside tabs */
        .nav-pills .nav-link i {
            margin-right: 10px;
            width: 20px; text-align: center;
        }

        /* Hover & Active State: Gradient Background */
        .nav-pills .nav-link:hover,
        .nav-pills .nav-link.active {
            background: linear-gradient(-180deg, #385EB8 0%, #1A3082 100%);
            color: #fff;
        }

        /* The Orange Strip at the start (Left Side) */
        .nav-pills .nav-link.active::before, 
        .nav-pills .nav-link:hover::before {
            content: "";
            position: absolute;
            left: 0; top: 0; bottom: 0;
            width: 4px; /* 3px to 4px as requested */
            background-color: #FF8C00;
        }

        /* --- 4. Content Area (Right Side) --- */
        .tab-content {
            background: #fff;
            padding: 30px;
            border-radius: 5px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            min-height: 400px;
        }

        .content-heading {
            color: #1A3082;
            font-weight: 700;
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
        }

        /* Gallery Grid */
        .gallery-img {
            width: 100%; height: 200px; object-fit: cover;
            border-radius: 4px; transition: transform 0.3s;
        }
        .gallery-img:hover { transform: scale(1.03); }

        /* Highlights List */
        .highlight-list li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 20px;
        }
        .highlight-list li::before {
            content: "\f058"; font-family: "Font Awesome 5 Free"; font-weight: 900;
            color: #FF8C00;
            position: absolute; left: 0; top: 3px;
        }
</style>