    header {
            position: sticky;
            top: 0;
            z-index: 1030;
            background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            font-size: 1.5rem;
            color: white;
        }
        
        .navbar-brand img {
            height: 40px;
            margin-right: 10px;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.85);
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: #ffc107;
        }
        
        .navbar-nav .nav-link.active {
            color: #ffc107;
            font-weight: 600;
        }
        
        .dropdown-menu {
            background: linear-gradient(135deg, #0f2027, #203a43);
            border: none;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .dropdown-item {
            color: rgba(255, 255, 255, 0.85);
            padding: 0.5rem 1rem;
            transition: all 0.3s;
        }
        
        .dropdown-item:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: #ffc107;
        }
        
        .dropdown-divider {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Content Styles */
        .content {
            padding: 2rem 0;
            background: #f8f9fa;
            min-height: 70vh;
        }
        
        .scrolling-text {
            white-space: nowrap;
            overflow: hidden;
            box-sizing: border-box;
            background: #fff3cd;
            padding: 8px 0;
            border-radius: 4px;
            margin-bottom: 1.5rem;
        }
        
        .scrolling-text span {
            display: inline-block;
            padding-left: 100%;
            animation: scroll-left 25s linear infinite;
            font-size: 1rem;
            color: #b01c0e;
            font-weight: 500;
        }
        
        .scrolling-text:hover span {
            animation-play-state: paused;
        }
        
        @keyframes scroll-left {
            0% { transform: translateX(0%); }
            100% { transform: translateX(-100%); }
        }
        
        .section-title {
            font-weight: 700;
            font-size: 2rem;
            color: #1a73e8;
            position: relative;
            margin-bottom: 2rem;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background-color: #ffc107;
            margin: 8px auto 0;
            border-radius: 2px;
        }
        
        /* Table Styles */
        #jobTable {
            width: 100% !important;
            table-layout: fixed;
            word-break: break-word;
        }
        
        #jobTable th, #jobTable td {
            white-space: normal !important;
            word-break: break-word;
            vertical-align: middle;
            text-align: center;
            padding: 8px;
            font-size: 14px;
        }
        
        table.dataTable td {
            white-space: normal !important;
            word-wrap: break-word;
        }
        
        /* Package Card Styles */
        .package-card {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            margin-bottom: 1.5rem;
            height: 100%;
        }
        
        .package-card:hover {
            transform: translateY(-4px);
        }
        
        .package-img {
            height: 250px;
            object-fit: cover;
            width: 100%;
        }
        
        .explore-btn {
            margin-top: 10px;
            font-size: 0.9rem;
            padding: 6px 14px;
            background-color: #0d6efd;
            color: white;
            border: none;
            border-radius: 20px;
            transition: background-color 0.2s ease;
        }
        
        .explore-btn:hover {
            background-color: #0b5ed7;
        }
        
        .card-title {
            font-weight: 600;
            font-size: 1.2rem;
        }
        
        .package-price {
            font-size: 0.95rem;
            color: #6c757d;
        }
        
        .buy-btn {
            border-radius: 20px;
            padding: 6px 16px;
            font-size: 0.9rem;
        }
        
        /* Footer Styles */
        footer {
            background: #1a1a1a;
            color: #fff;
            margin-top: auto;
        }
        
        .footer-logo {
            height: 50px;
            margin-bottom: 1rem;
        }
        
        .footer-heading {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: #ffc107;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #ffc107;
        }
        
        .social-icons a {
            display: inline-block;
            width: 36px;
            height: 36px;
            background: #333;
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 36px;
            margin-right: 10px;
            transition: background 0.3s;
        }
        
        .social-icons a:hover {
            background: #1a73e8;
        }
        
        .copyright {
            border-top: 1px solid #333;
            padding-top: 1.5rem;
            margin-top: 2rem;
            text-align: center;
            color: #999;
        }
        
        /* Select2 Customization */
        .select2-container-fluid {
            width: 100% !important;
            z-index: 9999 !important;
        }
        
        /* Error Label */
        label.error {
            color: red;
            font-size: 0.875rem;
            margin-top: 0.25rem;
        }
        
        body {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f8f9fa;
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }