@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=Outfit:wght@400;700;900&family=Noto+Sans+Sinhala:wght@400;600;700&display=swap');

:root {
    --bg-dark: #0a0a0f;
    --text-main: #f0f0f5;
    --text-muted: #9aa0a6;
    --primary: #facc15; /* Vibrant yellow */
    --primary-glow: rgba(250, 204, 21, 0.5);
    --secondary: #3b82f6; /* Vibrant blue */
    --accent: #8b5cf6; /* Purple */
    
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(12px);
    
    --card-bg: rgba(20, 20, 30, 0.6);
    --input-bg: rgba(255, 255, 255, 0.03);
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Noto Sans Sinhala', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* Background animated glow */
body::before, body::after {
    content: '';
    position: fixed;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    z-index: -1;
    filter: blur(100px);
    opacity: 0.15;
    animation: floatGlow 20s infinite alternate linear;
}

body::before {
    background: radial-gradient(circle, var(--primary), transparent 70%);
    top: -20%;
    left: -10%;
}

body::after {
    background: radial-gradient(circle, var(--secondary), transparent 70%);
    bottom: -20%;
    right: -10%;
    animation-delay: -10s;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(10%, 10%) scale(1.2); }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', 'Noto Sans Sinhala', sans-serif;
    letter-spacing: -0.03em;
}

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

a:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--primary-glow);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar .logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    outline: none;
}

.nav-links a {
    color: var(--text-main);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    box-shadow: 0 0 10px var(--primary-glow);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #eab308);
    color: #000;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--primary-glow);
    color: #000;
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
}

.btn-outline:hover {
    background: var(--glass-bg);
    border-color: var(--primary);
    color: var(--primary);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 6rem 5% 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    background: linear-gradient(to right, #fff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h1 span {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
}

/* Job Cards Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 5%;
    flex: 1;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

/* Job Card */
.job-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 2px solid var(--primary);
    border-radius: 24px;
    padding: 2.2rem 2rem 2rem 2rem;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.job-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(250, 204, 21, 0.25);
}

.job-card:hover::before {
    transform: scaleX(1);
}

.job-card-date {
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

.job-type-badge {
    position: absolute;
    top: 1.3rem;
    right: 2rem;
    padding: 0.35rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid transparent;
}

/* Custom Job Type Colors */
.job-type-badge.full-time,
.job-type-badge.sri-lankan-time,
.job-type-badge.fulltime {
    background: rgba(250, 204, 21, 0.1);
    color: var(--primary);
    border-color: rgba(250, 204, 21, 0.2);
}

.job-type-badge.part-time,
.job-type-badge.parttime {
    background: rgba(59, 130, 246, 0.1);
    color: var(--secondary);
    border-color: rgba(59, 130, 246, 0.2);
}

.job-type-badge.contract {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent);
    border-color: rgba(245, 158, 11, 0.2);
}

.job-type-badge.intern,
.job-type-badge.internship {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
    border-color: rgba(168, 85, 247, 0.2);
}

.job-card-header {
    margin-top: 1.8rem;
}

.job-card-title {
    font-size: 1.35rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 0.5rem 0;
    transition: var(--transition);
    font-family: 'Outfit', sans-serif;
}

.job-card:hover .job-card-title {
    color: var(--primary);
}

.company-name {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0 0 1.2rem 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.job-details-mini {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

.job-details-mini span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    transition: var(--transition);
}

.job-details-mini span i {
    font-size: 0.85rem;
}

.job-details-mini span.job-salary i {
    color: var(--primary);
}

.job-details-mini span.job-category i {
    color: var(--accent);
}

.job-details-mini span i.fa-location-dot {
    color: var(--secondary);
}

.job-card:hover .job-details-mini span {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.job-card p.desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.8rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.job-card-action {
    margin-top: auto;
}

.job-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-color: rgba(250, 204, 21, 0.3);
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.job-card:hover {
    border-color: var(--primary);
}

.job-card:hover .job-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    color: #0a0a0f;
    box-shadow: 0 4px 15px rgba(250, 204, 21, 0.3);
}

.job-card:hover .job-btn i {
    transform: translateX(4px);
    transition: transform 0.3s ease;
}

/* Forms */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.auth-box {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    padding: 3rem;
    border-radius: 24px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.auth-box h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form-control {
    width: 100%;
    background: var(--input-bg);
    border: 2px solid var(--primary);
    padding: 1rem;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.1);
    background: rgba(255,255,255,0.05);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Admin Dashboard Table */
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.table-responsive {
    overflow-x: auto;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    padding: 1rem;
}

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

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

th {
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background: rgba(255,255,255,0.02);
}

.action-btns {
    display: flex;
    gap: 0.5rem;
}

.btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    border-radius: 8px;
}

.btn-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.btn-danger:hover {
    background: #ef4444;
    color: #fff;
}

.btn-edit {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.btn-edit:hover {
    background: #3b82f6;
    color: #fff;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    margin-top: auto;
}

/* Job Detail Page */
.job-detail-header {
    background: var(--card-bg);
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    backdrop-filter: var(--glass-blur);
    position: relative;
    overflow: hidden;
}

.job-detail-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, var(--primary-glow), transparent 40%);
    opacity: 0.2;
    z-index: 0;
}

