/* Global Styles - Sarkari Raah */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #2563EB;
    --secondary-color: #0EA5E9;
    --background-color: #F8FAFC;
    --card-background: #FFFFFF;
    --text-primary: #1E293B;
    --text-secondary: #64748B;
    --text-white: #FFFFFF;
    --border-color: #E2E8F0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    background-color: var(--background-color);
    color: var(--text-primary);
    line-height: 1.6;
    padding-top: 60px;
    padding-bottom: 70px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    color: var(--text-primary);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-white);
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-lg);
    color: var(--text-white);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
    box-shadow: var(--shadow);
    transition: all 0.1s ease;
}

.btn-secondary {
    background-color: var(--card-background);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.btn-success {
    background: linear-gradient(135deg, #10B981, #34D399);
    color: var(--text-white);
    box-shadow: var(--shadow);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--text-white);
}

.btn-warning {
    background: linear-gradient(135deg, #F59E0B, #FBBF24);
    color: var(--text-white);
    box-shadow: var(--shadow);
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--text-white);
}

.btn-lg {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
}

.btn-sm {
    padding: 6px 14px;
    font-size: 12px;
}

/* Add specific spacing for desktop buttons */
@media (min-width: 769px) {
    .slider-container + div > a i {
        margin-right: 12px !important;
        font-size: 14px !important;
    }
}

/* Cards */
.card {
    background: var(--card-background);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.card-body {
    padding: 20px;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    background-color: var(--card-background);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-control::placeholder {
    color: var(--text-secondary);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--card-background);
    box-shadow: var(--shadow);
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.header-inner {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.nav-desktop {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: var(--transition);
    text-align: center;
}

.nav-link:hover {
    background-color: var(--background-color);
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color);
    background-color: rgba(37, 99, 235, 0.1);
}

/* Profile Image */
.profile-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow);
}

/* Mobile Bottom Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--card-background);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.mobile-nav-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    color: var(--text-secondary);
    font-size: 11px;
    font-weight: 500;
    transition: var(--transition);
}

.mobile-nav-item i {
    font-size: 20px;
}

.mobile-nav-item.active,
.mobile-nav-item:hover {
    color: var(--primary-color);
}

/* Slider */
.slider-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    margin-bottom: 30px;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.slider-btn {
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.slider-btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.slider-btn-secondary {
    background: white;
    color: var(--primary-color);
}

.slider-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-arrow:hover {
    background: white;
    color: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.slider-arrow-prev {
    left: 20px;
}

.slider-arrow-next {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.slider-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Page Sections */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 16px;
    opacity: 0.9;
}

/* Latest Content Grid */
.latest-content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.content-section {
    background: var(--card-background);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow);
}

.mobile-cards-container {
    display: none;
}

/* Responsive for Latest Content Grid */
@media (max-width: 768px) {
    .latest-content-grid {
        display: none;
    }

    .mobile-cards-container {
        display: block;
    }

    .mobile-section {
        margin-bottom: 30px;
    }

    /* Mobile button spacing */
    .slider-container + div > a {
        margin: 5px;
        display: inline-block;
    }

    /* Better mobile button layout */
    .slider-container + div {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-top: 20px;
        padding: 0 10px;
    }

    .slider-container + div > a {
        margin: 0;
        width: 100%;
        min-width: auto;
        max-width: none;
        justify-content: center;
        padding: 6px 12px !important;
        font-size: 12px !important;
        min-width: auto !important;
        height: 40px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
        animation: buttonPulse 2s infinite;
        transition: all 0.3s ease !important;
    }

    .slider-container + div > a:hover {
        transform: scale(1.1) !important;
        box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4) !important;
        animation: none !important;
    }

    .slider-container + div > a:active {
        transform: scale(0.95) !important;
        transition: all 0.1s ease !important;
    }

    @keyframes buttonPulse {

        0%,
        100% {
            box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
        }

        50% {
            box-shadow: 0 4px 16px rgba(37, 99, 235, 0.5);
        }
    }

    .slider-container + div > a i {
        font-size: 10px !important;
        margin-right: 4px !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .latest-content-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .mobile-cards-container {
        display: none;
    }
}

/* Tables */
.data-table {
    width: 100%;
    background: var(--card-background);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.data-table table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 16px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.data-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.data-table tr:hover td {
    background-color: var(--background-color);
}

/* Cards for mobile view */
.cards-container {
    display: none;
    gap: 15px;
}

.card-item {
    background: var(--card-background);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.card-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.card-item-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
    line-height: 1.4;
}

/* Modal/Popup */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--card-background);
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 24px 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
}

.modal-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--background-color);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--primary-color);
    color: white;
}

