/* Career Page Stylesheet */
        :root {
            --primary-orange: #FF8533; 
            --dark-grey: #1a1a1a;
            --text-muted: #555;
            --bg-light: #f4f7f6;
            --white: #ffffff;
            --shadow: 0 15px 35px rgba(0,0,0,0.1);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg-light);
            color: var(--dark-grey);
            margin: 0;
            line-height: 1.6;
        }

        /* Hero Section */
        .hero {
            text-align: center;
            padding: 40px 20px 20px;
            background: linear-gradient(135deg, #fff 0%, #fff5ed 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            height: fit-content;
        }

        .hero h1 { 
            font-size: 2.8rem; 
            margin: 0; 
            font-weight: 700; 
            letter-spacing: -1px;
            width: 100%;
        }
        .hero h1 span { color: var(--primary-orange); }
        .hero p { 
            font-size: 1.1rem; 
            color: var(--text-muted); 
            max-width: 700px; 
            margin: 15px auto;
            width: 100%;
        }

        /* Search & Filter Section */
        .controls-wrapper {
            position: sticky;
            top: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            padding: 15px;
            text-align: center;
        }

        .search-box {
            padding: 10px 20px;
            width: 100%;
            max-width: 350px;
            border-radius: 50px;
            border: 2px solid #eee;
            margin-bottom: 10px;
            outline: none;
            font-family: inherit;
        }

        .search-box:focus { border-color: var(--primary-orange); }

        .filter-btn {
            background: transparent;
            border: 2px solid #eee;
            padding: 8px 20px;
            margin: 4px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .filter-btn.active, .filter-btn:hover {
            background: var(--primary-orange);
            color: white;
            border-color: var(--primary-orange);
        }

        /* Roles Grid */
        .container { max-width: 1300px; margin: 0 auto; padding: 30px 20px; }
        .roles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }

        .role-card {
            background: var(--white);
            padding: 25px;
            border-radius: 15px;
            border: 1px solid rgba(0,0,0,0.05);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }

        .role-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow);
            border-color: var(--primary-orange);
        }

        .tag {
            color: var(--primary-orange);
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .role-card h3 { margin: 0 0 8px 0; font-size: 1.3rem; color: #111; }
        .role-card p { font-size: 0.9rem; color: var(--text-muted); flex-grow: 1; margin-bottom: 15px; }

        .view-details-btn {
            padding: 10px;
            background: #fff5ed;
            color: var(--primary-orange);
            text-align: center;
            border-radius: 10px;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: 0.3s;
        }

        .role-card:hover .view-details-btn {
            background: var(--primary-orange);
            color: white;
        }

        /* --- SMALL MODAL BOX --- */
        .modal-overlay {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(4px);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            padding: 15px;
        }

        .modal-content {
            background: white;
            width: 100%;
            max-width: 700px; /* Reduced width */
            max-height: 80vh; /* Reduced height */
            border-radius: 18px;
            position: relative;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .modal-header { padding: 25px 35px; background: #fff5ed; border-bottom: 1px solid #ffe0cc; }
        .close-modal { position: absolute; top: 15px; right: 20px; font-size: 1.8rem; cursor: pointer; color: var(--dark-grey); z-index: 11; }
        
        /* --- SMALL SCROLLBAR --- */
        .modal-body { 
            padding: 30px 35px; 
            overflow-y: auto; 
            flex-grow: 1; 
            scrollbar-width: thin; /* Firefox */
            scrollbar-color: var(--primary-orange) #f1f1f1; /* Firefox */
        }

        /* Chrome, Safari, and Edge scrollbar */
        .modal-body::-webkit-scrollbar {
            width: 5px;
        }
        .modal-body::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        .modal-body::-webkit-scrollbar-thumb {
            background: var(--primary-orange);
            border-radius: 10px;
        }
        .modal-body::-webkit-scrollbar-thumb:hover {
            background: #e67629;
        }

        .modal-body h3 { border-left: 3px solid var(--primary-orange); padding-left: 12px; margin-top: 25px; color: var(--dark-grey); font-size: 1.1rem; }
        
        .info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 15px; }
        .info-box { background: #f9f9f9; padding: 15px; border-radius: 10px; border: 1px solid #eee; font-size: 0.9rem; }
        
        .modal-footer {
            padding: 15px 35px;
            border-top: 1px solid #eee;
            background: #fff;
            display: flex;
            justify-content: flex-end;
        }

        .naukri-btn {
            background: var(--primary-orange);
            color: white;
            padding: 10px 20px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.85rem;
            transition: 0.3s;
        }

        .naukri-btn:hover {
            background: #e67629;
            transform: translateY(-1px);
        }

        .hidden { display: none !important; }

        @media (max-width: 600px) {
            .info-grid { grid-template-columns: 1fr; }
            .modal-content { max-height: 90vh; }
        }
   