        /* Popup (modal) Styles - renamed classes */
        .stud-modal {
            display: none;  /* shown via JS */
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(12px);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            overflow-y: auto;
            padding: 20px;
        }
        
        .stud-modal-container {
            background-color: #ffffff;
            border-radius: 40px;
            max-width: 900px;
            width: 100%;
            margin: auto;
            box-shadow: 0 30px 55px -15px rgba(0, 0, 0, 0.5);
            animation: fadeSlideUp 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            overflow: hidden;
        }
        
        @keyframes fadeSlideUp {
            from {
                opacity: 0;
                transform: translateY(35px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .stud-modal-body {
            padding: 32px 32px 48px 32px;
            display: flex;
            flex-direction: column;
            gap: 32px;
            align-items: center;
        }
        
        .stud-image-card {
            width: 100%;
            display: flex;
            justify-content: center;
            transition: transform 0.2s ease;
        }
        
        .stud-image-card a {
            display: block;
            width: 100%;
            text-align: center;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
            transition: all 0.25s ease-in-out;
            background: #f9fafc;
            cursor: pointer;
        }
        
        .stud-image-card a:hover {
            transform: scale(1.01);
            box-shadow: 0 22px 35px -12px rgba(0, 0, 0, 0.25);
        }
        
        .stud-image-card img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            background-color: #eef2f6;
            transition: opacity 0.2s;
        }
        
        .stud-image-card a:hover img {
            opacity: 0.97;
        }
        
        .stud-image-caption {
            text-align: center;
            margin-top: 14px;
            font-size: 1rem;
            font-weight: 600;
            color: #1f3a5f;
            letter-spacing: -0.2px;
            background: rgba(255,255,240,0.7);
            padding: 6px 12px;
            border-radius: 60px;
            display: inline-block;
            width: auto;
            backdrop-filter: blur(2px);
        }
        
        @media (max-width: 680px) {
            .stud-modal {
                padding: 12px;
                align-items: center;
            }
            .stud-modal-container {
                max-width: 98%;
                border-radius: 32px;
            }
            .stud-modal-body {
                padding: 24px 20px 36px 20px;
                gap: 28px;
            }
            .stud-image-card a {
                border-radius: 24px;
            }
            .stud-image-card img {
                width: 100%;
                min-height: auto;
            }
            .stud-image-caption {
                font-size: 1rem;
                margin-top: 12px;
                padding: 5px 16px;
                font-weight: 600;
            }
        }
        
        @media (max-width: 480px) {
            .stud-modal-body {
                padding: 20px 16px 30px 16px;
                gap: 32px;
            }
            .stud-image-caption {
                font-size: 1rem;
                padding: 8px 14px;
            }
            .stud-modal-container {
                border-radius: 28px;
            }
            .stud-image-card a {
                border-radius: 22px;
            }
        }
        
        body.stud-modal-open {
            overflow: hidden;
        }

        /* Your existing styles go here (unchanged) */
        :root {
            --primary-color: #4e73df;
            --secondary-color: #1cc88a;
            --dark-color: #2e59d9;
            --light-color: #f8f9fc;
        }
        
        body {
            font-family: 'Nunito', 'Segoe UI', sans-serif;
            background-color: #f5f7fa;
            padding-bottom: 80px; /* Space for bottom navbar */
        }
        
        .app-header {
            background: linear-gradient(135deg, #3566f4 0%, #244fd4 70%, #1c3fae 100%);
            color: white;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 8px 22px rgba(18, 42, 117, 0.24);
            padding: 10px max(10px, env(safe-area-inset-right, 0px)) 10px max(10px, env(safe-area-inset-left, 0px));
        }

        .app-header-inner {
            padding: 0;
        }

        .mobile-header-grid {
            display: grid;
            grid-template-columns: auto auto minmax(0, 1fr) auto;
            align-items: center;
            gap: 8px;
            margin: 0;
        }

        .mobile-header-grid > div {
            padding: 0;
        }
        
        .hamburger-menu,
        .header-profile-btn {
            width: 36px;
            height: 36px;
            border: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.16);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            line-height: 1;
            padding: 0;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            transition: transform 140ms ease, background-color 140ms ease;
            text-decoration: none;
        }

        .header-profile-btn {
            width: 38px;
            height: 38px;
            font-size: 16px;
        }

        .hamburger-menu:active,
        .header-profile-btn:active {
            transform: scale(0.95);
            background: rgba(255, 255, 255, 0.24);
        }
        
        .search-container {
            width: calc(100% - 14px);
            background: #ffffff;
            border-radius: 999px;
            padding: 0 12px;
            min-height: 38px;
            border: 1px solid rgba(17, 41, 113, 0.1);
            box-shadow: 0 6px 14px rgba(13, 33, 98, 0.18);
            margin: 0 0 0 auto;
        }

        .header-search-icon {
            color: #74809d;
            font-size: 14px;
        }
        
        .search-input {
            border: none;
            outline: none;
            width: 100%;
            padding: 8px 6px;
            font-size: 13px;
            color: #24345f;
            background: transparent;
        }

        .search-input::placeholder {
            color: #8e99b3;
        }

        @media (min-width: 390px) {
            .mobile-header-grid {
                gap: 10px;
            }

            .hamburger-menu {
                width: 38px;
                height: 38px;
            }

            .search-container {
                min-height: 40px;
            }
        }
        
        .job-card {
            background: white;
            border-radius: 12px;
            padding: 15px;
            margin-bottom: 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
            transition: transform 0.2s;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .job-card::before {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            width: 4px;
            border-radius: 0 4px 4px 0;
            background: var(--primary-color);
            opacity: 0;
            transform: scaleY(0.65);
            transition: opacity 180ms ease, transform 180ms ease;
        }

        .job-card.is-scroll-active::before {
            opacity: 1;
            transform: scaleY(1);
        }
        
        .job-card:active {
            transform: scale(0.98);
        }
        
        .job-title {
            color: var(--dark-color);
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .company-name {
            color: #555;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .job-location {
            color: #777;
            font-size: 0.9rem;
        }
        
        .job-salary {
            color: var(--secondary-color);
            font-weight: 700;
        }
        
        .job-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            margin-top: 10px;
        }
        
        .job-tag {
            background-color: #e4e7f4;
            color: var(--dark-color);
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 0.8rem;
        }
        
        .premium-badge {
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            color: #000;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: bold;
            position: absolute;
            top: 10px;
            right: 10px;
            animation: pulse 1.5s infinite;
        }
        
        /* NEW: Pinned badge style */
        .pinned-badge {
            background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
            color: white;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: bold;
            position: absolute;
            top: 10px;
            left: 10px;
            animation: pulse 1.5s infinite;
            z-index: 2;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .bottom-navbar {
            position: fixed;
            bottom: 0;
            width: 100%;
            background: white;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }
        
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #777;
            font-size: 0.8rem;
            flex: 1;
            text-align: center;
        }
        
        .nav-item.active {
            color: var(--primary-color);
        }
        
        .nav-icon {
            font-size: 1.2rem;
            margin-bottom: 3px;
        }
        
        .section-title {
            color: var(--dark-color);
            font-weight: 700;
            margin: 20px 0 15px;
            padding-left: 15px;
            border-left: 4px solid var(--primary-color);
        }

        .section-title.no-front-line {
            padding-left: 0;
            border-left: 0;
        }
        
        .login-prompt {
            background: white;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin: 20px 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
        }
        
        .btn-gatistvam {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
            color: white;
            border: none;
            border-radius: 25px;
            padding: 10px 25px;
            font-weight: 600;
        }
        
        .chatbot-btn {
            position: fixed;
            bottom: 80px;
            right: 15px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            z-index: 999;
        }
        
        .vacancy-date {
            color: #aaa !important;
            font-weight: bold;
            font-size: 12px;
        }
        
        .more-details-link {
            display: inline-block;
            word-break: break-word;
            max-width: 100%;
            text-decoration: underline;
            color: #007bff;
            cursor: pointer;
            font-weight: bold;
        }

        .job-card .more-details-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 34px;
            padding: 7px 12px;
            border-radius: 9px;
            background: var(--primary-color);
            color: #fff;
            font-size: 12px;
            font-weight: 800;
            line-height: 1.2;
            text-decoration: none;
            white-space: nowrap;
            box-shadow: 0 3px 8px rgba(78, 115, 223, 0.24);
            transition: background-color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
        }

        .job-card .more-details-link:hover {
            color: #fff;
            background: var(--dark-color);
            box-shadow: 0 5px 12px rgba(46, 89, 217, 0.28);
        }

        .job-card .more-details-link:active {
            transform: scale(0.97);
        }
        
        /* Tab Content Styles */
        .tab-content {
            display: none;
            padding: 15px;
        }
        
        .tab-content.active {
            display: block;
        }
        
        /* NEW: Load More Button Styles */
        .load-more-container {
            text-align: center;
            margin: 20px 0 10px;
            padding: 0 10px;
        }
        
        .load-more-btn {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
            color: white;
            border: none;
            border-radius: 25px;
            padding: 12px 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 8px rgba(78, 115, 223, 0.3);
        }
        
        .load-more-btn:hover {
            background: linear-gradient(135deg, var(--dark-color) 0%, #1a3d99 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(78, 115, 223, 0.4);
        }
        
        .load-more-btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(78, 115, 223, 0.3);
        }
        
        .load-more-btn:disabled {
            background: #6c757d;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        
        .loading-spinner {
            display: none;
            margin: 20px auto;
            text-align: center;
        }
        
        /* NEW: Pagination Styles */
        .pagination-container {
            margin: 10px 0 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .pagination {
            display: flex;
            list-style: none;
            padding: 0;
            margin: 0;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .page-item {
            margin: 2px;
        }
        
        .page-link {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
            padding: 0 12px;
            border: 1px solid #dee2e6;
            background-color: white;
            color: var(--primary-color);
            font-weight: 600;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .page-link:hover {
            background-color: #f8f9fa;
            border-color: #dee2e6;
            transform: translateY(-2px);
        }
        
        .page-item.active .page-link {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
            color: white;
            border-color: var(--primary-color);
        }
        
        .page-item.disabled .page-link {
            color: #6c757d;
            pointer-events: none;
            background-color: #f8f9fa;
            border-color: #dee2e6;
        }
        
        .pagination-info {
            text-align: center;
            color: #6c757d;
            font-size: 0.9rem;
            margin-top: 10px;
            width: 100%;
        }
        
        /* Resume Builder Tab */
        .resume-options {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin-top: 20px;
        }
        
        .resume-option {
            background: white;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
            cursor: pointer;
            transition: transform 0.2s;
        }
        
        .resume-option:active {
            transform: scale(0.98);
        }
        
        .resume-option i {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        /* Resume Tips Styles */
        .resume-tips-container {
            background: white;
            border-radius: 12px;
            padding: 20px;
            margin-top: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
        }
        
        .tip-item {
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eaeaea;
        }
        
        .tip-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .tip-title {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        
        .tip-content {
            color: #555;
            line-height: 1.6;
        }
        
        .tip-icon {
            color: var(--secondary-color);
            margin-right: 10px;
        }
        
        .tips-header {
            text-align: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--primary-color);
        }
        
        .tips-header h4 {
            color: var(--dark-color);
            font-weight: 700;
        }
        
        .tips-header p {
            color: #666;
            margin-top: 10px;
        }
        
        /* Chatbot Modal Styles */
        .chatbot-modal {
            position: fixed;
            bottom: 90px;
            right: 15px;
            width: 90%;
            max-width: 320px;
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
            display: none;
            z-index: 1000;
            overflow: hidden;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .chatbot-header {
            background: linear-gradient(135deg, #4e73df, #224abe);
            color: white;
            padding: 15px 20px;
            border-radius: 15px 15px 0 0;
            font-weight: bold;
            font-size: 18px;
            text-align: center;
            position: relative;
        }
        
        .chatbot-body {
            padding: 20px;
            max-height: 400px;
            overflow-y: auto;
        }
        
        .chatbot-question {
            font-weight: 600;
            margin-bottom: 15px;
            color: #2d3748;
            font-size: 16px;
            line-height: 1.5;
        }
        
        .chatbot-textarea {
            width: 100%;
            height: 120px;
            padding: 12px;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            resize: none;
            margin-bottom: 15px;
            transition: all 0.3s;
            font-size: 14px;
        }
        
        .chatbot-textarea:focus {
            border-color: #4e73df;
            outline: none;
            box-shadow: 0 0 0 3px rgba(78, 115, 223, 0.2);
        }
        
        .chatbot-btn-submit {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 10px;
            background: linear-gradient(135deg, #4e73df, #224abe);
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 16px;
        }
        
        .chatbot-btn-submit:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }
        
        .chatbot-success {
            text-align: center;
            padding: 20px;
            display: none;
        }
        
        .chatbot-success i {
            font-size: 48px;
            color: #28a745;
            margin-bottom: 15px;
        }
        
        .chatbot-success p {
            font-size: 16px;
            margin-bottom: 10px;
            color: #2d3748;
        }
        
        .chatbot-buttons {
            display: flex;
            gap: 10px;
            margin-top: 20px;
            justify-content: center;
        }
        
        .chatbot-buttons button {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .chatbot-yes {
            background: linear-gradient(135deg, #28a745, #218838);
            color: white;
        }
        
        .chatbot-no {
            background: linear-gradient(135deg, #dc3545, #c82333);
            color: white;
        }
        
        .chatbot-buttons button:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }
        
        .chatbot-close {
            position: absolute;
            top: 10px;
            right: 15px;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .chatbot-close:hover {
            transform: rotate(90deg);
        }
        
        /* Animation for modal */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .chatbot-modal.show {
            display: block;
            animation: fadeInUp 0.4s ease-out;
        }
        
        /* User info form styles */
        .user-info-form {
            display: none;
            margin-bottom: 15px;
        }
        
        .user-info-form input {
            width: 100%;
            padding: 10px;
            margin-bottom: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }
        
        /* WhatsApp Button */
        .whatsapp-group {
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            padding: 10px 15px;
            border-radius: 25px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            margin: 10px 0;
            font-weight: bold;
        }
        
        /* Employer Button */
        .employer-group {
            background: linear-gradient(135deg, #FF6B35, #F7931E);
            color: white;
            padding: 10px 15px;
            border-radius: 25px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            margin: 10px 0;
            font-weight: bold;
        }
        
        /* Resume Builder Button */
        .resume-builder-group {
            background: linear-gradient(135deg, #6f42c1, #5a2d91);
            color: white;
            padding: 10px 15px;
            border-radius: 25px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            margin: 10px 0;
            font-weight: bold;
            position: relative;
            /* NEW: Blinking effect */
            animation: blinkEffect 2s infinite;
        }
        
        /* NEW: Blinking animation for resume builder button */
        @keyframes blinkEffect {
            0%, 100% { 
                box-shadow: 0 4px 15px rgba(111, 66, 193, 0.4);
                transform: scale(1);
            }
            50% { 
                box-shadow: 0 4px 25px rgba(111, 66, 193, 0.8), 0 0 30px rgba(111, 66, 193, 0.6);
                transform: scale(1.02);
            }
        }
        
        /* NEW: Badge styles for "New" label */
        .new-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background: linear-gradient(135deg, #ff3366, #ff0033);
            color: white;
            font-size: 10px;
            font-weight: bold;
            padding: 3px 8px;
            border-radius: 12px;
            animation: sparkleEffect 1.5s infinite;
            z-index: 10;
            box-shadow: 0 2px 8px rgba(255, 51, 102, 0.5);
        }
        
        /* NEW: Sparkle effect animation */
        @keyframes sparkleEffect {
            0%, 100% { 
                transform: scale(1) rotate(0deg);
                box-shadow: 0 2px 8px rgba(255, 51, 102, 0.5);
            }
            25% { 
                transform: scale(1.1) rotate(5deg);
                box-shadow: 0 2px 12px rgba(255, 51, 102, 0.7);
            }
            50% { 
                transform: scale(1.05) rotate(-5deg);
                box-shadow: 0 2px 15px rgba(255, 51, 102, 0.9);
            }
            75% { 
                transform: scale(1.1) rotate(5deg);
                box-shadow: 0 2px 12px rgba(255, 51, 102, 0.7);
            }
        }
        
        /* Contact Buttons */
        .contact-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 15px;
        }
        
        .btn-contact {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: bold;
            text-decoration: none;
        }
        
        .btn-call {
            background: linear-gradient(135deg, #28a745, #218838);
            color: white;
        }
        
        .btn-whatsapp {
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
        }

        /* Interest Modal Specific Styles */
#interestModal .modal-dialog {
    max-width: 350px;
}

#interestModal .interest-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
}

#interestModal .interest-header .modal-title {
    font-weight: 700;
    font-size: 18px;
    margin: 5px 0;
}

#interestModal .interest-header .close-btn-right {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    color: white;
    opacity: 0.8;
    padding: 5px;
}

#interestModal .interest-header .close-btn-right:hover {
    opacity: 1;
}

#interestModal .interest-body {
    padding: 20px;
    text-align: center;
    background: #f8f9fa;
}

#interestModal .interest-poster {
    width: 100%;
    max-width: 280px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 2px solid var(--primary-color);
}

#interestModal .btn-interested {
    background: linear-gradient(135deg, #ff9800, #ff5722);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-weight: 700;
    font-size: 16px;
    width: 100%;
    max-width: 280px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

#interestModal .btn-interested:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
}

#interestModal .btn-interested:active {
    transform: translateY(0);
}

/* Payment QR Modal Specific Styles */
#paymentModal .modal-dialog {
    max-width: 380px;
}

#paymentModal .qr-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: white;
}

#paymentModal .qr-header .modal-title {
    font-weight: 700;
    font-size: 18px;
    margin: 0;
}

#paymentModal .qr-header .btn-close-white {
    filter: invert(1) brightness(100);
    opacity: 0.8;
}

#paymentModal .qr-header .btn-close-white:hover {
    opacity: 1;
}

#paymentModal .qr-body {
    padding: 20px;
    background: #f8f9fa;
}

