/*IMPORTANT: The file content has been truncated.
Status: Showing lines 1-2000 of 2672 total lines.
Action: To read more of the file, you can use the 'offset' and 'limit' parameters in a subsequent 'read_file' call. For example, to read the next section of the file, use offset: 2000.
*/
--- FILE CONTENT (truncated) ---
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');
body {
    font-family: 'Poppins', sans-serif;
    padding-top: 115px; /* Combined height of top-contact-bar and navbar */
}

/* Top Contact Bar */
.top-contact-bar {
    background: #f8f9fa;
    padding: 8px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
}

/* Navbar Styles */
.navbar {
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(15px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    z-index: 1020;
    top: 35px; /* Height of top-contact-bar */
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1.2rem !important;
    position: relative;
    transition: all 0.4s ease;
    color: #2c3e50 !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #118AB2, #467A5C);
    transition: all 0.4s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Hero Slider Styles */
#heroSlider,
#heroSlider .carousel-inner,
#heroSlider .carousel-item {
    height: 100vh;
}

.carousel-item {
    position: relative;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   /*background: linear-gradient(rgba(82, 16, 235, 0.2), rgba(5, 32, 187, 0.7));*/
    z-index: 1;
}

.carousel-caption {
    bottom: 30%;
    z-index: 2;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
        max-width: 500px;
    margin-right: auto;
    left: 10%;
    text-align: center;
}

.carousel-caption h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.carousel-caption p {
    font-size: 1.4rem;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* Modern Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #118AB2, #467A5C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Department Cards */
.dept-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.dept-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #118AB2, #467A5C);
    opacity: 0;
    transition: all 0.4s ease;
}

.dept-card:hover::before {
    opacity: 1;
}

.dept-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(17, 138, 178, 0.15);
}

.dept-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(17, 138, 178, 0.1), rgba(70, 122, 92, 0.1));
    transition: all 0.4s ease;
}

.dept-icon i {
    font-size: 2.5rem;
    color: #FF3755;
    transition: all 0.4s ease;
}

.dept-card:hover .dept-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #FF3755, #95054a);
}

.dept-card:hover .dept-icon i {
    color: white;
}

.dept-card h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 1rem 0;
    transition: all 0.3s ease;
}

.dept-card p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Button Styles */
.btn-explore {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(135deg, #118AB2, #467A5C);
    color: white;
    border: none;
    box-shadow: 0 10px 25px rgba(17, 138, 178, 0.25);
    transition: all 0.4s ease;
}

.btn-explore:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(17, 138, 178, 0.35);
    background: linear-gradient(135deg, #467A5C, #118AB2);
    color: white;
}

/* Modern Button Styles */
.btn-appointment {
    background: linear-gradient(135deg, #118AB2, #467A5C);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    border: none;
    box-shadow: 0 8px 20px rgba(17, 138, 178, 0.2);
}

.btn-appointment:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(17, 138, 178, 0.3);
    background: linear-gradient(135deg, #467A5C, #118AB2);
    color: white;
}

/* Ensure carousel images cover full viewport height */
#heroSlider .carousel-item img.d-block.w-100 {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

/* Offset body padding already accounts for fixed headers */

@media (max-width: 768px) {
    .navbar {
        top: 45px;  /* Slightly more space for mobile */
    }
    
    #heroSlider {
        padding-top: 130px;
    }
}.contact-section {
    background-color: #f8f9fa;
}

.contact-info {
    height: 100%;
}

.contact-info h4 {
    color: #0056b3;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.contact-info h4:first-child {
    margin-top: 0;
}

.contact-info a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #0056b3;
}

.contact-form {
    background: white;
    border-radius: 8px;
}

.contact-info span {
    padding: 5px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.contact-info span:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.contact-info i {
    margin-right: 8px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0;
}

.brand-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hospital-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #930350;
    line-height: 1.2;
    margin: 0;
}

.hospital-address {
    font-size: 0.75rem;
    color: #6c757d;
    margin: 0;
}

@media (max-width: 576px) {
    .navbar-brand {
        gap: 10px;
    }
    
    .hospital-name {
        font-size: 1rem;
    }
    
    .hospital-address {
        font-size: 0.65rem;
    }
}

/* Doctors Page Styles */
.doctors-container {
    padding-top: 120px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
}

.department-list {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: sticky;
    top: 100px;
}

.doctor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Department List Styles */
.nav-pills .nav-link {
    color: #2c3e50;
    padding: 12px 20px;
    margin: 5px 0;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: left;
}

.nav-pills .nav-link i {
    color: #930350;
    transition: all 0.3s ease;
}

.nav-pills .nav-link:hover {
    background: rgba(147, 3, 80, 0.1);
    transform: translateX(5px);
}