.modal-body {
    padding: 24px;
}

.modal-footer {
    padding: 0 24px 24px;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: var(--primary-color);
}

input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

/* Footer */
.footer {
    background-color: #111827;
    color: #FFFFFF;
    padding: 40px 20px 20px;
    margin-top: 50px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column p {
    color: #9CA3AF;
    font-size: 14px;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #9CA3AF;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: #9CA3AF;
    font-size: 14px;
}

/* Alert Messages */
.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-success {
    background-color: #DCFCE7;
    color: #166534;
    border: 1px solid #86EFAC;
}

.alert-error {
    background-color: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FCA5A5;
}

.alert-info {
    background-color: #DBEAFE;
    color: #1E40AF;
    border: 1px solid #93C5FD;
}

/* Admin Dashboard */
.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--card-background);
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 15px;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Admin Sidebar */
.admin-sidebar {
    width: 260px;
    background: #1E293B;
    min-height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    padding: 20px;
}

.admin-sidebar-header {
    color: white;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-menu {
    list-style: none;
}

.admin-menu li {
    margin-bottom: 8px;
}

.admin-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #94A3B8;
    border-radius: 8px;
    transition: var(--transition);
}

.admin-menu a:hover,
.admin-menu a.active {
    background: var(--primary-color);
    color: white;
}

.admin-content {
    margin-left: 260px;
    padding: 30px;
    min-height: 100vh;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
        padding-bottom: 70px;
    }

    .nav-desktop {
        display: none;
    }

    .mobile-nav {
        display: block;
    }

    .slider-container {
        height: 140px;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .slider-arrow-prev {
        left: 10px;
    }

    .slider-arrow-next {
        right: 10px;
    }

    .slider-dots {
        bottom: 15px;
        gap: 8px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .slider-overlay {
        flex-direction: column;
        gap: 12px;
    }

    .slider-btn {
        padding: 10px 24px;
        font-size: 14px;
    }

    .page-title {
        font-size: 24px;
    }

    .data-table {
        display: none;
    }

    .cards-container {
        display: flex;
        flex-direction: column;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .admin-sidebar {
        width: 100%;
        position: relative;
        min-height: auto;
    }

    .admin-content {
        margin-left: 0;
    }

    /* Mobile - smaller logo text */
    .logo span {
        font-size: 14px;
    }

    /* Mobile nav - shorter text labels */
    .mobile-nav-item[href*="mock-test"] span {
        font-size: 0;
    }

    .mobile-nav-item[href*="mock-test"] span::after {
        content: "Test";
        font-size: 11px;
    }

    .mobile-nav-item[href*="latest-job"] span {
        font-size: 0;
    }

    .mobile-nav-item[href*="latest-job"] span::after {
        content: "Job";
        font-size: 11px;
    }

    .mobile-nav-item[href*="admit-card"] span {
        font-size: 0;
    }

    .mobile-nav-item[href*="admit-card"] span::after {
        content: "Admit";
        font-size: 11px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .mobile-nav {
        display: none;
    }

    body {
        padding-bottom: 0;
    }
}

@media (min-width: 1025px) {
    .mobile-nav {
        display: none;
    }

    body {
        padding-bottom: 0;
    }
}

/* Loading Spinner */
.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Results Page Specific Styles */
.page-header.result-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
}

.page-header.result-header .page-title {
    color: white;
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.3);
}

.page-header.result-header .page-subtitle {
    color: white;
    text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.4);
}