.job-detail-header > * {
    position: relative;
    z-index: 1;
}

.job-detail-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.job-detail-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.job-detail-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.job-apply-btn {
    background: linear-gradient(135deg, var(--primary), #eab308) !important;
    color: #000 !important;
    border: none !important;
    transition: var(--transition) !important;
}

.job-apply-btn:hover {
    background: linear-gradient(135deg, #eab308, #ca8a04) !important;
    box-shadow: 0 4px 15px var(--primary-glow) !important;
    transform: translateY(-2px) !important;
    color: #000 !important;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.job-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

@media (max-width: 900px) {
    .job-content-grid {
        grid-template-columns: 1fr;
    }
}

.content-card {
    background: var(--card-bg);
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: var(--glass-blur);
}

.content-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary);
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 0.5rem;
}

.content-body {
    line-height: 1.8;
    color: #e2e8f0;
}

.content-body ul, .content-body ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-body p {
    margin-bottom: 1rem;
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.alert-success {
    background: rgba(250, 204, 21, 0.1);
    color: #facc15;
    border: 1px solid rgba(250, 204, 21, 0.3);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

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

.animate-up {
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* Desktop Enhancements: Wider Layout and Increased Font Sizes */
@media (min-width: 1024px) {
    body {
        font-size: 18px; /* Increase base font size on desktop */
    }
    
    .container {
        max-width: 1650px; /* Widely publish details, increase container size */
        padding: 3rem 4%;
    }

    /* Navbar */
    .navbar {
        padding: 1.8rem 4%;
    }
    
    .navbar .logo {
        font-size: 2.1rem;
    }
    
    .nav-links {
        gap: 2.5rem;
    }
    
    .nav-links a {
        font-size: 1.1rem;
    }

    /* Hero Section styling */
    .hero {
        padding: 8rem 5% 5rem;
    }

    .hero h1 {
        font-size: 4.8rem;
    }

    .hero p {
        font-size: 1.35rem;
        max-width: 800px;
    }


    /* Job Card grid & cards */
    .jobs-grid {
        grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
        gap: 2.5rem;
    }

    .job-card {
        padding: 2.5rem;
    }

    .job-card-title {
        font-size: 1.7rem;
    }

    .company-name {
        font-size: 1.05rem;
    }

    .job-details-mini span {
        font-size: 0.95rem;
        padding: 0.5rem 1rem;
    }

    .job-card p.desc {
        font-size: 1.05rem;
        line-height: 1.6;
    }

    /* Buttons */
    .btn {
        padding: 1rem 2.2rem;
        font-size: 1.05rem;
    }

    /* Sidebar */
    .sidebar-categories {
        width: 320px;
        padding: 2rem 0;
    }

    .sidebar-title {
        font-size: 1.4rem;
        padding: 0 2rem 1.2rem 2rem;
    }

    .cat-link {
        padding: 1rem 1.5rem;
        margin: 0.6rem 1.2rem;
        font-size: 1.05rem;
    }

    .cat-count {
        font-size: 0.9rem;
    }

    /* Job Detail Page */
    .job-detail-title {
        font-size: 3.5rem;
    }

    .job-detail-meta {
        font-size: 1.1rem;
        gap: 2rem;
    }

    .content-card {
        padding: 3rem;
    }

    .content-card h3 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .content-body {
        font-size: 1.15rem;
        line-height: 1.9;
    }

    /* Form inputs */
    .form-control {
        padding: 1.2rem;
        font-size: 1.1rem;
    }

    /* Testimonials page */
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)) !important;
        gap: 2.5rem !important;
    }

    .testimonial-card {
        padding: 2.5rem !important;
    }

    .testimonial-card p {
        font-size: 1.15rem !important;
    }

    /* About Page Specific Layout & Font Size Increases */
    .about-hero h1 {
        font-size: 4.2rem !important;
    }
    .about-hero h2 {
        font-size: 2.2rem !important;
    }
    .about-hero p {
        font-size: 1.35rem !important;
    }
    .about-section p {
        font-size: 1.3rem !important;
    }
    .about-section p[style*="font-size: 0.95rem"],
    .about-section p[style*="font-size:0.95rem"] {
        font-size: 1.15rem !important;
    }
    .about-section p[style*="font-size: 0.85rem"],
    .about-section p[style*="font-size:0.85rem"] {
        font-size: 1.05rem !important;
    }
    .about-section p[style*="font-size: 0.9rem"],
    .about-section p[style*="font-size:0.9rem"] {
        font-size: 1.1rem !important;
    }
    .about-section h3 {
        font-size: 1.7rem !important;
    }
    .about-section h4 {
        font-size: 1.4rem !important;
    }
}
.delay-3 { animation-delay: 0.3s; }

/* Mobile Responsive Overrides (specifically for Admin Panel & general forms) */
@media (max-width: 768px) {
    /* Collapsing two-column grid layouts into single-column on mobile */
    div[style*="display: grid"][style*="grid-template-columns: 1fr 1fr"],
    div[style*="display:grid"][style*="grid-template-columns:1fr 1fr"],
    div[style*="display: grid"][style*="grid-template-columns: 1fr 2fr"],
    div[style*="display:grid"][style*="grid-template-columns:1fr 2fr"] {
        grid-template-columns: 1fr !important;
        gap: 1.2rem !important;
    }

    /* Navbar adjustment with hamburger menu */
    .nav-toggle {
        display: block !important;
        position: absolute !important;
        right: 1.5rem !important;
        top: 1.5rem !important;
        background: none !important;
        border: none !important;
        color: var(--primary) !important;
        font-size: 1.8rem !important;
        cursor: pointer !important;
        z-index: 105 !important;
        transition: var(--transition) !important;
    }
    
    .navbar {
        position: relative !important;
        align-items: flex-start !important;
        flex-direction: column !important;
        gap: 0 !important;
        padding: 1.5rem 1.5rem !important;
        width: 100% !important;
    }
    
    .nav-links {
        display: none !important;
        flex-direction: column !important;
        width: 100% !important;
        background: rgba(10, 10, 15, 0.98) !important;
        border-top: 1px solid var(--glass-border) !important;
        margin-top: 1rem !important;
        padding: 1rem 0 !important;
        position: static !important;
        z-index: 99 !important;
        box-shadow: none !important;
        backdrop-filter: var(--glass-blur) !important;
    }
    
    .nav-links.active {
        display: flex !important;
    }
    
    .nav-links a {
        width: 100% !important;
        text-align: center !important;
        padding: 0.8rem 0 !important;
        margin: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    }
    
    .nav-links a:last-child {
        border-bottom: none !important;
    }

    /* Admin header and search form adjustments */
    .admin-header {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 1rem !important;
    }
    .admin-header > div {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 1rem !important;
    }
    .admin-header h2 {
        text-align: center !important;
        font-size: 1.8rem !important;
    }
    .admin-header .btn-primary {
        width: 100% !important;
    }
    #search-form {
        flex-direction: column !important;
        max-width: 100% !important;
        gap: 0.8rem !important;
    }
    #search-form button, #search-form a {
        width: 100% !important;
        justify-content: center !important;
        height: 48px !important;
    }

    /* Auth containers and forms padding */
    .auth-container {
        padding: 1rem !important;
        min-height: auto !important;
    }
    .auth-box {
        padding: 1.8rem !important;
        border-radius: 16px !important;
        margin: 1.5rem auto !important;
    }
    .auth-box h2 {
        font-size: 1.6rem !important;
        margin-bottom: 1.5rem !important;
    }

    /* General container overrides */
    .container {
        padding: 1.5rem 1rem !important;
    }

    /* Convert Admin Table to Mobile Cards */
    .table-responsive {
        border: none !important;
        background: transparent !important;
        overflow-x: visible !important;
    }

    .table-responsive table, 
    .table-responsive thead, 
    .table-responsive tbody, 
    .table-responsive th, 
    .table-responsive td, 
    .table-responsive tr {
        display: block !important;
    }
    
    .table-responsive thead tr {
        position: absolute !important;
        top: -9999px !important;
        left: -9999px !important;
    }
    
    .table-responsive tr {
        margin-bottom: 1.5rem !important;
        background: var(--card-bg) !important;
        border: 2px solid var(--primary) !important;
        border-radius: 16px !important;
        padding: 1.2rem !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
        backdrop-filter: var(--glass-blur);
    }
    
    .table-responsive td {
        border: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        position: relative !important;
        padding: 0.8rem 0 0.8rem 45% !important;
        text-align: right !important;
        white-space: normal !important;
        font-size: 0.95rem !important;
    }
    
    .table-responsive td:last-child {
        border-bottom: none !important;
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }
    
    .table-responsive td::before {
        content: attr(data-label) !important;
        position: absolute !important;
        left: 0 !important;
        width: 40% !important;
        padding-right: 10px !important;
        white-space: nowrap !important;
        text-align: left !important;
        font-weight: 600 !important;
        color: var(--text-muted) !important;
        font-size: 0.8rem !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
    }
    
    .table-responsive .action-btns {
        justify-content: flex-end !important;
        margin-top: 0.5rem !important;
    }

    /* Job Detail Page Mobile Styling */
    .job-detail-header {
        padding: 2rem 1.5rem !important;
        margin-bottom: 1.5rem !important;
        border-radius: 16px !important;
    }

    .job-detail-title {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1.2rem !important;
    }

    .job-detail-meta {
        flex-direction: column !important;
        gap: 0.8rem !important;
        margin-bottom: 1.8rem !important;
        font-size: 0.95rem !important;
    }

    .job-detail-meta span {
        width: 100% !important;
    }

    .job-apply-btn {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 0.9rem 1.5rem !important;
        font-size: 1rem !important;
    }

    .content-card {
        padding: 1.5rem !important;
        border-radius: 16px !important;
    }

    .content-card h3 {
        font-size: 1.3rem !important;
        margin-bottom: 1.2rem !important;
    }

    .form-grid {
        grid-template-columns: 1fr !important;
        gap: 1.2rem !important;
    }

    /* Testimonials Page Mobile Styling */
    .testimonials-hero {
        height: 360px !important;
    }

    .testimonials-hero-overlay {
        padding: 0 5% !important;
    }

    .testimonials-hero-title {
        font-size: 2.2rem !important;
        margin-bottom: 0.6rem !important;
    }

    .testimonials-hero-title-si {
        font-size: 1.25rem !important;
        margin-bottom: 0.8rem !important;
    }

    .testimonials-hero-desc {
        font-size: 0.95rem !important;
        margin-bottom: 1.2rem !important;
        line-height: 1.5 !important;
    }

    .testimonials-hero-desc-si {
        font-size: 0.85rem !important;
    }

    .testimonials-hero-subtitle {
        font-size: 0.8rem !important;
        letter-spacing: 1px !important;
        flex-wrap: wrap !important;
        text-align: center !important;
        margin-bottom: 0.6rem !important;
    }

    .hero-counter-card {
        flex-direction: column !important;
        gap: 8px !important;
        padding: 1rem 1.5rem !important;
        min-width: 180px !important;
    }

    .hero-counter-number {
        font-size: 2rem !important;
    }

    .hero-counter-text {
        font-size: 0.75rem !important;
        white-space: normal !important;
        text-align: center !important;
        letter-spacing: 0.5px !important;
        line-height: 1.3 !important;
    }
}

