.text-justify {
    text-align: justify !important;
}

.text-small{
    font-size: 13px !important;
}
ul.nursinglist {
    list-style-type: disc;
    padding-left: 20px;
    margin: 10px 0;
    font-size: 16px;
}

ul.nursinglist li {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 10px; /* Adds space between list items */
    color: #000000;
    position: relative; /* Required for positioning the icon */
    padding-left: 5px; /* Create space for the icon */
}

.profile-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    position: relative;
    margin-top: 70px; /* Adjust to control spacing */
}

.profile-image {
    width: 100%;
    max-width: 180px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin: 0 auto;
    position: absolute;
    top: -160px; /* Adjust to align image above card */
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* Optional: Add shadow to the image */
}

.profile-content h5 {
    margin-top: 50px;
    font-size: 18px;
    font-weight: bold;
}

.profile-content p {
    font-size: 14px;
    color: #000000;
}

.profile-card-container {
    position: relative;
    padding-top: 100px; /* Ensure enough space for the image */
}
ul.courselist {
    list-style-type: none; /* Remove the default bullet points */
    padding-left: 20px;
    margin: 10px 0;
    font-size: 16px;
}

ul.courselist li {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 10px; /* Adds space between list items */
    color: #000000;
    position: relative; /* Required for positioning the icon */
    padding-left: 30px; /* Create space for the icon */
}

ul.courselist li::before {
    content: "\f00c"; /* Font Awesome Unicode for check icon in Pro 6.0 */
    font-family: "Font Awesome 6 Pro"; /* Updated Font Awesome 6 Pro font-family */
    font-weight: 900; /* Use the solid style */
    position: absolute;
    left: 0; /* Position the icon to the left of the text */
    top: 0;
    color: var(--kmch-theme-primary);; /* Green color for the check icon */
    font-size: 14px; /* Adjust icon size */
}
/*point finger css*/
.pointfing {
    list-style: none; /* Remove default bullet points */
    padding: 0;
    margin: 0;
}

.pointfing li {
    position: relative;
    font-size: 16px;
    color: #0b0b0b;
    padding-left: 24px; /* Space for the icon */
    margin-bottom: 8px;
}

.pointfing li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px; /* Width of the icon */
    height: 13px; /* Height of the icon */
   background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="45" stroke="%23var(--kmch-theme-primary);" stroke-width="5" fill="none" stroke-linecap="round" stroke-dasharray="270,100"/><path d="M30 50 L45 65 L75 30" stroke="%23var(--kmch-theme-primary);" stroke-width="6" fill="none" stroke-linecap="round"/></svg>') no-repeat center;
    background-size: contain;
}


table {
    font-size: 17px !important;
    font-weight: 400 !important;
    line-height: 1.5;
    margin-bottom: 10px; /* Adds space between list items */
    color: #000000 !important;
}

table thead th {
    font-size: 17px !important;
    font-weight: 400 !important;
    line-height: 1.5;
    margin-bottom: 10px; /* Adds space between list items */
    color: #000000 !important;
}

table tbody td {
    font-size: 17px !important;
    font-weight: 400 !important;
    line-height: 1.5;
    margin-bottom: 10px; /* Adds space between list items */
    color: #000000 !important;
}
.mfp-hide {
    display: none;
}

.white-popup-block {
    background: #fff;
    padding: 20px;
    max-width: 900px;
    width: 80%;  /* Default width for larger screens */
    margin: 0 auto;
    position: relative;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;  /* Spread image and content across the popup */
}

.white-popup-block .popup-inner {
    display: flex;
    width: 100%; /* Ensure the content stretches */
}

.popup-left {
    flex: 0 0 30%; /* The image will take up 30% of the space */
    display: flex;
    justify-content: center;  /* Center image */
    align-items: center;
}

.popup-right {
    flex: 1; /* The content will take up the remaining space */
    padding-left: 20px;
    display: flex;
    flex-direction: column;  /* Stack items vertically */
    justify-content: flex-start;
}

.popup-left img {
    width: 100%; /* Resize the image */
    max-width: 200px; /* Ensure the image doesn’t exceed a certain width */
    height: auto;
    border-radius: 8px;
}

.white-popup-block h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.profile-info {
    margin-top: 20px; /* Add some space between the image and the text */
}

.profile-info p {
    font-size: 16px;
    margin-bottom: 10px;
}

/* Close button styling */
.mfp-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .white-popup-block {
        width: 90%;  /* Make it wider on small screens */
    }

    .white-popup-block .popup-inner {
        flex-direction: column;  /* Stack the columns vertically on small screens */
    }

    .popup-left {
        margin-bottom: 20px; /* Add space between image and content */
        flex: 0 0 40%; /* Reduce image size on smaller screens */
    }

    .popup-right {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .white-popup-block {
        width: 95%;  /* Even wider on very small screens */
    }

    .white-popup-block h2 {
        font-size: 20px; /* Smaller heading for mobile */
    }

    .profile-info p {
        font-size: 14px; /* Smaller text for mobile */
    }
}
/* New class for the logo (default for larger screens) */

.facu-rec {
    width: 150px; /* Ensuring the width remains as intended */
    height: 150px; /* Ensuring the height remains as intended */
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2) !important;
    border: 4px var(--kmch-theme-primary); solid !important; ;
}
.text-theme{
    color: var(--kmch-theme-primary); !important;
}
span.highlight {
    color: var(--kmch-theme-primary); !important;
}


@media only screen and (min-width: 768px) and (max-width: 991px) and (max-width: 767px), only screen and (max-width: 767px) and (max-width: 767px) {
    .infraimage img {
        width: 100% !important;
    }

}
.feelink h4 {
    font-size: 25px;
    font-weight: 400;
    line-height: 1.18;
    margin-bottom: 60px;
    letter-spacing: -1.2px;
    color: var(--kmch-heading-primary);
}

.inactive-btn {
    opacity: 0.5;
    cursor: not-allowed;
}
.mt-lg-10{margin-top:6rem!important}

/*fac new*/

.faculty-wrapper {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 16px;
    background-color: #fff;
    text-align: center;
    transition: all 0.2s ease-in-out;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faculty-wrapper:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.faculty-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 12px;
    border: 3px solid #f3f3f3;
}

.faculty-name {
    display: inline-block;
    padding: 6px 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 8px;
    color: #fff;
}

.faculty-name.red {
    background-color: #dc3545;
}

.faculty-name.green {
    background-color: #198754;
}

.faculty-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
}

.faculty-qual {
    font-size: 0.85rem;
    color: #666;
}

.faculty-email {
    font-size: 0.82rem;
    color: var(--kmch-theme-primary);;
    word-break: break-word;
    margin-top: 8px;
    display: block;
}

.faculty-more-link {
    margin-top: 12px;
    font-size: 0.8rem;
    text-decoration: underline;
    color: var(--kmch-theme-primary);
    display: inline-block;
}

.popup-inner {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    max-width: 700px;
    margin: auto;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    position: relative;
}

.popup-inner .popup-left img {
    max-width: 100%;
    border-radius: 10px;
}

.mfp-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    color: #333;
    border: none;
    background: none;
    cursor: pointer;
}
#tserial {
    counter-reset: serial; /* Initialize counter */
}

#tserial tr {
    counter-increment: serial; /* Increment counter for each row */
}

#tserial tr td:first-child {
    text-align: center; /* Center the text in the cell */
    width: 50px; /* Optional: set a fixed width for better alignment */
}

#tserial tr td:first-child::before {
    content: counter(serial); /* Display the counter */
    display: block; /* Ensure it displays in the cell */
}

.themecolor svg {
    color: var(--kmch-theme-secondary) !important;
}


@media (max-width: 767px) {
    .mobile-logo {
        height: 50px !important;
        width: 300px !important;
    }
}
@media (min-width: 768px) and (max-width: 1198px) {
    .kmch-header-logo img {
        height: 50px !important;
    }
}
@media (min-width: 1199px) and (max-width: 1399px) {
    .kmch-header-logo img {
        height: 50px !important;
    }
}
