/* Custom styles for careers page */
        .navbar-brand img {
            height: 30px;
            margin-right: 10px;
        }        .careers-hero {
            color: #1a1a1a;
            padding: 0;
            min-height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .hero-split {
            display: flex;
            min-height: 100vh;
        }

        /* Full background variant: show parent background image across the hero */
        .careers-hero.full-bg {
            background-position: center;
            background-size: cover;
        }

        .careers-hero.full-bg .hero-left,
        .careers-hero.full-bg .hero-right {
            background: transparent !important;
        }

        .careers-hero.full-bg .hero-left::before,
        .careers-hero.full-bg .hero-right::before {
            background: none !important;
        }

        /* No global overlay: only text area should have a colored overlay */

        /* Make the left text area use a visible card-style overlay (glass + stronger contrast) */
        .careers-hero.full-bg .hero-left .hero-content.glass-panel {
            background: rgba(8, 8, 8, 0.5) !important; /* white card for text readability */
            box-shadow: var(--shadow-lg) !important;
            z-index: 2 !important;
            border: 1px solid rgba(0,0,0,0.06) !important;
            color: white;
        }

        /* Remove hero-image-section and hero-creative-section images so they don't override the full-bg */
        .careers-hero.full-bg .hero-image-section,
        .careers-hero.full-bg .hero-creative-section {
            background: transparent !important;
        }

        .hero-left {
            flex: 1;
            display: flex;
            align-items: center;
            padding: 80px;
            position: relative;
            z-index: 2;
        }

        .hero-right {
            flex: 1;
            display: flex;
            background: #f8f9fa;
            position: relative;
        }

        .hero-image-section {
            flex: 1;
            background: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=600&h=800&fit=crop&crop=face') center/cover;
            position: relative;
        }

        .hero-creative-section {
            flex: 1;
            background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .creative-portrait {
            width: 80%;
            height: 80%;
            background: url('https://images.unsplash.com/photo-1534528741775-53994a69daeb?w=400&h=600&fit=crop&crop=face') center/cover;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            position: relative;
        }

        .creative-overlay {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255,255,255,0.9);
            padding: 15px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .careers-tag {
            background: rgba(0, 123, 255, 0.1);
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .careers-title {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 30px;
            line-height: 1.1;
            color: #ecebeb;
        }

        .careers-subtitle {
            font-size: 1.2rem;
            color: #f9fafc;
            margin-bottom: 40px;
            line-height: 1.6;
            max-width: 500px;
        }

        .btn-apply-today {
            background: #007bff;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
        }

        .btn-apply-today:hover {
            background: #0056b3;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 123, 255, 0.4);
            color: white;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #007bff;
            display: block;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 5px;
        }

        .careers-image {
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .careers-image:hover {
            transform: translateY(-10px);
        }

        .detail-section {
            padding: 80px 0;
            background: #ffffff;
        }

        .detail-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .detail-card {
            background: #ffffff;
            padding: 40px 30px;
            border-radius: 20px;
            border: 1px solid rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .detail-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .detail-icon {
            font-size: 2.5rem;
            color: #007bff;
            margin-bottom: 20px;
            background: rgba(0, 123, 255, 0.1);
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .detail-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #1a1a1a;
        }

        .detail-text {
            color: #6b7280;
            line-height: 1.6;
        }

        .job-card {
            background: white;
            border: 1px solid rgba(0,0,0,0.05);
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .job-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            border-color: rgba(0, 123, 255, 0.3);
        }

        .job-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 10px;
        }

        .job-meta {
            color: #6b7280;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }

        .job-tag {
            background: rgba(0, 123, 255, 0.1);
            color: #007bff;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-right: 10px;
            margin-bottom: 5px;
            display: inline-block;
        }

        .btn-apply {
            background: #007bff;
            border: none;
            color: white;
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-top: 15px;
        }

        .btn-apply:hover {
            background: #0056b3;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
            color: white;
        }
        
        @media (max-width: 991.98px) {
            .careers-hero {
                min-height: auto;
                padding-top: 100px;
            }
            
            .hero-split {
                flex-direction: column;
                min-height: auto;
            }
            
            .hero-left {
                padding: 20px 15px;
                min-height: auto;
            }
            
            .hero-left .hero-content.glass-panel {
                margin-top: 0;
                padding: 1.5rem !important;
            }
            
            .hero-right {
                display: none;
            }
            
            .careers-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-split {
                flex-direction: column;
            }
            
            .hero-left {
                padding: 20px 15px;
                min-height: auto;
            }
            
            .hero-right {
                display: none;
            }
            
            .hero-image-section,
            .hero-creative-section {
                display: none;
            }
            
            .careers-title {
                font-size: 1.8rem;
            }
            
            .careers-subtitle {
                font-size: 1rem;
            }
            
            .careers-details {
                padding: 25px;
                margin-top: -30px;
            }
            
            .creative-portrait {
                width: 90%;
                height: 90%;
            }
        }