/* Admit Cards Page Specific Styles */
.page-header.admit-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
}

.page-header.admit-header .page-title {
    color: white;
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.3);
}

.page-header.admit-header .page-subtitle {
    color: white;
    text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.4);
}

/* Latest Jobs Page Specific Styles */
.page-header.jobs-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
}

.page-header.jobs-header .page-title {
    color: white;
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.3);
}

.page-header.jobs-header .page-subtitle {
    color: white;
    text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.4);
}

/* Mock Tests Page Specific Styles */
.page-header.mock-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
}

.page-header.mock-header .page-title {
    color: white;
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.3);
}

.page-header.mock-header .page-subtitle {
    color: white;
    text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.4);
}

/* Results table styling */
.data-table td {
    color: var(--text-primary);
}

.data-table td a {
    color: var(--primary-color);
}

/* Results cards styling */
.card-item-title {
    color: var(--text-primary);
}

/* Empty state styling */
.empty-state h3 {
    color: var(--text-primary);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.empty-state-icon {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

/* ============================================
   EXAM TIPS SECTION - IMPORTANT PREPARATION GUIDE
   ============================================ */
.exam-tips-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 50px 20px;
    margin-top: 40px;
}

.exam-tips-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tips-header {
    text-align: center;
    margin-bottom: 40px;
}

.tips-header i {
    font-size: 48px;
    color: #fbbf24;
    margin-bottom: 15px;
    display: block;
}

.tips-header h2 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 700;
}

.tips-header p {
    font-size: 16px;
    color: #94a3b8;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.tip-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.tip-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tip-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
    transition: transform 0.3s ease;
}

.tip-card:hover .tip-icon {
    transform: scale(1.1) rotate(10deg);
}

.tip-card h3 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 600;
}

.tip-card p {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
}

/* Exam Tips - Overview Style Specific - Compact Design */
.exam-tips-overview {
    max-width: none;
    margin: 20px 0 0 0;
    padding: 18px 20px;
}

/* Full width specific styling */
.exam-tips-fullwidth {
    max-width: 1200px;
    margin: 30px auto;
    padding: 30px 40px;
}

.exam-tips-fullwidth .overview-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
    text-align: center;
}

.exam-tips-fullwidth .overview-underline {
    height: 4px;
    margin-bottom: 25px;
}

.exam-tips-overview .overview-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.exam-tips-overview .overview-underline {
    height: 3px;
    margin-bottom: 15px;
}

/* Full width grid - 3 columns */
.exam-tips-fullwidth .tips-grid-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.tips-grid-compact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 3px solid #8b5cf6;
    transition: all 0.2s ease;
}

.tip-item:hover {
    background: #f1f5f9;
    transform: translateX(3px);
}

.tip-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #8b5cf6, #9333ea);
    color: white;
    font-weight: 700;
    font-size: 11px;
    border-radius: 50%;
    flex-shrink: 0;
}

.tip-content {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #4b5563;
}

.tip-content strong {
    color: #111827;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .exam-tips-section {
        padding: 35px 15px;
    }

    .tips-header h2 {
        font-size: 22px;
    }

    .tips-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .tip-card {
        padding: 25px 20px;
    }

    .exam-tips-fullwidth {
        margin: 20px 15px;
        padding: 20px;
    }

    .exam-tips-fullwidth .overview-title {
        font-size: 1.2rem;
    }

    .exam-tips-fullwidth .tips-grid-compact {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .tip-item {
        padding: 6px 10px;
        gap: 8px;
    }

    .tip-number {
        min-width: 20px;
        height: 20px;
        font-size: 10px;
    }

    .tip-content {
        font-size: 0.8rem;
        line-height: 1.35;
    }
}

/* Tablet responsive for full width */
@media (max-width: 1024px) and (min-width: 769px) {
    .exam-tips-fullwidth .tips-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}