#paymentModal .plan-container {
    margin-bottom: 20px;
}

#paymentModal .plan-option {
    background: white;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

#paymentModal .plan-option.active {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(78, 115, 223, 0.2);
}

#paymentModal .discount-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff3366, #ff0033);
    color: white;
    padding: 3px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

#paymentModal .plan-amount {
    margin: 10px 0;
}

#paymentModal .plan-amount .original-price {
    display: block;
    font-size: 14px;
    color: #888;
    text-decoration: line-through;
}

#paymentModal .plan-amount span:last-child {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

#paymentModal .plan-type {
    font-size: 14px;
    color: #666;
}

#paymentModal .qr-container {
    text-align: center;
    margin: 20px 0;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

#paymentModal .qr-code {
    margin-bottom: 15px;
}

#paymentModal .qr-code img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border: 1px solid #ddd;
    padding: 10px;
    background: white;
}

#paymentModal .qr-container p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

#paymentModal .contact-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

#paymentModal .btn-contact {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

#paymentModal .btn-call {
    background: #28a745;
    color: white;
}

#paymentModal .btn-whatsapp {
    background: #25D366;
    color: white;
}

#paymentModal .btn-contact:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

        
        /* FIXED MODAL BACKDROP ISSUES */
        .modal {
            z-index: 1060 !important;
        }
        
        .modal-backdrop {
            z-index: 1050 !important;
            background-color: rgba(0, 0, 0, 0.5) !important;
        }
        
        .modal-content {
            position: relative;
            z-index: 1060 !important;
        }
        
        /* Ensure modal is always on top */
        .modal.show {
            display: block !important;
            background-color: rgba(0, 0, 0, 0.5);
        }
        
        /* Fix for modal overlay */
        .modal.fade .modal-dialog {
            transform: translate(0, 0);
        }
        
        /* Button focus states */
        button:focus {
            outline: 2px solid #4e73df;
            outline-offset: 2px;
        }
        
        /* Ensure clickability */
        .btn-interested {
            pointer-events: auto !important;
        }
        
        .plan-option {
            pointer-events: auto !important;
        }
        
        /* Remove any overlay that might be blocking */
        .modal-overlay {
            display: none !important;
        }
        
        /* Mobile-first quick action buttons */
        .quick-actions-wrap {
            padding-left: max(10px, env(safe-area-inset-left, 0px));
            padding-right: max(10px, env(safe-area-inset-right, 0px));
        }

        .button-row {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 8px;
            width: 100%;
            margin: 6px 0 4px;
        }

        .button-row .whatsapp-group,
        .button-row .employer-group,
        .button-row .resume-builder-group {
            min-width: 0;
            min-height: 48px;
            margin: 0;
            padding: 10px 12px;
            border-radius: 999px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            position: relative;
            overflow: visible;
            text-align: center;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(24, 39, 75, 0.12);
            transition: transform 140ms ease, box-shadow 140ms ease, opacity 140ms ease;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
            user-select: none;
            -webkit-user-select: none;
        }

        .button-row .whatsapp-group {
            color: #2459ed;
            background: #fff;
            border: 1px solid #e4e9f4;
            box-shadow: 0 3px 10px rgba(36, 89, 237, 0.1);
        }

        .button-row .employer-group {
            color: #fff;
            border: 0;
            background: linear-gradient(135deg, #3478f6 0%, #2457ec 100%);
            box-shadow: 0 4px 12px rgba(36, 87, 236, 0.28);
        }

        .button-row .resume-builder-group {
            grid-column: 1 / -1;
            min-height: 50px;
            padding: 10px 52px 10px 14px;
            color: #fff;
            border: 0;
            background: linear-gradient(135deg, #ff603f 0%, #f04438 100%);
            box-shadow: 0 6px 16px rgba(240, 68, 56, 0.32);
        }

        .button-row .action-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 auto;
            width: auto;
            height: auto;
            background: transparent;
            font-size: clamp(14px, 4vw, 16px);
            line-height: 1;
        }

        .button-row .action-copy {
            min-width: 0;
            flex: 0 1 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            line-height: 1.15;
        }

        .button-row .action-title {
            font-size: clamp(11.5px, 3.35vw, 13.5px);
            font-weight: 700;
            letter-spacing: 0;
            line-height: 1.2;
            overflow-wrap: anywhere;
            word-break: break-word;
        }

        .button-row .whatsapp-group .action-subtitle,
        .button-row .employer-group .action-subtitle {
            display: none;
        }

        .button-row .resume-builder-group .action-subtitle {
            display: none;
            font-size: 10px;
            font-weight: 600;
            opacity: 0.92;
            margin-top: 1px;
            line-height: 1.1;
            max-width: 100%;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .button-row .new-badge {
            top: -6px;
            right: 8px;
            padding: 3px 8px;
            border: 2px solid #fff;
            font-size: 9px;
            line-height: 1;
            letter-spacing: 0.3px;
            animation: actionBadgePulse 2.2s ease-in-out infinite;
            background: linear-gradient(135deg, #ff3366, #ff0033);
            z-index: 2;
        }

        @keyframes actionBadgePulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.06); }
        }

        .button-row a:active {
            transform: scale(0.97);
            opacity: 0.94;
            box-shadow: 0 2px 8px rgba(24, 39, 75, 0.14);
        }

        .button-row a:focus-visible {
            outline: 3px solid rgba(46, 91, 230, 0.35);
            outline-offset: 2px;
        }

        @media (hover: hover) and (pointer: fine) {
            .button-row a:hover {
                transform: translateY(-1px);
                box-shadow: 0 8px 18px rgba(24, 39, 75, 0.18);
            }

            .button-row .whatsapp-group:hover {
                color: #2459ed;
            }

            .button-row .employer-group:hover,
            .button-row .resume-builder-group:hover {
                color: #fff;
            }
        }

        @media (max-width: 340px) {
            .button-row {
                gap: 6px;
            }

            .button-row .whatsapp-group,
            .button-row .employer-group {
                padding: 9px 8px;
                gap: 5px;
            }

            .button-row .action-title {
                font-size: 11px;
            }

            .button-row .resume-builder-group {
                padding: 9px 46px 9px 10px;
            }
        }

        @media (min-width: 390px) {
            .button-row {
                gap: 10px;
            }

            .button-row .whatsapp-group,
            .button-row .employer-group {
                min-height: 50px;
            }

            .button-row .resume-builder-group {
                min-height: 54px;
            }

            .button-row .resume-builder-group .action-subtitle {
                display: block;
            }
        }

        @media (min-width: 768px) {
            .button-row {
                max-width: 520px;
                margin-left: auto;
                margin-right: auto;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .button-row a,
            .button-row .new-badge {
                transition: none;
                animation: none;
            }
        }
        
        .btn-videos {
            background: linear-gradient(135deg, #17a2b8, #138496);
            color: white;
        }
        
        /* NEW: Styles for resume builder button in the resume tab */
        .btn-gatistvam.resume-builder-btn {
            position: relative;
            animation: blinkEffect 2s infinite;
        }
        
        .btn-gatistvam.resume-builder-btn::after {
            content: "New";
            position: absolute;
            top: -8px;
            right: -8px;
            background: linear-gradient(135deg, #ff3366, #ff0033);
            color: white;
            font-size: 10px;
            font-weight: bold;
            padding: 3px 8px;
            border-radius: 12px;
            animation: sparkleEffect 1.5s infinite;
            box-shadow: 0 2px 8px rgba(255, 51, 102, 0.5);
        }

        /* Minimal app footer */
        .app-footer {
            margin-top: 24px;
            padding: 28px 0 92px;
            color: #dce5ff;
            background:
                radial-gradient(circle at top left, rgba(78, 115, 223, 0.22), transparent 38%),
                #10182c;
        }

        .footer-inner {
            max-width: 760px;
            margin: 0 auto;
        }

        .footer-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 20px;
        }

        .footer-brand {
            min-width: 0;
        }

        .footer-brand h2 {
            margin: 0 0 4px;
            color: #fff;
            font-size: 1.25rem;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .footer-brand p {
            margin: 0;
            color: #9eacd0;
            font-size: 0.86rem;
        }

        .footer-call {
            display: inline-flex;
            align-items: center;
            gap: 11px;
            flex-shrink: 0;
            min-width: 210px;
            padding: 10px 14px;
            color: #102218;
            background: #fff;
            border: 1px solid rgba(255, 255, 255, 0.78);
            border-radius: 13px;
            text-decoration: none;
            box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
            transition: transform 180ms ease, box-shadow 180ms ease;
        }

        .footer-call:hover {
            color: #102218;
            transform: translateY(-2px);
            box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
        }

        .footer-call-icon {
            display: grid;
            place-items: center;
            width: 38px;
            height: 38px;
            flex: 0 0 38px;
            color: #fff;
            background: #20a45b;
            border-radius: 50%;
        }

        .footer-call-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .footer-call-text small {
            margin-bottom: 3px;
            color: #68736d;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

        .footer-call-text strong {
            font-size: 0.9rem;
        }

        .footer-call-text span {
            margin-top: 2px;
            color: #68736d;
            font-size: 0.78rem;
        }

        .footer-socials {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 10px;
        }

        .footer-social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            min-height: 46px;
            padding: 10px 12px;
            color: #fff;
            border-radius: 12px;
            text-decoration: none;
            font-size: 0.88rem;
            font-weight: 750;
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
            transition: transform 180ms ease, filter 180ms ease;
        }

        .footer-social-link:hover {
            color: #fff;
            transform: translateY(-2px);
            filter: brightness(1.08);
        }

        .footer-social-link i {
            font-size: 1.2rem;
        }

        .footer-social-link.youtube {
            background: #ff0000;
        }

        .footer-social-link.instagram {
            background: linear-gradient(135deg, #833ab4 0%, #e1306c 52%, #f77737 100%);
        }

        .footer-social-link.facebook {
            background: #1877f2;
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-top: 20px;
            padding-top: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.11);
            color: #8492b6;
            font-size: 0.76rem;
        }

        .footer-bottom p {
            margin: 0;
        }

        @media (max-width: 575.98px) {
            .app-footer {
                padding-top: 24px;
            }

            .footer-top {
                align-items: stretch;
                flex-direction: column;
            }

            .footer-call {
                width: 100%;
            }

            .footer-social-link span {
                font-size: 0.76rem;
            }

            .footer-bottom {
                align-items: flex-start;
                flex-direction: column;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .footer-call,
            .footer-social-link {
                transition: none;
            }
        }
        
        /* Fast Track Promo Styles */
        .fast-track-promo {
            background: linear-gradient(135deg, #ff416c, #ff4b2b);
            color: white;
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin: 20px 0;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            animation: fadeInUp 0.5s ease-out;
        }

        .fast-track-promo h2 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .fast-track-promo-caption {
            font-size: 1.2rem;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .fast-track-promo-btn {
            background: white;
            color: #ff416c;
            border: none;
            border-radius: 50px;
            padding: 15px 30px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .fast-track-promo-btn:hover {
            background: #f0f0f0;
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }

        .fast-track-promo-btn:active {
            transform: scale(0.98);
        }

        /* NEW: GATI JOB Fast Track Package Header */
        .gati-header-section {
            background: linear-gradient(135deg, #ff416c, #ff4b2b);
            color: white;
            border-radius: 15px;
            padding: 20px 15px;
            text-align: center;
            margin: 20px 0;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            animation: fadeInUp 0.5s ease-out;
            position: relative;
            overflow: hidden;
        }

        .gati-header-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #ffcc00, #ff9900, #ff6600);
            animation: shimmer 3s infinite linear;
        }

        .gati-header-title {
            font-size: 2.0rem;
            margin-bottom: 5px;
            font-weight: 700;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }

        .gati-header-subtitle {
            font-size: 1.8rem;
            margin-bottom: 15px;
            font-weight: 600;
            color: #fff8e1;
        }

        .gati-header-btn {
            background: white;
            color: #ff416c;
            border: none;
            border-radius: 50px;
            padding: 12px 30px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .gati-header-btn:hover {
            background: #f0f0f0;
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }

        .gati-header-btn:active {
            transform: scale(0.98);
        }

        .gati-header-btn::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(30deg);
            transition: all 0.5s ease;
        }

        .gati-header-btn:hover::after {
            transform: rotate(30deg) translate(50%, 50);
        }

        /* NEW: Animated Arrow */
        .animated-arrow-container {
            text-align: center;
            margin: 15px 0;
            animation: bounce 2s infinite;
        }

        .animated-arrow {
            font-size: 2.5rem;
            color: #ff416c;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .animated-arrow:hover {
            transform: scale(1.2);
            color: #ff4b2b;
        }

        .arrow-text {
            display: block;
            font-size: 0.9rem;
            color: #666;
            margin-top: 5px;
            font-weight: 500;
        }

        /* NEW Animations */
        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-15px);
            }
            60% {
                transform: translateY(-7px);
            }
        }

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

        /* Social Media Share Modal Styles */
        .share-icon-container {
            padding: 10px;
        }

        .share-platform-btn {
            width: 100%;
            padding: 15px 5px;
            border: none;
            border-radius: 12px;
            color: white;
            font-weight: 600;
            font-size: 14px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .share-platform-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .share-platform-btn:active {
            transform: translateY(-1px);
        }

        .share-platform-btn i {
            font-size: 24px;
        }

        /* Platform-specific colors */
        .whatsapp-btn {
            background: linear-gradient(135deg, #25D366, #128C7E);
        }

        .facebook-btn {
            background: linear-gradient(135deg, #1877F2, #0A5BC4);
        }

        .twitter-btn {
            background: linear-gradient(135deg, #1DA1F2, #0C85D0);
        }

        .instagram-btn {
            background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
        }

        .telegram-btn {
            background: linear-gradient(135deg, #0088cc, #0077B5);
        }

        .copy-btn {
            background: linear-gradient(135deg, #6c757d, #495057);
        }

        /* Share Preview Styles */
        .share-preview {
            border: 1px solid #dee2e6;
            border-radius: 12px;
            overflow: hidden;
            margin-top: 20px;
            background: #f8f9fa;
        }

        .share-preview-header {
            background: #e9ecef;
            padding: 10px 15px;
            font-weight: 600;
            color: #495057;
            border-bottom: 1px solid #dee2e6;
        }

        .share-preview-content {
            padding: 15px;
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }

        .preview-image {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            object-fit: cover;
            border: 2px solid #dee2e6;
        }

        .preview-details {
            flex: 1;
        }

        .preview-details h6 {
            color: #212529;
            font-weight: 600;
            margin-bottom: 5px;
            font-size: 16px;
        }

        .preview-details p {
            color: #6c757d;
            font-size: 14px;
            margin: 0;
            line-height: 1.4;
        }

        /* Input group styling */
        .input-group .btn-outline-secondary {
            border-color: #dee2e6;
        }

        .input-group .btn-outline-secondary:hover {
            background-color: #f8f9fa;
            border-color: #dee2e6;
        }

        .input-group .btn-outline-secondary.link-copied {
            background-color: #198754;
            border-color: #198754;
            color: #fff;
        }

        /* Share success toast */
        #shareToast {
            position: fixed;
            bottom: 100px;
            right: 20px;
            z-index: 1100;
        }

        .toast-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
            color: white;
        }

        .toast-header .btn-close {
            filter: invert(1) brightness(100);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .gati-header-title {
                font-size: 1.3rem;
            }
            
            .gati-header-subtitle {
                font-size: 1.1rem;
            }
            
            .gati-header-btn {
                padding: 10px 25px;
                font-size: 1rem;
            }
            
            .animated-arrow {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .gati-header-section {
                padding: 15px 10px;
                margin: 15px 0;
            }
            
            .gati-header-title {
                font-size: 1.2rem;
            }
            
            .gati-header-subtitle {
                font-size: 1rem;
            }
            
            .gati-header-btn {
                padding: 8px 20px;
                font-size: 0.9rem;
            }
            
            .animated-arrow {
                font-size: 2rem;
            }
        }
        
        /* City List Styles */
        .cities-list {
            background: white;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .city-item {
            padding: 5px 0;
            border-bottom: 1px dashed #eee;
            transition: all 0.2s ease;
            cursor: pointer !important;
        }

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

        .city-item:hover {
            padding-left: 5px;
            border-bottom-color: var(--primary-color);
            background-color: rgba(78, 115, 223, 0.05);
        }

        .city-item:hover span {
            color: var(--primary-color) !important;
            font-weight: 600;
        }

        /* District List Styles */
        .districts-list {
            background: white;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .district-item {
            padding: 5px 0;
            border-bottom: 1px dashed #eee;
            transition: all 0.2s ease;
            cursor: pointer !important;
        }

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

        .district-item:hover {
            padding-left: 5px;
            border-bottom-color: var(--secondary-color);
            background-color: rgba(28, 200, 138, 0.05);
        }

        .district-item:hover span {
            color: var(--secondary-color) !important;
            font-weight: 600;
        }
        
        /* NEW: Category List Styles */
        .categories-list {
            background: white;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .category-item {
            padding: 5px 0;
            border-bottom: 1px dashed #eee;
            transition: all 0.2s ease;
            cursor: pointer !important;
        }

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

        .category-item:hover {
            padding-left: 5px;
            border-bottom-color: #6c757d;
            background-color: rgba(108, 117, 125, 0.05);
        }

        .category-item:hover span {
            color: #6c757d !important;
            font-weight: 600;
        }

        .footer-search-board {
            background: #f8fafc;
            border-top: 1px solid #dfe5ef;
        }

        .footer-search-board-title {
            max-width: 620px;
            margin: 0 auto 22px;
            color: #315ce3;
            font-size: 1rem;
            font-weight: 800;
            line-height: 1.35;
            text-align: center;
        }

        .footer-search-grid {
            row-gap: 14px;
        }

        .job-search-rectangle {
            height: 100%;
            overflow: hidden;
            background: transparent !important;
            border: 1px solid #d9e2f1 !important;
            border-radius: 10px;
            box-shadow: none !important;
        }

        .job-search-rectangle-head {
            padding: 13px 15px;
            color: #315ce3 !important;
            background: transparent !important;
            border-bottom: 1px solid #dfe7f3 !important;
        }

        .job-search-rectangle-head h6 {
            font-size: 0.92rem;
            font-weight: 800;
            line-height: 1.35;
        }

        .job-search-rectangle-body {
            position: relative;
            max-height: 330px;
            padding: 10px 15px 12px;
            overflow: hidden;
            background: transparent;
        }

        .job-search-rectangle-body::after {
            content: "";
            position: absolute;
            right: 0;
            bottom: 0;
            left: 0;
            height: 34px;
            background: linear-gradient(180deg, rgba(248, 250, 252, 0), #f8fafc);
            pointer-events: none;
        }

        .job-search-rectangle .cities-list,
        .job-search-rectangle .districts-list,
        .job-search-rectangle .categories-list {
            padding: 0;
            background: transparent;
            border-radius: 0;
            box-shadow: none;
        }

        .job-search-rectangle .city-item,
        .job-search-rectangle .district-item,
        .job-search-rectangle .category-item {
            display: flex;
            align-items: center;
            min-height: 44px;
            margin: 0 !important;
            padding: 10px 0;
            border-bottom: 1px dashed #e2e8f1;
            opacity: 0;
            transform: translateY(8px);
            animation: footerSearchItemIn 340ms ease forwards;
            animation-delay: calc(var(--item-index, 0) * 85ms);
        }

        .job-search-rectangle .city-item:last-child,
        .job-search-rectangle .district-item:last-child,
        .job-search-rectangle .category-item:last-child {
            border-bottom: 0;
        }

        .job-search-rectangle .city-item:hover,
        .job-search-rectangle .district-item:hover,
        .job-search-rectangle .category-item:hover {
            padding-left: 5px;
            background: transparent;
        }

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

        @media (min-width: 768px) {
            .job-search-rectangle-body {
                height: 318px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .job-search-rectangle .city-item,
            .job-search-rectangle .district-item,
            .job-search-rectangle .category-item {
                opacity: 1;
                transform: none;
                animation: none;
            }
        }

        /* Helpful, crawlable SEO content */
        .seo-content {
            max-width: 920px;
            margin: 8px auto 0;
            padding: 24px;
            color: #4b5567;
            background: #fff;
            border: 1px solid #e5eaf3;
            border-radius: 16px;
            box-shadow: 0 8px 24px rgba(31, 45, 75, 0.06);
        }

        .seo-content h2 {
            margin: 0 0 10px;
            color: #23345f;
            font-size: clamp(1.25rem, 3vw, 1.65rem);
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .seo-content h3 {
            margin: 20px 0 9px;
            color: #33466f;
            font-size: 1rem;
            font-weight: 750;
        }

        .seo-content p {
            margin: 0 0 12px;
            font-size: 0.92rem;
            line-height: 1.7;
        }

        .seo-links {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .seo-links a {
            display: inline-flex;
            align-items: center;
            min-height: 34px;
            padding: 7px 11px;
            color: #315ce3;
            background: #f2f5ff;
            border: 1px solid #dfe6ff;
            border-radius: 999px;
            font-size: 0.82rem;
            font-weight: 700;
            line-height: 1.2;
            text-decoration: none;
        }

        .seo-links a:hover {
            color: #2447ba;
            background: #e9efff;
            border-color: #cbd7ff;
        }

        .seo-updated {
            margin: 18px 0 0 !important;
            padding-top: 14px;
            border-top: 1px solid #edf0f6;
            color: #7b8599;
            font-size: 0.78rem !important;
        }

        @media (max-width: 575.98px) {
            .seo-content {
                padding: 19px 16px;
                border-radius: 14px;
            }
        }

        /* Responsive adjustments for city, district and category display */
        @media (max-width: 768px) {
            .cities-list, .districts-list, .categories-list {
                padding: 10px;
            }

            .city-item, .district-item, .category-item {
                font-size: 0.85rem !important;
            }

            .city-item i, .district-item i, .category-item i {
                font-size: 0.8rem !important;
            }
        }
        
        /* NEW: Hamburger Menu Styles */
        .hamburger-menu {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            padding: 8px 12px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            border-radius: 5px;
        }
        
        .hamburger-menu:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: scale(1.1);
        }
        
        .hamburger-menu:active {
            transform: scale(0.95);
        }
        
        /* Minimal side navigation */
        .side-panel {
            position: fixed;
            top: 0;
            left: min(-88vw, -340px);
            width: min(88vw, 340px);
            height: 100dvh;
            background: #ffffff;
            color: #172033;
            z-index: 2000;
            transition: left 220ms ease;
            box-shadow: 18px 0 50px rgba(21, 33, 62, 0.16);
            overflow-y: auto;
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
        }
        
        .side-panel.open {
            left: 0;
        }
        
        .side-panel-overlay {
            position: fixed;
            inset: 0;
            background: rgba(15, 23, 42, 0.38);
            backdrop-filter: blur(2px);
            -webkit-backdrop-filter: blur(2px);
            z-index: 1999;
            visibility: hidden;
            opacity: 0;
            transition: opacity 180ms ease, visibility 180ms ease;
        }
        
        .side-panel-overlay.active {
            visibility: visible;
            opacity: 1;
        }
        
        .side-panel-header {
            min-height: 76px;
            padding: 16px 18px 16px 20px;
            border-bottom: 1px solid #edf0f6;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .menu-brand,
        .header-brand-link {
            display: flex;
            align-items: center;
            gap: 9px;
            color: inherit;
            text-decoration: none;
        }

        .menu-brand-logo {
            width: 38px;
            height: 38px;
            flex: 0 0 38px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(49, 92, 227, 0.18);
        }

        .brand-mark {
            width: 32px;
            height: 32px;
            flex: 0 0 32px;
            border-radius: 9px;
            background: #315ce3;
            color: #ffffff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 800;
            line-height: 1;
            letter-spacing: -1px;
        }

        .menu-brand-name {
            color: #172033;
            font-size: 19px;
            font-weight: 800;
            line-height: 1;
            letter-spacing: -0.45px;
        }
        
        .side-panel-close {
            width: 36px;
            height: 36px;
            padding: 0;
            border: 0;
            border-radius: 10px;
            background: #f4f6fa;
            color: #657089;
            font-size: 15px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 140ms ease, color 140ms ease;
        }
        
        .side-panel-close:hover {
            background: #e9edf5;
            color: #172033;
        }
        
        .side-panel-body {
            flex: 1;
            padding: 18px 14px;
        }

        .side-menu-label {
            margin: 0 10px 9px;
            color: #929bad;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }
        
        .side-menu-item {
            display: flex;
            align-items: center;
            gap: 13px;
            min-height: 50px;
            margin-bottom: 4px;
            padding: 10px 12px;
            border-radius: 12px;
            color: #3f4a60;
            text-decoration: none;
            font-size: 15px;
            font-weight: 700;
            transition: background-color 140ms ease, color 140ms ease;
        }
        
        .side-menu-item:hover {
            background: #f3f6ff;
            color: #315ce3;
        }
        
        .side-menu-item.active {
            background: #edf2ff;
            color: #315ce3;
        }
        
        .side-menu-item i {
            width: 22px;
            color: #7a8499;
            font-size: 15px;
            text-align: center;
        }

        .side-menu-item:hover i,
        .side-menu-item.active i {
            color: #315ce3;
        }

        .side-menu-surface {
            margin: 0 10px 16px;
            padding: 14px 12px 12px;
            border: 1px solid #edf0f6;
            border-radius: 14px;
            background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
        }

        .side-menu-surface .side-menu-label {
            margin: 0 0 10px;
        }

        .side-menu-surface .side-menu-item {
            margin-bottom: 0;
        }
        
        .side-panel-footer {
            padding: 16px 20px max(20px, env(safe-area-inset-bottom, 0px));
            border-top: 1px solid #edf0f6;
        }
        
        .side-legal-links {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
        }
        
        .side-legal-links a,
        .side-panel-footer p {
            color: #8a94a8;
            font-size: 12px;
            text-decoration: none;
        }

        .side-legal-links a:hover {
            color: #315ce3;
        }

        .side-panel-footer p {
            margin: 0;
        }
        
        @media (max-width: 576px) {
            .side-panel {
                width: min(88vw, 340px);
                left: min(-88vw, -340px);
            }
            
            .hamburger-menu {
                font-size: 1.3rem;
                padding: 6px 10px;
            }
        }

        /* Final mobile header UI — keep these rules last */
        .app-header {
            min-height: 52px;
            padding:
                8px max(12px, env(safe-area-inset-right, 0px))
                8px max(12px, env(safe-area-inset-left, 0px));
            background: #315ce3;
            box-shadow: 0 2px 8px rgba(18, 42, 117, 0.14);
        }

        .app-header-inner {
            width: 100%;
            max-width: 680px;
            margin: 0 auto;
            padding: 0;
        }

        .mobile-header-grid {
            display: grid;
            grid-template-columns: 36px auto minmax(0, 1fr) 36px;
            align-items: center;
            gap: 8px;
            width: 100%;
            margin: 0;
        }

        .mobile-header-grid > div {
            min-width: 0;
            padding: 0;
            display: flex;
            align-items: center;
        }

        .mobile-header-grid > div:last-child {
            justify-content: flex-end;
        }

        .mobile-header-grid > div:nth-child(3) {
            justify-content: flex-end;
        }

        .hamburger-menu {
            width: 36px !important;
            height: 36px !important;
            padding: 0 !important;
            border: 0 !important;
            border-radius: 10px !important;
            color: #fff !important;
            background: rgba(255, 255, 255, 0.08) !important;
            font-size: 18px !important;
            line-height: 1 !important;
            box-shadow: none !important;
            transform: none !important;
        }

        .hamburger-menu:hover,
        .hamburger-menu:active {
            background: rgba(255, 255, 255, 0.09) !important;
            transform: none !important;
        }

        .header-brand-link {
            min-width: 0;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #fff;
            text-decoration: none;
        }

        .header-brand-link:hover {
            color: #fff;
        }

         .header-brand-text {
            color: #fff;
            font-size: 17px;
            font-weight: 1500;
            line-height: 1.15;
            letter-spacing: -0.2px;
            white-space: nowrap;
        }

        .header-brand-link .brand-mark {
            width: 30px;
            height: 30px;
            flex-basis: 30px;
            border: 1px solid rgba(255, 255, 255, 0.42);
            background: rgba(255, 255, 255, 0.14);
            font-size: 17px;
        }

        .search-container {
            width: 36px;
            min-width: 0;
            height: 36px;
            min-height: 36px;
            margin: 0 0 0 auto;
            padding: 0;
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            box-shadow: none;
            cursor: pointer;
            overflow: hidden;
            transition: width 180ms ease, background-color 180ms ease, border-color 180ms ease;
        }

        .search-container > .d-flex {
            min-width: 0;
            width: 100%;
            height: 100%;
            justify-content: center;
        }

        .header-search-icon {
            flex: 0 0 auto;
            color: #fff;
            font-size: 13px;
        }

        .search-input {
            width: 0;
            min-width: 0;
            height: 34px;
            padding: 0;
            border: 0;
            outline: 0;
            color: #26375f;
            background: transparent;
            font-size: 13px;
            line-height: 20px;
            opacity: 0;
            pointer-events: none;
            transition: width 180ms ease, opacity 120ms ease, padding 180ms ease;
        }

        .search-container.search-open {
            width: min(100%, 210px);
            padding: 0 10px;
            border-color: rgba(25, 49, 114, 0.08);
            border-radius: 999px;
            background: #f8faff;
            box-shadow: 0 2px 6px rgba(13, 33, 98, 0.12);
            cursor: text;
        }

        .search-container.search-open > .d-flex {
            justify-content: flex-start;
        }

        .search-container.search-open .header-search-icon {
            color: #7c89a7;
        }

        .search-container.search-open .search-input {
            width: 100%;
            padding: 6px;
            opacity: 1;
            pointer-events: auto;
        }

        .search-input.placeholder-motion {
            animation: searchPlaceholderRise 260ms ease-out;
        }

        @keyframes searchPlaceholderRise {
            0% {
                opacity: 0;
                transform: translateY(8px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .search-input::placeholder {
            color: #8793ad;
            opacity: 1;
        }

        .header-profile-btn {
            width: 36px;
            height: 36px;
            padding: 0;
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 50%;
            color: #fff;
            background: rgba(255, 255, 255, 0.1);
            box-shadow: none;
            font-size: 12px;
        }

        .header-profile-btn i {
            font-size: 12px;
        }

        .header-profile-btn:hover,
        .header-profile-btn:active {
            color: #fff;
            background: rgba(255, 255, 255, 0.16);
            transform: none;
        }

        @media (max-width: 359px) {
            .app-header {
                padding-left: 8px;
                padding-right: 8px;
            }

            .mobile-header-grid {
                grid-template-columns: 34px auto minmax(0, 1fr) 34px;
                gap: 6px;
            }

            .hamburger-menu {
                width: 34px !important;
                height: 34px !important;
                font-size: 17px !important;
            }

            .header-brand-link {
                gap: 5px;
            }

            .header-brand-text {
                font-size: 14px;
            }

            .header-profile-btn {
                width: 34px;
                height: 34px;
            }

            .search-container {
                width: 34px;
                height: 34px;
                min-height: 34px;
                padding: 0;
            }

            .search-container.search-open {
                width: 100%;
                padding: 0 9px;
            }

            .search-input {
                height: 32px;
                font-size: 12px;
            }
        }

        /* FTP premium swipe feed */
        body.ftp-mode {
            background:
                radial-gradient(circle at 50% -90px, rgba(255, 65, 108, 0.15), transparent 260px),
                #eef2f7;
        }

        body.ftp-mode .main-tab-shell {
            max-width: 520px;
            margin: 0 auto !important;
            padding: 0 0 92px;
        }

        body.ftp-mode #ftp-tab {
            padding: 14px 14px 0;
        }

        body.ftp-mode .gati-header-section {
            margin: 12px 0 8px;
            padding: 18px 16px;
            border-radius: 14px;
            box-shadow: 0 18px 34px rgba(40, 45, 70, 0.2);
        }

        body.ftp-mode .gati-header-title {
            font-size: clamp(1.3rem, 6vw, 1.8rem);
        }

        body.ftp-mode .gati-header-subtitle {
            margin-bottom: 12px;
            font-size: clamp(1.05rem, 5vw, 1.45rem);
        }

        body.ftp-mode .gati-header-btn {
            min-height: 44px;
            padding: 10px 22px;
            font-size: 0.95rem;
        }

        body.ftp-mode .animated-arrow-container {
            margin: 7px 0 10px;
        }

        body.ftp-mode .animated-arrow {
            font-size: 2rem;
        }

        body.ftp-mode .arrow-text {
            font-size: 0.82rem;
        }

        body.ftp-mode .section-title {
            margin: 12px 0 10px;
            padding-left: 0;
            border-left: 0;
            color: #315ce3;
            font-size: 1.12rem;
            letter-spacing: 0;
        }

        .ftp-feed-panel {
            position: relative;
            overflow: hidden;
            margin: 0 0 18px;
            background: rgba(255, 255, 255, 0.58);
            border: 1px solid rgba(255, 255, 255, 0.78);
            border-radius: 22px;
            box-shadow:
                0 18px 46px rgba(23, 37, 71, 0.16),
                inset 0 1px 0 rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
        }

        .ftp-feed-topline {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            min-height: 58px;
            padding: 12px 14px;
            background: rgba(248, 250, 255, 0.72);
            border-bottom: 1px solid rgba(218, 226, 242, 0.78);
        }

        .ftp-feed-topline strong,
        .ftp-feed-kicker,
        .ftp-feed-count {
            display: block;
        }

        .ftp-feed-kicker {
            color: #f04462;
            font-size: 0.68rem;
            font-weight: 850;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .ftp-feed-topline strong {
            margin-top: 2px;
            color: #172033;
            font-size: 0.98rem;
            line-height: 1.2;
        }

        .ftp-feed-count {
            flex: 0 0 auto;
            min-width: 58px;
            padding: 7px 10px;
            color: #315ce3;
            background: #edf2ff;
            border: 1px solid #d9e4ff;
            border-radius: 999px;
            font-size: 0.78rem;
            font-weight: 850;
            line-height: 1;
            text-align: center;
        }

        .ftp-feed-window {
            position: relative;
        }

        .ftp-feed-track {
            height: clamp(360px, calc(100dvh - 275px), 540px);
            min-height: 340px;
            padding: 12px;
            overflow-x: hidden;
            overflow-y: auto;
            scroll-snap-type: y mandatory;
            scroll-padding: 12px;
            overscroll-behavior: contain;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }

        .ftp-feed-track::-webkit-scrollbar {
            display: none;
        }

        .ftp-feed-track .job-card {
            min-height: calc(100% - 8px);
            margin: 0 0 12px;
            padding: 18px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 12px;
            scroll-snap-align: start;
            scroll-snap-stop: always;
            background:
                linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.9)),
                radial-gradient(circle at top right, rgba(255, 202, 40, 0.22), transparent 160px);
            border: 1px solid rgba(221, 228, 242, 0.92);
            border-radius: 18px;
            box-shadow: 0 12px 28px rgba(25, 44, 86, 0.12);
            transform-origin: center;
        }

        .ftp-feed-track .job-card.is-current-ftp-card {
            border-color: rgba(49, 92, 227, 0.38);
            box-shadow:
                0 14px 32px rgba(25, 44, 86, 0.15),
                0 0 0 3px rgba(49, 92, 227, 0.08);
        }

        .ftp-feed-track .job-card::before {
            opacity: 1;
            width: 5px;
            background: linear-gradient(180deg, #ff416c, #315ce3);
            transform: none;
        }

        .ftp-feed-track .premium-badge {
            top: 14px;
            right: 14px;
            border-radius: 7px;
            font-size: 0.72rem;
        }

        .ftp-feed-track .job-title {
            margin: 0 86px 0 0;
            color: #315ce3;
            font-size: clamp(1.08rem, 5vw, 1.42rem);
            line-height: 1.18;
        }

        .ftp-feed-track .company-name {
            margin: 0;
            color: #6b7280 !important;
            font-size: clamp(0.96rem, 4.4vw, 1.12rem);
            line-height: 1.28;
        }

        .ftp-feed-track .job-location {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            flex: 1 1 auto;
            min-width: 0;
            color: #6d7481;
            font-size: 0.9rem;
            line-height: 1.35;
            overflow-wrap: anywhere;
        }

        .ftp-feed-track .d-flex.justify-content-between {
            gap: 10px;
        }

        .ftp-feed-track .job-salary {
            flex-shrink: 0;
            padding-left: 8px;
            color: #12b76a;
            font-size: 0.98rem;
            white-space: nowrap;
        }

        .ftp-feed-track .job-tags {
            gap: 8px;
            margin-top: 0;
        }

        .ftp-feed-track .job-tag {
            max-width: 100%;
            padding: 7px 10px;
            overflow: hidden;
            color: #315ce3;
            background: #e9eefc;
            border-radius: 999px;
            font-size: 0.78rem;
            font-weight: 700;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .ftp-feed-track .vacancy-date {
            color: #9aa3b2 !important;
            font-size: 0.76rem;
        }

        .ftp-feed-track .more-details-link {
            min-height: 44px;
            padding: 10px 15px;
            border-radius: 10px;
            font-size: 0.8rem;
            box-shadow: 0 8px 18px rgba(49, 92, 227, 0.26);
        }

        .ftp-feed-controls {
            position: absolute;
            right: 10px;
            top: 50%;
            z-index: 4;
            display: flex;
            flex-direction: column;
            gap: 8px;
            transform: translateY(-50%);
        }

        .ftp-feed-control {
            width: 36px;
            height: 36px;
            display: grid;
            place-items: center;
            padding: 0;
            color: #315ce3;
            background: rgba(255, 255, 255, 0.92);
            border: 1px solid rgba(219, 226, 240, 0.9);
            border-radius: 50%;
            box-shadow: 0 8px 18px rgba(23, 37, 71, 0.14);
        }

        .ftp-feed-control:active {
            transform: scale(0.95);
        }

        .ftp-feed-status {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            min-height: 42px;
            padding: 8px 14px 12px;
            color: #68738a;
            font-size: 0.76rem;
            font-weight: 750;
        }

        .ftp-feed-status i {
            color: #315ce3;
        }

        .ftp-feed-loading-inline {
            display: none;
            align-items: center;
            gap: 6px;
            color: #315ce3;
        }

        .ftp-feed-loading-inline.is-visible {
            display: inline-flex;
        }

        body.ftp-mode #ftpLoadMoreContainer,
        body.ftp-mode #ftpPaginationContainer {
            display: none !important;
        }

        @media (max-width: 380px) {
            body.ftp-mode #ftp-tab {
                padding-left: 10px;
                padding-right: 10px;
            }

            .ftp-feed-track {
                height: clamp(340px, calc(100dvh - 260px), 500px);
                padding: 10px;
            }

            .ftp-feed-track .job-card {
                padding: 16px;
            }

            .ftp-feed-track .d-flex.justify-content-between {
                align-items: flex-start;
                flex-direction: column;
                gap: 6px;
            }

            .ftp-feed-track .job-salary {
                padding-left: 0;
            }
        }

        body.ftp-mode .app-header,
        body.ftp-mode .quick-actions-wrap,
        body.ftp-mode .job-only-content {
            display: none !important;
        }

        body:not(.ftp-mode) .chatbot-btn,
        body:not(.ftp-mode) .chatbot-modal {
            display: none !important;
        }
