/* Sidebar container */
.custom-sidebar {
    background: linear-gradient(to right, #232526, #414345); /* dark modern gradient */
    color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease-in-out;
}

/* Widget title */
.custom-widget .widget-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
    border-bottom: 2px solid #00c6ff;
    padding-bottom: 8px;
}

/* List items */
.custom-list li {
    margin-bottom: 10px;
    list-style: none;
}

    .custom-list li a {
        color: #e0e0e0;
        text-decoration: none;
        font-size: 16px;
        display: block;
        padding: 8px 12px;
        border-radius: 6px;
        transition: background 0.3s ease, color 0.3s ease;
    }

        /* Hover effect */
        .custom-list li a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: #00c6ff;
        }

        /* Icon styling */
        .custom-list li a i {
            margin-right: 10px;
            color: #00c6ff;
        }

.inner-header {
    background-size: cover;
    background-position: center center;
    position: relative;
    padding: 0px 0;
}

.layer-overlay {
    position: relative;
    z-index: 1;
}

    .layer-overlay::before {
        content: "";
        background-color: rgba(0, 0, 0, 0.5); /* Adjust darkness */
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }

.section-content {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

    .breadcrumb li + li::before {
        content: ">";
        color: #fff;
        padding: 0 5px;
    }
.document-block {
    margin: 20px 0;
}

.document-blockquote {
    border-left: 5px solid #054284;
    background-color: #f5faff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(5, 66, 132, 0.2);
    transition: box-shadow 0.3s ease;
}

    .document-blockquote:hover {
        box-shadow: 0 6px 15px rgba(5, 66, 132, 0.4);
    }

.document-link {
    text-decoration: none;
    color: #054284;
    display: block;
}

.pdf-icon {
    max-width: 60px;
    max-height: 60px;
    margin: 0 auto;
}

.document-description {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

@media (max-width: 576px) {
    .document-description {
        font-size: 16px;
        text-align: center;
        margin-top: 10px;
    }
}


.border-dashed {
    border-style: dashed !important;
}

.loading-image {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.btn-action,
.btn-reset {
    height: 40px;
    margin-right: 15px;
    cursor: pointer;
}

.form-control {
    padding: 6px 12px;
    font-size: 14px;
}

.mb-3 {
    margin-bottom: 1rem;
}

.table {
    border: 1px solid #dee2e6;
}

.table th {
    background-color: #343a40;
    color: white;
}

.btn-dark {
    background-color: #343a40;
    color: white;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

    .btn-dark:hover {
        background-color: #23272b;
        color: #fff;
    }
.faculty-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    background-color: #fff;
}

    .faculty-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

.faculty-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #007bff;
    transition: transform 0.4s ease;
}

.image-container:hover .faculty-img {
    transform: scale(1.1);
}

.view-profile-btn {
    transition: all 0.3s ease;
}

    .view-profile-btn:hover {
        background-color: #007bff;
        color: #fff;
        border-color: #007bff;
    }