.nav-pills .nav-link.active {
    background: linear-gradient(135deg, #930350, #95054a);
    color: white;
    
}

.nav-pills .nav-link.active i {
    color: white;
}

.department-header {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.department-header h2 {
    color: #930350;
    margin-bottom: 0.5rem;
}

.doctor-title {
    color: #930350;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Doctor Profile Visibility Styles */
.doctor-profile {
    display: none;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.tab-pane {
    display: none;
}

.tab-pane.fade.show.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ensure doctor profiles within active tabs are visible */
.tab-pane.active .doctor-profile {
    display: block;
}

/* Update existing doctor image styles */
.doctor-image {
    width: 160px;
    height: 160px;
    margin: 0 auto;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, #930350, #95054a);
    box-shadow: 0 1px 1px rgba(147, 3, 80, 0.2);
    opacity: 0;
    animation: fadeIn 0.5s ease forwards 0.2s;
}

.doctor-image img {
    width: 150px;
    height: 150px;
    border: 4px solid #BADFE7;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(17, 138, 178, 0.1);
    transition: all 0.3s ease;
    object-fit: cover;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .doctor-image img {
        width: 120px;
        height: 120px;
    }
}

.doctor-name {
    color: #118AB2;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.doctor-qualification {
    color: #467A5C;
    font-size: 1.1rem;
    font-weight: 500;
}

.message-title {
    color: #118AB2;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.message-text {
    color: #467A5C;
    font-style: italic;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .doctor-image {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .doctor-info {
        text-align: center;
    }
}

.doctor-description {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
    .department-list {
        position: static;
        margin-bottom: 2rem;
    }
    
    .doctor-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}.top-nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1040;
}

.hospital-title {
    font-size: 1.5rem;
    color: #118AB2;
    margin-bottom: 0;
    font-weight: 700;
}

.hospital-location {
    font-size: 0.9rem;
    color: #467A5C;
}

.btn-home {
    background: linear-gradient(135deg, #118AB2, #467A5C);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(17, 138, 178, 0.2);
    color: white;
}

@media (max-width: 768px) {
    .hospital-title {
        font-size: 1.2rem;
    }
    
    .hospital-location {
        font-size: 0.8rem;
    }
}

/* Hospital Statistics Styles */
.hospital-stats {
    padding: 2rem 0;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(147, 3, 80, 0.1);
}

.stat-icon {
    font-size: 2.5rem;
    color: #930350;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.stat-text {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-text {
        font-size: 0.9rem;
    }
}
/* News & Notifications Styles */
.news-container {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item:hover {
    background: rgba(147, 3, 80, 0.02);
}

.news-date-badge {
    min-width: 70px;
    text-align: center;
    background: #930350;
    color: white;
    padding: 0.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.news-date-badge .date {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.news-date-badge .month {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.news-content {
    flex: 1;
}

.news-content h3 {
    font-size: 1.3rem;
    margin: 0 0 0.5rem;
    color: #2c3e50;
}

.news-content p {
    color: #6c757d;
    margin-bottom: 1rem;
}

@media (max-width: 576px) {
    .news-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .news-date-badge {
        align-self: flex-start;
    }
}

.read-more {
    color: #930350;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    color: #95054a;
}

.notifications-container {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.notifications-container h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.notification-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-item i {
    color: #930350;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.notification-item p {
    margin: 0;
    color: #6c757d;
}

@media (max-width: 992px) {
    .notifications-container {
        margin-top: 2rem;
    }
}
/* Career Preview Section Styles */
.careers-preview {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.position-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.position-list li {
    padding: 0.5rem 0;
    color: #6c757d;
}

.position-list li i {
    color: #930350;
}

.career-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.career-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(17, 138, 178, 0.8), rgba(70, 122, 92, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.career-image-container:hover .career-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    padding: 2rem;
}

.overlay-content i {
    font-size: 3rem;
}

.overlay-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 992px) {
    .career-image-container {
        margin-top: 2rem;
    }
}

/* Career Section Styles */
.careers-section {
    padding-top: 120px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.job-listings-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.btn-apply {
    background: linear-gradient(135deg, #118AB2, #467A5C);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-apply:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #467A5C, #118AB2);
    color: white;
    box-shadow: 0 5px 15px rgba(17, 138, 178, 0.2);
}

/* DataTable Custom Styles */
.dataTables_wrapper .dataTables_filter input {
    border: 1px solid #dee2e6;
    border-radius: 50px;
    padding: 8px 15px;
    margin-left: 10px;
}

.dataTables_wrapper .dataTables_length select {
    border: 1px solid #dee2e6;
    border-radius: 25px;
    padding: 5px 30px 5px 15px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: linear-gradient(135deg, #118AB2, #467A5C);
    color: white !important;
    border: none;
    border-radius: 50px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: linear-gradient(135deg, #467A5C, #118AB2);
    color: white !important;
    border: none;
}

@media (max-width: 768px) {
    .job-listings-container {
        padding: 1rem;
    }
    
    .btn-apply {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
}

/* Go to Top Button Styles */
.go-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #118AB2, #467A5C);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

.go-to-top:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #467A5C, #118AB2);
    box-shadow: 0 5px 15px rgba(17, 138, 178, 0.3);
}

@media (max-width: 768px) {
    .go-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Career Status Badges */
.status-badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-badge.active {
    background-color: #e1f7e1;
    color: #2d862d;
}

.status-badge.closed {
    background-color: #ffe6e6;
    color: #cc0000;
}

.status-badge.on-hold {
    background-color: #fff3cd;
    color: #856404;
}

#jobTable td {
    vertical-align: middle;
}

.eligibility-text {
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.top-nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1040;
}

.hospital-title {
    font-size: 1.5rem;
    color: #118AB2;
    margin-bottom: 0;
    font-weight: 700;
}

.hospital-location {
    font-size: 0.9rem;
    color: #467A5C;
}

.btn-home {
    background: linear-gradient(135deg, #118AB2, #467A5C);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(17, 138, 178, 0.2);
    color: white;
}

@media (max-width: 768px) {
    .hospital-title {
        font-size: 1.2rem;
    }
    
    .hospital-location {
        font-size: 0.8rem;
    }
}

/* Hospital Statistics Styles */
.hospital-stats {
    padding: 2rem 0;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(147, 3, 80, 0.1);
}

.stat-icon {
    font-size: 2.5rem;
    color: #930350;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.stat-text {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-text {
        font-size: 0.9rem;
    }
}
/* News & Notifications Styles */
.news-container {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item:hover {
    background: rgba(147, 3, 80, 0.02);
}

.news-date-badge {
    min-width: 70px;
    text-align: center;
    background: #930350;
    color: white;
    padding: 0.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.news-date-badge .date {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.news-date-badge .month {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.news-content {
    flex: 1;
}

.news-content h3 {
    font-size: 1.3rem;
    margin: 0 0 0.5rem;
    color: #2c3e50;
}

.news-content p {
    color: #6c757d;
    margin-bottom: 1rem;
}

@media (max-width: 576px) {
    .news-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .news-date-badge {
        align-self: flex-start;
    }
}

.read-more {
    color: #930350;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    color: #95054a;
}

.notifications-container {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.notifications-container h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.notification-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-item i {
    color: #930350;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.notification-item p {
    margin: 0;
    color: #6c757d;
}

@media (max-width: 992px) {
    .notifications-container {
        margin-top: 2rem;
    }
}
/* Career Preview Section Styles */
.careers-preview {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.position-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.position-list li {
    padding: 0.5rem 0;
    color: #6c757d;
}

.position-list li i {
    color: #930350;
}

.career-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.career-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(17, 138, 178, 0.8), rgba(70, 122, 92, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.career-image-container:hover .career-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    padding: 2rem;
}

.overlay-content i {
    font-size: 3rem;
}

.overlay-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 992px) {
    .career-image-container {
        margin-top: 2rem;
    }
}

/* Career Section Styles */
.careers-section {
    padding-top: 120px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.job-listings-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.btn-apply {
    background: linear-gradient(135deg, #118AB2, #467A5C);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-apply:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #467A5C, #118AB2);
    color: white;
    box-shadow: 0 5px 15px rgba(17, 138, 178, 0.2);
}

/* DataTable Custom Styles */
.dataTables_wrapper .dataTables_filter input {
    border: 1px solid #dee2e6;
    border-radius: 50px;
    padding: 8px 15px;
    margin-left: 10px;
}

.dataTables_wrapper .dataTables_length select {
    border: 1px solid #dee2e6;
    border-radius: 25px;
    padding: 5px 30px 5px 15px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: linear-gradient(135deg, #118AB2, #467A5C);
    color: white !important;
    border: none;
    border-radius: 50px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: linear-gradient(135deg, #467A5C, #118AB2);
    color: white !important;
    border: none;
}

@media (max-width: 768px) {
    .job-listings-container {
        padding: 1rem;
    }
    
    .btn-apply {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
}

/* Go to Top Button Styles */
.go-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #118AB2, #467A5C);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

.go-to-top:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #467A5C, #118AB2);
    box-shadow: 0 5px 15px rgba(17, 138, 178, 0.3);
}

@media (max-width: 768px) {
    .go-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Career Status Badges */
.status-badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-badge.active {
    background-color: #e1f7e1;
    color: #2d862d;
}

.status-badge.closed {
    background-color: #ffe6e6;
    color: #cc0000;
}

.status-badge.on-hold {
    background-color: #fff3cd;
    color: #856404;
}

#jobTable td {
    vertical-align: middle;
}

.eligibility-text {
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.top-nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1040;
}

.hospital-title {
    font-size: 1.5rem;
    color: #118AB2;
    margin-bottom: 0;
    font-weight: 700;
}

.hospital-location {
    font-size: 0.9rem;
    color: #467A5C;
}

.btn-home {
    background: linear-gradient(135deg, #118AB2, #467A5C);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(17, 138, 178, 0.2);
    color: white;
}

@media (max-width: 768px) {
    .hospital-title {
        font-size: 1.2rem;
    }
    
    .hospital-location {
        font-size: 0.8rem;
    }
}

/* Hospital Statistics Styles */
.hospital-stats {
    padding: 2rem 0;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(147, 3, 80, 0.1);
}

.stat-icon {
    font-size: 2.5rem;
    color: #930350;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.stat-text {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-text {
        font-size: 0.9rem;
    }
}
/* News & Notifications Styles */
.news-container {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item:hover {
    background: rgba(147, 3, 80, 0.02);
}

.news-date-badge {
    min-width: 70px;
    text-align: center;
    background: #930350;
    color: white;
    padding: 0.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.news-date-badge .date {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.news-date-badge .month {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.news-content {
    flex: 1;
}

.news-content h3 {
    font-size: 1.3rem;
    margin: 0 0 0.5rem;
    color: #2c3e50;
}

.news-content p {
    color: #6c757d;
    margin-bottom: 1rem;
}

@media (max-width: 576px) {
    .news-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .news-date-badge {
        align-self: flex-start;
    }
}

.read-more {
    color: #930350;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    color: #95054a;
}

.notifications-container {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.notifications-container h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.notification-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-item i {
    color: #930350;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.notification-item p {
    margin: 0;
    color: #6c757d;
}

@media (max-width: 992px) {
    .notifications-container {
        margin-top: 2rem;
    }
}
/* Career Preview Section Styles */
.careers-preview {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.position-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.position-list li {
    padding: 0.5rem 0;
    color: #6c757d;
}

.position-list li i {
    color: #930350;
}

.career-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.career-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(17, 138, 178, 0.8), rgba(70, 122, 92, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.career-image-container:hover .career-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    padding: 2rem;
}

.overlay-content i {
    font-size: 3rem;
}

.overlay-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 992px) {
    .career-image-container {
        margin-top: 2rem;
    }
}

/* Career Section Styles */
.careers-section {
    padding-top: 120px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.job-listings-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.btn-apply {
    background: linear-gradient(135deg, #118AB2, #467A5C);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-apply:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #467A5C, #118AB2);
    color: white;
    box-shadow: 0 5px 15px rgba(17, 138, 178, 0.2);
}

/* DataTable Custom Styles */
.dataTables_wrapper .dataTables_filter input {
    border: 1px solid #dee2e6;
    border-radius: 50px;
    padding: 8px 15px;
    margin-left: 10px;
}

.dataTables_wrapper .dataTables_length select {
    border: 1px solid #dee2e6;
    border-radius: 25px;
    padding: 5px 30px 5px 15px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: linear-gradient(135deg, #118AB2, #467A5C);
    color: white !important;
    border: none;
    border-radius: 50px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: linear-gradient(135deg, #467A5C, #118AB2);
    color: white !important;
    border: none;
}

@media (max-width: 768px) {
    .job-listings-container {
        padding: 1rem;
    }
    
    .btn-apply {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
}

/* Go to Top Button Styles */
.go-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #118AB2, #467A5C);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

.go-to-top:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #467A5C, #118AB2);
    box-shadow: 0 5px 15px rgba(17, 138, 178, 0.3);
}

@media (max-width: 768px) {
    .go-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Career Status Badges */
.status-badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-badge.active {
    background-color: #e1f7e1;
    color: #2d862d;
}

.status-badge.closed {
    background-color: #ffe6e6;
    color: #cc0000;
}

.status-badge.on-hold {
    background-color: #fff3cd;
    color: #856404;
}

#jobTable td {
    vertical-align: middle;
}

.eligibility-text {
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Ads Section */
.add-section {
    background-color: #f8f9fa;
}

.ads-scroll-container {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 1rem;
}

.ads-row {
    display: flex;
    gap: 1.5rem;
}

.ad-item-container {
    flex: 0 0 auto;
    width: 300px; /* Adjust width as needed */
}

.ad-item {
    height: 100%;
}

.ad-item img,
.ad-item video {
    width: 100%;
    height: 400px; /* Increased height for portrait view */
    object-fit: contain; /* Show the full image without cropping */
    cursor: pointer;
}