/* Testimonials Page Custom Styles */
.testimonials-hero {
    position: relative;
    overflow: hidden;
    height: 420px;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.testimonials-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55) contrast(1.15);
}

.testimonials-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 15, 0.3), rgba(10, 10, 15, 0.95));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10%;
}

.testimonials-hero-subtitle {
    color: var(--primary);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.testimonials-hero-title {
    color: #fff;
    font-size: 3.2rem;
    margin: 0 0 0.5rem 0;
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

.testimonials-hero-title-si {
    color: var(--primary);
    font-size: 1.6rem;
    margin: 0 0 0.8rem 0;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

.testimonials-hero-desc {
    color: var(--text-muted);
    margin: 0 0 1.5rem 0;
    font-size: 1.1rem;
    max-width: 700px;
    line-height: 1.6;
}

.testimonials-hero-desc-si {
    display: block;
    font-size: 0.95rem;
    margin-top: 5px;
    color: rgba(255,255,255,0.5);
}

.hero-counter-card {
    background: rgba(250, 204, 21, 0.1);
    border: 1px solid rgba(250, 204, 21, 0.3);
    padding: 0.8rem 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-width: 220px;
    box-shadow: 0 8px 32px rgba(250, 204, 21, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.hero-counter-number {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}

.hero-counter-text {
    color: #fff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    white-space: nowrap;
}

/* About Us Page Custom Styles */
.about-hero {
    position: relative;
    overflow: hidden;
    height: 380px;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.about-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55) contrast(1.15);
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 15, 0.3), rgba(10, 10, 15, 0.95));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10%;
}

.about-hero-subtitle {
    color: var(--primary);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.about-hero-title {
    color: #fff;
    font-size: 3.2rem;
    margin: 0 0 0.8rem 0;
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

.about-hero-title-si {
    color: var(--primary);
    font-size: 1.6rem;
    margin: 0 0 0.8rem 0;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

.about-hero-desc {
    color: var(--text-muted);
    margin: 0;
    font-size: 1.1rem;
    max-width: 700px;
    line-height: 1.6;
}

.about-hero-desc-si {
    display: block;
    font-size: 0.95rem;
    margin-top: 5px;
    color: rgba(255,255,255,0.5);
}

.about-section {
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    padding: 4rem 5%;
}

.about-content-wrapper {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-row {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: left;
    margin-bottom: 3.5rem;
}

.about-col-left {
    flex: 1.2;
    min-width: 300px;
}

.about-si-text {
    font-size: 0.95rem;
    color: var(--primary);
    margin-top: 5px;
    margin-bottom: 1.5rem;
}

.about-col-right {
    flex: 0.8;
    min-width: 280px;
    display: flex;
    justify-content: center;
}

.about-intro-img {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    border: 2px solid var(--primary);
    box-shadow: 0 10px 25px rgba(250, 204, 21, 0.2);
    filter: brightness(0.9) contrast(1.15);
    transition: var(--transition);
}

.about-intro-img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(250, 204, 21, 0.35);
}

.about-cards-row {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.about-card {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 15px;
    flex: 1;
    min-width: 280px;
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
}

.about-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-card-icon-primary {
    color: var(--primary);
    filter: drop-shadow(0 0 8px var(--primary-glow));
}

.about-card-icon-secondary {
    color: var(--secondary);
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.4));
}

.about-card-title {
    color: #fff;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.about-card-text {
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.about-card-text-si-primary {
    font-size: 0.85rem;
    color: var(--primary);
    line-height: 1.5;
}

.about-card-text-si-secondary {
    font-size: 0.85rem;
    color: var(--secondary);
    line-height: 1.5;
}

.about-section-subtitle-heading {
    color: #fff;
    margin-top: 5rem;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
}

.about-row-reverse {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap-reverse;
    margin-top: 1rem;
}

.about-col-img {
    flex: 0.7;
    min-width: 280px;
    display: flex;
    justify-content: center;
}

.about-why-img {
    width: 100%;
    max-width: 360px;
    border-radius: 20px;
    border: 2px solid var(--secondary);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.25);
    transition: var(--transition);
}

.about-why-img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
}

.about-col-grid {
    flex: 1.3;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    text-align: left;
}

.why-card {
    background: rgba(255,255,255,0.02);
    padding: 1.8rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

.why-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.why-card-icon-primary {
    color: var(--primary);
}

.why-card-icon-whatsapp {
    color: var(--primary);
}

.why-card-icon-secondary {
    color: var(--secondary);
}

.why-card-icon-accent {
    color: var(--accent);
}

.why-card-title {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.why-card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.why-card-desc-si-primary {
    font-size: 0.85rem;
    color: var(--primary);
    line-height: 1.4;
}

.why-card-desc-si-whatsapp {
    font-size: 0.85rem;
    color: var(--primary);
    line-height: 1.4;
}

.why-card-desc-si-secondary {
    font-size: 0.85rem;
    color: var(--secondary);
    line-height: 1.4;
}

.why-card-desc-si-accent {
    font-size: 0.85rem;
    color: var(--accent);
    line-height: 1.4;
}

.about-section-highlight {
    border: 2px solid var(--primary);
    margin-top: 3rem;
    box-shadow: 0 8px 30px rgba(250, 204, 21, 0.1);
}

.section-title-primary {
    color: var(--primary);
}

.employers-intro-text {
    font-weight: bold;
    color: #fff;
    margin-bottom: 2rem;
}

.employers-intro-text-si {
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: normal;
}

.employers-row {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    flex-wrap: wrap;
    text-align: left;
    margin-top: 1rem;
}

.employers-grid {
    flex: 1.3;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.employer-card {
    background: rgba(255,255,255,0.02);
    padding: 1.8rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.employer-card:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

.employer-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.employer-card-icon-primary {
    color: var(--primary);
}

.employer-card-icon-danger {
    color: #ef4444;
}

.employer-card-icon-secondary {
    color: var(--secondary);
}

.employer-card-icon-accent {
    color: var(--accent);
}

.employer-card-title {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.employer-card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.employers-sidebar {
    flex: 0.7;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.employers-partner-img {
    width: 100%;
    max-width: 380px;
    border-radius: 20px;
    border: 2px solid var(--primary);
    box-shadow: 0 10px 25px rgba(250, 204, 21, 0.2);
    align-self: center;
    transition: var(--transition);
}

.employers-partner-img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(250, 204, 21, 0.35);
}

.contact-box {
    background: rgba(250, 204, 21, 0.05);
    border: 1px dashed var(--primary);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    width: 100%;
}

.contact-box-title {
    color: #fff;
    margin-bottom: 1rem;
}

.contact-box-title i {
    color: var(--primary);
}

.contact-box-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-box-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.contact-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-color: var(--primary);
    color: var(--primary);
    width: 100%;
}

/* Contact Page Custom Styles */
.contact-hero {
    position: relative;
    overflow: hidden;
    height: 380px;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.contact-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55) contrast(1.15);
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 15, 0.3), rgba(10, 10, 15, 0.95));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10%;
}

.contact-hero-subtitle {
    color: var(--primary);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-hero-title {
    color: #fff;
    font-size: 3.2rem;
    margin: 0 0 0.5rem 0;
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

.contact-hero-title-si {
    color: var(--primary);
    font-size: 1.6rem;
    margin: 0 0 0.8rem 0;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

.contact-hero-desc {
    color: var(--text-muted);
    margin: 0;
    font-size: 1.1rem;
    max-width: 700px;
    line-height: 1.6;
}

.contact-hero-desc-si {
    display: block;
    font-size: 0.95rem;
    margin-top: 5px;
    color: rgba(255,255,255,0.5);
}

.contact-section {
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    padding: 4rem 5%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-form-card {
    background: rgba(0,0,0,0.2);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
}

/* About Page Premium Redesign Styles */
.about-intro-box {
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 2.2rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin-bottom: 3.5rem;
    backdrop-filter: blur(10px);
}

/* Timeline Flowchart */
.apply-flow-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.flow-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    position: relative;
    backdrop-filter: blur(10px);
}

.flow-num-badge {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    font-family: 'Outfit', sans-serif;
}

.step-color-1 {
    background: linear-gradient(135deg, #facc15 0%, #eab308 100%);
    color: #000;
    box-shadow: 0 8px 25px rgba(250, 204, 21, 0.35);
}

.step-color-2 {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.35);
}

.flow-connector {
    width: 3px;
    height: 50px;
    background: linear-gradient(to bottom, #facc15, #3b82f6);
    margin: -10px auto;
    z-index: 10;
    opacity: 0.7;
}

.flow-content {
    flex-grow: 1;
}

.flow-title {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.flow-text {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.7;
}

/* Document Mini Cards */
.required-docs-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.8rem;
    margin-bottom: 1.5rem;
}

.doc-mini-card {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    padding: 1.5rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.doc-mini-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.01);
}

.doc-mini-num {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.2);
    font-weight: bold;
}

.doc-mini-icon {
    font-size: 1.8rem;
    margin-bottom: 2px;
}

.text-yellow { color: #facc15; text-shadow: 0 0 15px rgba(250,204,21,0.3); }
.text-blue { color: #60a5fa; text-shadow: 0 0 15px rgba(96,165,250,0.3); }
.text-gold { color: #fbbf24; text-shadow: 0 0 15px rgba(251,191,36,0.3); }

.doc-border-yellow { border-bottom: 3px solid #eab308; }
.doc-border-blue { border-bottom: 3px solid #3b82f6; }
.doc-border-gold { border-bottom: 3px solid #f59e0b; }

.doc-mini-card strong {
    font-size: 0.92rem;
    color: #fff;
    line-height: 1.5;
}

.flow-alert-box {
    background: rgba(249, 115, 22, 0.08);
    border: 1px dashed rgba(249, 115, 22, 0.3);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    color: #fdba74;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Accordion Layout */
.faq-accordion-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-accordion {
    margin-bottom: 1.2rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-accordion[open] {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.faq-accordion summary {
    padding: 1.5rem 1.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    list-style: none;
    user-select: none;
    outline: none;
}

.faq-accordion summary::-webkit-details-marker {
    display: none;
}

.faq-summary-content {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.15rem;
}

.faq-accordion-arrow {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
}

.faq-accordion[open] .faq-accordion-arrow {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer-content {
    padding: 0 1.8rem 1.8rem 4.8rem;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 1.2rem;
}

/* Accordion Color Themes */
.faq-accent-teal { border-left: 4px solid #facc15; }
.faq-accent-blue { border-left: 4px solid #60a5fa; }
.faq-accent-gold { border-left: 4px solid #fbbf24; }
.faq-accent-purple { border-left: 4px solid #c084fc; }
.faq-accent-pink { border-left: 4px solid #f472b6; }
.faq-accent-orange { border-left: 4px solid #fb923c; }
.faq-accent-emerald { border-left: 4px solid #eab308; }

.faq-theme-teal-icon { color: #facc15; text-shadow: 0 0 10px rgba(250,204,21,0.2); }
.faq-theme-blue-icon { color: #60a5fa; text-shadow: 0 0 10px rgba(96,165,250,0.2); }
.faq-theme-gold-icon { color: #fbbf24; text-shadow: 0 0 10px rgba(251,191,36,0.2); }
.faq-theme-purple-icon { color: #c084fc; text-shadow: 0 0 10px rgba(192,132,252,0.2); }
.faq-theme-pink-icon { color: #f472b6; text-shadow: 0 0 10px rgba(244,114,182,0.2); }
.faq-theme-orange-icon { color: #fb923c; text-shadow: 0 0 10px rgba(251,146,60,0.2); }
.faq-theme-emerald-icon { color: #eab308; text-shadow: 0 0 10px rgba(234,179,8,0.2); }

/* Premium Other Services Grid */
.services-list-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
    margin-top: 1rem;
}

.premium-service-capsule {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.premium-service-capsule:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    background: rgba(255,255,255,0.01);
}

.service-capsule-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.service-color-1 { background: rgba(250, 204, 21, 0.1); color: var(--primary); border: 1px solid rgba(250, 204, 21, 0.2); }
.service-color-2 { background: rgba(244, 63, 94, 0.1); color: #f43f5e; border: 1px solid rgba(244, 63, 94, 0.2); }
.service-color-3 { background: rgba(96, 165, 250, 0.1); color: var(--secondary); border: 1px solid rgba(96, 165, 250, 0.2); }
.service-color-4 { background: rgba(251, 191, 36, 0.1); color: var(--accent); border: 1px solid rgba(251, 191, 36, 0.2); }
.service-color-5 { background: rgba(45, 212, 191, 0.1); color: #2dd4bf; border: 1px solid rgba(45, 212, 191, 0.2); }

/* Categories Page Grid Layout */
.categories-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.category-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 3rem 2rem !important;
    text-align: center !important;
    text-decoration: none !important;
}

.category-card .category-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-card .category-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
    padding: 0;
}

.category-card .category-badge {
    background: var(--glass-bg);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-muted);
    border: 1px solid var(--glass-border);
}

/* About Us Mobile Responsive Styles */
@media (max-width: 768px) {
    .about-hero {
        height: auto;
        min-height: 380px;
    }
    
    .about-hero-img {
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
    
    .about-hero-overlay {
        position: relative;
        padding: 3rem 1.5rem;
        background: linear-gradient(to bottom, rgba(10, 10, 15, 0.5), rgba(10, 10, 15, 0.98));
        height: auto;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-title-si {
        font-size: 1.25rem;
    }
    
    .about-hero-desc {
        font-size: 0.95rem;
    }
    
    .about-hero-desc-si {
        font-size: 0.85rem;
    }
    
    .about-section {
        padding: 2.5rem 1.2rem !important;
        border-radius: 16px !important;
    }
    
    .about-content-wrapper {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .about-row {
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .about-col-left, .about-col-right {
        flex: 1 1 100%;
        min-width: 0;
    }
    
    .about-intro-img {
        max-width: 100%;
    }
    
    .about-si-text {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .about-cards-row {
        gap: 1.2rem;
    }
    
    .about-card {
        padding: 1.5rem;
        min-width: 0;
        flex: 1 1 100%;
    }
    
    .about-card-title {
        font-size: 1.25rem;
    }
    
    .about-section-subtitle-heading {
        font-size: 1.4rem;
        margin-top: 3.5rem;
        margin-bottom: 1.5rem;
    }
    
    .about-row-reverse {
        gap: 1.5rem;
    }
    
    .about-col-img, .about-col-grid {
        flex: 1 1 100%;
        min-width: 0;
    }
    
    .about-why-img {
        max-width: 100%;
    }
    
    .about-col-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .why-card {
        padding: 1.2rem;
    }
    
    .why-card-title {
        font-size: 1.1rem;
    }
    
    .employers-intro-text {
        font-size: 1.05rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .employers-intro-text-si {
        font-size: 0.85rem;
    }
    
    .employers-row {
        gap: 1.5rem;
    }
    
    .employers-grid {
        flex: 1 1 100%;
        min-width: 0;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .employer-card {
        padding: 1.2rem;
    }
    
    .employer-card-title {
        font-size: 1.1rem;
    }
    
    .employers-sidebar {
        flex: 1 1 100%;
        min-width: 0;
        gap: 1.5rem;
    }
    
    .employers-partner-img {
        max-width: 100%;
    }
    
    .contact-box {
        padding: 1.5rem;
    }

    /* Contact Page Mobile Styling */
    .contact-hero {
        height: auto !important;
        min-height: 380px !important;
    }

    .contact-hero-img {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        z-index: -1 !important;
    }

    .contact-hero-overlay {
        position: relative !important;
        padding: 3rem 1.5rem !important;
        background: linear-gradient(to bottom, rgba(10, 10, 15, 0.5), rgba(10, 10, 15, 0.98)) !important;
        height: auto !important;
    }

    .contact-hero-subtitle {
        font-size: 0.8rem !important;
        letter-spacing: 1px !important;
        flex-wrap: wrap !important;
        text-align: center !important;
    }

    .contact-hero-title {
        font-size: 2rem !important;
    }

    .contact-hero-title-si {
        font-size: 1.25rem !important;
    }

    .contact-hero-desc {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }

    .contact-hero-desc-si {
        font-size: 0.85rem !important;
    }

    .contact-section {
        padding: 2.5rem 1.2rem !important;
        border-radius: 16px !important;
    }

    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        margin-top: 1rem !important;
    }

    .contact-form-card {
        padding: 1.5rem !important;
    }
    
    /* About Us Custom Detail Sections Mobile */
    .flow-step {
        flex-direction: column !important;
        gap: 1.2rem !important;
        padding: 1.8rem 1.5rem !important;
    }

    .flow-num-badge {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.4rem !important;
    }

    .flow-connector {
        height: 30px !important;
    }

    .flow-title {
        font-size: 1.15rem !important;
    }

    .required-docs-mini-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .doc-mini-card {
        padding: 1.2rem 1rem !important;
        flex-direction: row !important;
        text-align: left !important;
        gap: 1rem !important;
        justify-content: flex-start !important;
        align-items: center !important;
    }

    .doc-mini-num {
        display: none !important;
    }

    .doc-mini-icon {
        margin-bottom: 0 !important;
        font-size: 1.5rem !important;
    }

    .faq-summary-content {
        font-size: 1rem !important;
        gap: 0.8rem !important;
    }

    .faq-accordion summary {
        padding: 1.2rem 1rem !important;
    }

    .faq-answer-content {
        padding: 0 1rem 1.2rem 1rem !important;
        font-size: 0.92rem !important;
    }

    .services-list-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
    }

    .premium-service-capsule {
        padding: 1rem 0.8rem !important;
    }
    
    footer {
        padding: 1.5rem 1rem !important;
        font-size: 0.85rem;
    }

    /* Categories Page Grid Layout Mobile */
    .categories-page-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.75rem !important;
    }
    
    .category-card {
        padding: 1.5rem 0.5rem !important;
        border-radius: 12px !important;
    }
    
    .category-card .category-icon {
        font-size: 1.8rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .category-card .category-title {
        font-size: 0.95rem !important;
        margin-bottom: 0.4rem !important;
        line-height: 1.3 !important;
    }
    
    .category-card .category-badge {
        padding: 0.2rem 0.5rem !important;
        font-size: 0.75rem !important;
        border-radius: 20px !important;
    }
}
